Articles Comments

Thoughts of JS » Web development

PageRank script for sale

Simple pagerank checker up for sale. All you need to do is to enter a domain name and you can instantly see its PR. Price: 10 euro. If you are ready to buy, drop me a message. Incoming search terms:weirdest houses (10)Unusual Homes (7)strangest buildings (6)worlds strangest homes (4)weird house (4)unusual houses (4)cable ladders in homes (4)خانه های مجلل (3)ساختمان های ویلایی مدرن و عجیب (3)weird house photos (2) … Read entire article »

Filed under: Web development

Facebook profile banner generator script for sale

Dear friends, I have a highly viral Facebook profile banner generator script for sale. The price is 100 euro. If you are interested to buy, please drop me a PM, office@zunekit.com. Joseph Incoming search terms:facebook profile banner creator script (2)profile banner for sale (1)profil banner facebook script (1)facebook profile image generator script (1)banner charles chaplin facebook (1)facebook banner creator script (1)banner script generator facebook (1)banner generator script php (1)banner facebook 100 euro (1)profile banner maker white (1) … Read entire article »

Filed under: Web development

Google Page Rank Fix

If you have a pagerank script that no longer works, I can fix it for you. Contact me here. … Read entire article »

Filed under: Web development

Redirecting www to non-www using .htaccess

Some people like www, some not. I recommend to use only one of the versions, www or non-www. Here are some codes you can add to your .htaccess file to set up the friendly (301) redirects. Redirect www to non-www: RewriteEngine On RewriteBase / RewriteCond %{HTTP_HOST} ^www.yourdomain.com [NC] RewriteRule ^(.*)$ http://yourdomain.com/$1 [L,R=301] Redirect non-www to www: RewriteEngine On RewriteBase / RewriteCond %{HTTP_HOST} ^yourdomain.com [NC] RewriteRule ^(.*)$ http://www.yourdomain.com/$1 [L,R=301] None of these versions is better than the other. It is a matter of… I dunno… taste? I like to use the www one if my domain name is a short one, if it is longer, I use the none-www one. Was this post useful? Buy me a beer. Incoming search terms:www thoughtsofjs com (6)powered by SMF the game of love lyrics (4)powered by SMF 2 0 beer cycling jerseys (4)powered by myBB … Read entire article »

Filed under: Web development

Install JSON for PHP 5

I wanted to install a Facebook application on a new VPS server but I got this error message: Fatal error: Uncaught exception ‘Exception’ with message ‘Facebook needs the JSON PHP extension Basically, what we need is to install the JSON PHP extension. Here is how to do that. Step one: run this command: pecl install json When it’s done you should have a json.so file in your PHP modules directory. This directory should be /usr/lib/php/modules/ Step two: Add the json.ini file to /etc/php.d/ – to enable the extension add extension=json.so to this file Step three: Restart Apache Keep in mind that without restarting, the extension won’t be loaded. That’s all folks! Was this post useful? Buy me a beer. Incoming search terms:Facebook needs the JSON PHP extension (72)acquired inurl:/user php (12)how to install json php extension (9)/wp-signup php … Read entire article »

Filed under: Web development

WordPress Plugin: Browsable WordPress Tags

Browsable WP Tags is a simple wordpress plugin that will extract all your post tags and create a browsable list. Here are a few blogs that are using our plugin: Genuine admirer – Tags list Home Improvement Advice – Tags list Raw Food Diet – Popular Tags SEOmods.co.uk – Popular Tags Body language – Tags list Video Magazine – Tags list Install instructions Download the plugin from here Create the tags list. Create a new page. Add your desired page title (ie. Tags list). In the content section add the following text: <!--WP_Tags_List-->. You can also add this plugin to your template files by using this piece of code: <? wp_get_tags();?> Save and publish the page Enjoy! Incoming search terms:powered by SMF 2 0 days of our lives (7)powered by SMF 2 0 really funny video clips (5)powered by … Read entire article »

Filed under: Web development, Wordpress plugins