Skip to content
This repository has been archived by the owner on Jan 8, 2022. It is now read-only.

First pre-release

Pre-release
Pre-release
Compare
Choose a tag to compare
@ammardev ammardev released this 20 Nov 14:47

The url shorten is work in this release. But there isn't login/register system yet.
You can start using this release by creating a new database with a new urls table using this command (mysql only):

CREATE DATABASE shortcut CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
CREATE TABLE urls (
  id INT AUTO_INCREMENT PRIMARY KEY,
  alias VARCHAR(7) NOT NULL ,
  link TEXT NOT NULL
);
  • don't forget to edit config.php file

Change the logo by changing the image in the path themes/main/images/logo.png and you can change the site name and description from includes/siteInfo.php.

(This is a beta version and I'm not responsible for any exploit in the web app in the beta version)