Headline
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. … Read entire article »
Featured
Sedo’s Category Showcase, totally useless
Dear all, If you are in the domain marketing you already know about Sedo, if not, check their … Read more »
As I Began To Love Myself, A Poem by Charlie Chaplin
Note: This poem might not be written by Chaplin. On one of the blogs that published this poem I have found this text: Apparently Charlie Chaplin wrote the following poem on his 70th birthday … Read more »
Popular
Fix for BuddyPress e-mail notifications problem
I have a client who installed BudyPress and since then the mail() function stopped working. SMTP could not connect neither. I had to look into BudyPress’ code to find the problem. Here is … Read more »
Moderate new user registration in BuddyPress
BuddyPress doesn’t look like a perfect script to me, it has some missing parts.. One of these extremely important parts is the option to moderate new user registration (check them for … Read more »
When Nietzsche Wept
When Nietzsche Wept- Final Scene Nietzsche’s tears. … Read more »
Latest
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 … Read entire article »
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 »
Flash Player crashes display driver when in full screen
I love watching movies in full screen. Who doesn’t?! Unfortunately my Dell Inspiron 1501 could not handle YouTube videos while in full screen mode. Today I decided that I must find a solution to fix this problem. I am a lucky guy! I have found one and here I am sharing it with you! Basically, the problem was not my computer.. Here’s what you’ll have to do if you have the same problem as I had: 1. Go to youtube.com and open up a video. 2. Right click anywhere in the video and click on “settings” 3. Uncheck “enable hardware acceleration” 4. Enjoy full scree videos! No more “Display driver stopped responding and crashed” for us! Was this post useful? Buy me … Read entire article »
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. … Read entire article »
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. … Read entire article »