Turnkey Scripts
Desktop Wallpapers Script
Submit Site to Search Engines Script
Advanced Game Script
Web 2.0 Proxy Script
Illustrated Bookmarks Script
Easy Image Hosting Script
Software for Easy File Upload
Short URLTurnkey Script
Advanced Short URL Script
Photo Rating Gallery

Free Short URL Software
Free short URL software is a turnkey solution to start your own shorten/cloak URL service. You can download it here (free), purchase full version here (see description). Please note - this is a linkware: you are free to use it on your own sites, modify it, sell it - just keep link back to this site at the bottom of page.
Features:
- plug-and-play functionality: copy it onto your server and it is ready to go (PHP support required, MySQL is not needed);
- SEOed mode (with mod_rewrite) - support directory-like URLs (http://your-site.com/a12df);
- support page-like links (http://your-site.com/a12df.html).
To make it work with mod_rewrite
- create .htaccess file in directory there your software installed (you have this file in distribution package) with following content:
DirectoryIndex plus.php index.php index.htm index.html
Options +FollowSymLinks
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . plus.php [L]
ErrorDocument 404 /plus.php - change line in _config.php file from "$_rewrite_mode = false;" to "$_rewrite_mode = true;" (line 42, use without quotes);
- if you are installing this software in sub-directory - make following changes:
DirectoryIndex plus.php index.php index.htm index.html
Options +FollowSymLinks
RewriteEngine On
RewriteBase /subdir/another-subdir/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . plus.php [L]
ErrorDocument 404 /subdir/plus.php

