Enable OSWallpaper SEO URLs on Nginx

May 29, 2009 by Mark  
Filed under Open Source Software

First enable the clean url by editing config.php (inside includes folder).

//enable mod rewrite urls. 0=disabled, 1=enabled for SEO Friendly URLS
$Gbl["ManualModRewrite"] = 1;

The original rewrite rule (Apache) for the script are as follows :

RewriteEngine On
#PAGES
RewriteRule ^([^/]*)/$ index.php?p=$1 [L]
# CATEGORY
RewriteRule ^([^/]*)/([^/]*)/$ index.php?p=$1&i=$2 [L]
# CATEGORY PAGES
RewriteRule ^([^/]*)/([^/]*)/([^/]*)/$ index.php?p=$1&i=$2&pg=$3 [L]

Read more

Open Source Wallpaper Script

April 22, 2009 by Mark  
Filed under Script

If you are planning to create a wallpaper website but yet to find a good wallpaper script that suits your need. I recommended OSWallpaper. This script is an open source and you can acquired it for free. Its has all the feature to create an attractive wallpaper site. Currently the script is sill in beta version but the author of the script continually improve the script. The script can be downloaded at wallpaperscript.org and you can view the demo at http://www.wallpaperscript.org/demo/

To install the script you need the following software installed on your server :

PHP
MySql
GD Library
ImageMagick
Apache 2 or above with mod_rewrite enable

Read more