Open-Source URL-Shortener
An URL Shortener shortens a long URL, such as a link to a DropBox file, to a much shorter one. This URL Shortener can be installed on any web server with PHP. The project is currently only available in german, a translation to english is scheduled.
- To install, simply clone the repo and save the files in your web directory.
- Then edit the config to your liking.
- That's it!
- Apache2 Webserver
- .htaccess files enabled
- mod_rewrite apache module enabled
- PHP7 installed
The configuration is pretty easy. Open the file config/config.php
and edit it.
<?php
// ReCaptcha settings
$recaptcha_secret = "<YOUR_RECAPTCHA_SECRET>";
$recaptcha_public = "<YOUR_RECAPTCHA_SITE_KEY>";
// Dashboard creds
$admin_user = "admin";
$admin_password = "<PLEASE_CHANGE>";
// Path for data (optional)
$base_path = __DIR__ . "/../_data/";
?>
A live version of the project can be found at http://azeo.eu/s