All Projects → pierretnd → EdPaste

pierretnd / EdPaste

Licence: MIT license
Laravel/PHP-driven Pastebin with users management

Programming Languages

PHP
23972 projects - #3 most used programming language
Blade
752 projects

Projects that are alternatives of or similar to EdPaste

uranus
[W.I.P] An ecosystem of crawlers for detecting: leaks, sensitive data exposure and attempts exfiltration of data
Stars: ✭ 22 (-35.29%)
Mutual labels:  pastebin
PasteBinApp
iOS app for PasteBin
Stars: ✭ 27 (-20.59%)
Mutual labels:  pastebin
simple-pastebin-monitor
A simple pastebin monitor using the scraping API
Stars: ✭ 34 (+0%)
Mutual labels:  pastebin
binnit
minimal no-fuss pastebin service clone in golang
Stars: ✭ 27 (-20.59%)
Mutual labels:  pastebin
bin
highly opinionated, minimal pastebin
Stars: ✭ 97 (+185.29%)
Mutual labels:  pastebin
local-paste
Lightweight pastebin for home network which may or may not be connected to the internet.
Stars: ✭ 24 (-29.41%)
Mutual labels:  pastebin
Pastebin
Modern pastebin written in golang
Stars: ✭ 111 (+226.47%)
Mutual labels:  pastebin
mathb
MathB.in - Mathematics Pastebin Written in Common Lisp
Stars: ✭ 203 (+497.06%)
Mutual labels:  pastebin
shelf.gg
A pastebin to find and share useful resources 📚
Stars: ✭ 29 (-14.71%)
Mutual labels:  pastebin
omnibin
Android client for different bins like dogbin. Previous dogbin mobile.
Stars: ✭ 19 (-44.12%)
Mutual labels:  pastebin
awesome-pastebin
List of pastebin sites.
Stars: ✭ 58 (+70.59%)
Mutual labels:  pastebin
dpaste
The Django project driving dpaste.org
Stars: ✭ 424 (+1147.06%)
Mutual labels:  pastebin
pastebin-api
A very simple pastebin npm package to interact with the pastebin api!
Stars: ✭ 20 (-41.18%)
Mutual labels:  pastebin
piu.clj
Simple pastebin
Stars: ✭ 14 (-58.82%)
Mutual labels:  pastebin
paste
paste is a simple web app for writing & sharing code.
Stars: ✭ 62 (+82.35%)
Mutual labels:  pastebin
nnmm
A super tiny pastebin/url minifier "microservice"
Stars: ✭ 77 (+126.47%)
Mutual labels:  pastebin
pastelyst
A Web Paste Tool built with Cutelyst and KDE Frameworks
Stars: ✭ 19 (-44.12%)
Mutual labels:  pastebin
pastebin-php
a simple pastebin implement in php
Stars: ✭ 25 (-26.47%)
Mutual labels:  pastebin
jot
📝 A server-less pastebin app for short messages. Data is stored within the URL.
Stars: ✭ 33 (-2.94%)
Mutual labels:  pastebin
CryptDown
client-side AES-encrypted Markdown pastebin clone
Stars: ✭ 47 (+38.24%)
Mutual labels:  pastebin

EdPaste

EdPaste is a Laravel 5.5 (PHP Framework)-driven self-hosted Pastebin.

Features :

  • Privacy options
  • Expiration options
  • Burn after reading
  • Password protection (server-side hashed)
  • User dashboard
  • Raw paste viewing

Just git clone this repo on your server, make the public folder your webserver's DocumentRoot, for instance with an Apache2.4 VirtualHost :

<VirtualHost *:80>
    ServerName your.vhost.server.com
    DocumentRoot /app/path/public
</VirtualHost>

Run a composer install/php composer install (depends of your configuration) within the app root path (you'll need composer) Rename .env.example to .env and run php artisan key:generate from the app's root path. Open .env and fill it with your database details, and with Secret and Site Key from Google's reCaptcha (in order to avoid spam from guests) Run php artisan migrate from the app's root path, and you're all done.

Go to http://your.vhost.server.com/ which leads to the DocumentRoot /app/path/public, and this should work !

Updating :

Get latest features by pulling this repo again.

In case of updating because of a Laravel version change, delete everything under bootstrap/cache and run composer upgrade.

Troubleshooting :

If you get the "Paste expiration error.", then you need to migrate your database. Pastes expiration scheme changed recently, and your database has to be updated. Simply run php artisan migrate and everything will be good, without any data loss.

Contributing :

You're free to fork this and modify it as you want (according to MIT license), but please don't remove my name at the bottom of each page. If you look at the code, you'll notice that all the comments are written in french, as I am a french developer. If you want english comments instead, feel free to ask it, I'll translate all of these.

Todo :

  • Admin panel
  • Fix raw view
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].