Skip to content

LURL

LURL – Little URL – A program to create shortened urls.

Download:
LURL version 2 to PHP4
LURL version 2 to PHP5

Changelog version 0.2:
– Changes in method to generate the key.
– Minor bugs from PHP4 version.
– Change all the classes of version to PHP5

Dependencies:
– PHP4 or PHP5
– mod_rewrite

Next functionalities (probably):
– Page with list of links letting user to see stats of each link

How to use:
– Create the database with the tables
– Setup Config.php. Example:

$config[“hostname”] = “localhost”;
$config[“username”] = “matheus”;
$config[“password”] = “yourpassord”;
$config[“dbname”] = “lurl_db”;
$config[“domain”] = “http://wordpress.matbra.com”; // Define a configuração da URL inicial (http://wordpress.matbra.com)
$config[“path”] = “lurl”; // caminho/caminho2 (onde está os scripts do LURL)
$config[“my_keys”] = “0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ”;
$config[“num_chars”] = 6;

– Create MOD_REWRITE. Exemple:

<IfModule mod_rewrite.c>

RewriteEngine On
RewriteBase /

# REDIRECT ACCESS FROM /XXXXXX
# TO /lurl/index.php?u=XXXXXX it is possible to have more chars. (use {7} {8} for it…)
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^([A-Za-z0-9]{6})$ /lurl/index.php?u=$1 [L]

# IT WAS IN MY MOD REWRITE
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]

</IfModule>

8 Comments

  1. I have read so many content concerning the blogger lovers except this piece of writing is in fact a pleasant post, keep it up.

  2. My brother recommended I might like this website. He was totally right. This post actually made my day. You can not imagine just how much time I had spent for this info! Thanks!

  3. obviously like your web-site but you have to check the spelling on quite a few of your posts. A number of them are rife with spelling issues and I in finding it very bothersome to tell the truth then again I’ll definitely come again again.

  4. Write more, thats all I have to say. Literally, it seems as though you relied on the video to make your point. You obviously know what youre talking about, why waste your intelligence on just posting videos to your weblog when you could be giving us something informative to read?

  5. This is a topic which is close to my heart… Take care! Exactly where are your contact details though?

Leave a Reply

Your email address will not be published. Required fields are marked *