Subscribe Newsletter

Your Name  : 
Email Address *  : 
  • PNR Enquiry: Google SMS is a good way but besides it you can also check the PNR...
  • ???????: Thanks a lot, I have same problem and think how to solve it all day,...
  • Union Budget 2013-2014: Nice service by Indian Railways.
  • Railway Budget 2013: It is nice service of Google SMS by Indian Railway.
  • wordpress – widgets – plugin 2012: For more information see:...
  • PNR Status: thank you for the info
  • louisg: Thank you Bala Krishna, that’s very nice. Thanks for the SEO plug as...
  • Sandeep Beniwal: Hi, I want to convert video into .flv/.swf using asp.net...
  • Barun Roy Choudhury: Please send me swift code for IOB Santoshpur branch Kolkata...
  • Daniel: Hi, I followed the steps in the article and it gives me an error: Unknown...
  • amarana mohanarao: hello sir iam mohan plz send me STATEBANK OF INDIA [kotturu]...
  • Irina: Hi! Thank you for the article, really nice, but I have some more question...
  • s khaja mynuddin: hello i have forgotten my profile password can i send the filled...
  • Archives

  • Blog Stats

How to Permanently(301) Redirect 404 Error to WordPress Home

August 7th, 2011 Bala Krishna Posted in PHP Function, PHP Programming, PHP Tutorial, Wordpress Plugin, Wordpress Theme, Wordpress Widget 3 Comments »

You might be occasionally come to an error page called 404 which is also known as Page Not Found. A 404 page is an error page which explain site visitors that the page they are looking for not found on the website. If you are having many 404 error page on your website then you may want to redirect all of them to your Word Press home page.  It will remove all 404 links from search engine index and transfer all benefits those links have to home page. So, it’s a good idea to get SEO benefit from not exist pages. If [...]

Read the rest of this entry »
AddThis Social Bookmark Button

How to Fix Swift Mailer Error Address in mailbox given does not comply with RFC

April 9th, 2011 Bala Krishna Posted in General, PHP Function, PHP Programming, PHP Tutorial, Tips and Tricks No Comments »

Swift Mailer is an robust object oriented library written in PHP5 with lot of useful features. It can be used with any PHP application developed in PHP5. Symfony, Typo3 framework as well as many other open source framework uses this library. The error i am talking about seems to be a common error and lot of people talking on the web about it. I personally encountered this error with Symfony framework when i was trying to send an email to user after registration. The script thrown following error: Fatal error: Uncaught exception ‘Swift_RfcComplianceException’ with message ‘Address in mailbox given [] [...]

Read the rest of this entry »
AddThis Social Bookmark Button

How to edit php.ini in WHM/CPanel

August 17th, 2010 Bala Krishna Posted in General, PHP Function, PHP Programming, PHP Tutorial, Tips and Tricks, Web Development, Web Technology 2 Comments »

If you are managing server and running multiple websites on server then sure you need to tweak and optimize php setting in php.ini file that works for you. for example, you need to increase max file upload size if you are running a video streaming website or increase memory_limit value due to memory allocation failure in php script. WHM does not allow you to change these values through WHM/Cpanel web interface. All you have to recompile apache with php in order to make critical change in php.ini. Your first step is to check location of php .ini file. You can [...]

Read the rest of this entry »
AddThis Social Bookmark Button

How to Fix WordPress Posts Missed Schedule Issue

March 5th, 2010 Bala Krishna Posted in General, Linux, PHP Function, PHP Programming, PHP Tutorial, Tips and Tricks, Word Press, Wordpress Plugin, Wordpress Theme, Wordpress Widget No Comments »

Word Press have missed schedule issue from 2.7 version onwards. Word Press post scheduling was working fine upto   2.6.5 version as many of users reported on web.  You can schedule wordpress post to publish on a specified time. but when time comes post can not publish and shows missed schedule in the admin area.  According to WP guys, this is not the issue that Word Press guys can fix. This issue comes when your web server can not properly execute wp-cron process.  New wordpress wp-cron method run wp-cron in separate process that rely on web server configuration. Everytime Word [...]

Read the rest of this entry »
AddThis Social Bookmark Button

How to Run PHP5 at 1and1.com Linux Account

February 15th, 2010 Bala Krishna Posted in General, PHP Programming, PHP Tutorial, Tips and Tricks, Web Hosting, Wordpress Plugin 1 Comment »

1&1 Linux hosting still support PHP4 as default php processor for .php files. To run PHP5 you need to rename .php file as .php5 file. But it is hard to rename all application files at once. You can use PHP5 in your account by following simple steps below: Create a .htaccess file or edit .htaccess file if you application already using Add below lines on the top on file content AddType x-mapp-php5 .php AddHandler x-mapp-php5 .php Upload .htaccess file to root folder of your hosting account. Done!

Read the rest of this entry »
AddThis Social Bookmark Button

How to Fix WordPress MU Redirect Loop Installation Error

November 13th, 2009 Bala Krishna Posted in Browser Stuff, Bug Fix, Error Log, PHP Function, PHP Programming, PHP Tutorial, Tips and Tricks, Web Technology, Word Press, Wordpress Plugin, Wordpress Theme, Wordpress Widget No Comments »

I recently encounter this issue on my client wordpress mu blog.  When i open main blog page after installation an infinite loop occur and stop at dead end in Firefox. I searched a lot about this on wordpress forum. Surprising, issue is stated everywhere in the forums and blog but no solution was suggested. Why Redirect Loop? The issue arise because database was not created during wordpress installation but word press config file was written. WordPress uses wp-config.php file to store database configuration.  If WordPress find this file in the  installation directory then no further installation procedure begin. WordPress now look at DB to load default blog but [...]

Read the rest of this entry »
AddThis Social Bookmark Button

CakePHP Call to undefined function vendor() Error

October 6th, 2009 Bala Krishna Posted in PHP Function, PHP Programming, PHP Tutorial, Web Development, Web Technology 2 Comments »

Vendor() function basically used to load third party library in CakePHP. This function have been deprecated in the recent CakePHP releases.  The vendor function in earlier CakePHP releases has been replace with new App::import method that is more user friendly and allow you to include third party library in several ways. To fix the issue simply replace vendor function with new method.  New import method return boolean true or false depend on the library loaded or not.  This is useful in some context.  With new import method you have option to verify third party library loading and act accordingly so your [...]

Read the rest of this entry »
AddThis Social Bookmark Button

Create JavaScript Confirm Box for Record Deletion

October 10th, 2008 Bala Krishna Posted in Browser Stuff, Crawler, Firefox, Java Script, PHP Function, PHP Programming, Web Design, Web Development, Web Technology, Window Application No Comments »

Confirmation before deletion of record is very useful to preserve data from accidental record deletion. With confirmation process will be in two steps. Here is the javascript way to ask user whether they want to delete record or not. <a onclick=”return confirm(‘Are you sure you want to delete?’)” href=”page.page?act=delete&id=1″>Delete</a> You can see above example. The method is very easy.? if you click OK.. then function will return true and browser navigate href URL otherwise false value will be return and your click will not work. You can achieve same functionality by wraping above method in a function.

Read the rest of this entry »
AddThis Social Bookmark Button

Secure PHP Application with Suhosin Hardened-PHP

August 31st, 2008 Bala Krishna Posted in PHP Function, PHP Programming, PHP Tutorial, Security, Tips and Tricks, Web Technology No Comments »

Suhosin is a security product released by Hardened-PHP to secure your PHP application. Hardened-PHP is founded by Stefan Esser, Christopher Kunz and Peter Prochaska from Germany with the primary goal to help php web developers, development organization to secure PHP web application. They also provide searvice to find out security holes in your php applicatn by examining application code. Suhosin comes with two component that can work separately or in collboration. The first component called Suhosin patch that help you to secure your application from some low-lever vulnerabilities like bufferoverflows. The second component comes as PHP extension that reduce risk [...]

Read the rest of this entry »
AddThis Social Bookmark Button

Instantly Clear Google Search Box History

August 19th, 2008 Bala Krishna Posted in Browser Stuff, Bug Fix, General, Internet Explorer, Internet Marketing, PHP Programming, Social Media, Tips and Tricks, Web Design, Web Development, Web Technology 1 Comment »

Google Search Box History is a good tool for web surfer who want to track of their search history. It is very useful sometime when we forget what we have browsed. But at the same time it curious for the people who love their privacy. Because it make available to open what you have accessed though your web browser. Google do not store your browser activity, All such form data saved by browser itself. Note that Google Web Search History is different from Search Box History. If you login in to Google account, Google track your search activity to deliver [...]

Read the rest of this entry »
AddThis Social Bookmark Button