Need to bug again for feedburner test. I have few more fuel to test this feed to feedburner redirect. After that I will think what to do to solve this problem – problem of redirecting every kind of Wordpress feed (including Category and tag feed) to Feedburner.
But, I can show you Feedburner also has a [...]
If this works and feedburner updates it soon (possibly within an hr!) then my testing is over for wordpress feed to feedburner feed redirect. Lets see! lots of work need to do. Also my feed appeared to be larger than 512k or 576k So I need to set feed site to 5 post. Today [...]
Update (21-02-2010): I become tired testing Feedburner for recursive redirection problem. I need to wait for feedburner’s FeedBulletin for my account. and It does not come to check as and when you say to do so. So, I have got a smart solution which can get me what I want (redirect all kind of feed [...]
What do you think is the Google’s biggest goal. Sure they will say that we are planning to make internet experience and web presence better but how they think of it. What is the single most goal!
I think Google want to capture all available data on the internet and work as a hub for any [...]
Just now I got to know something about Google Buzz when I booted my Laptop and opened my Gmail account and I thought not to use it for now. It is distracting for me. I already have lots of social networking sites, Twitter, gTalk, skype and mobile phone and others to pass my time. I [...]
Here you will get working code for adding input fields dynamically using a link or button. Default number of input fields are provided and you want to give users a option to add more input elements then this script will work. Be it Input box field, Textarea or any other form elements, it will work [...]
What should a blogger do when a blogger want to rewrite a new post and S/he is not sure whether to write a new post or update the existing one? If an old post is much visited and well ranked then he may think of rewrite it or not? If he loose Google SEO ranking [...]
I have to convert few categories to tags and put all those post which are holding the current categories, which are going to become tags, to new categories. We have facility in Wordpress to convert categories to tags. You will find this link in Categories menu inside Post section. Please check at the bottom section.
By [...]
Here are few very common string functions in PHP for those who are new to PHP. In that case just familiarize with these functions.
addslashes
Add backslash (\) before characters that need to be quoted before inserting into database. Those characters where backslash will be added are single quote (‘), double quote (“), backslash itself (\) and [...]
Here is a script for getting file extension. It will take care of the file name like this: yourfilename.inc.php etc and not only filename.inc or fileename.php. It will get your last part of file irrespective of how many dots in file.
<?php
// will get the file name out of whole path (path/to/file.inc.php)
$filename = basename($filePath);
// split it [...]