March 19th in PHP Scripts by .

Fixing set_magic_quotes_runtime deprecated in PHP

To fix the deprecated warning causing by PHP 5.3, all you have to do is replace the

set_magic_quotes_runtime(0);

with

//set_magic_quotes_runtime(0);
if(version_compare(PHP_VERSION, ’5.3.0′, ‘<’))
{
set_magic_quotes_runtime(0); //18th line
}

I have seen this error in wordpress and vbulletin.

Share:StumbleUponPrint

March 16th in PHP Scripts, Wordpress by .

Fix – Deprecated: Assigning the return value of new by reference is deprecated in PHP5.3

i recently updated to latest PHP 5 from PHP 4 and my wordpress blog was littered with these errors. I have seen these warnings before with PHP 5. Dont worry! The fix is very easy.

Deprecated: Assigning the return value of new by reference is deprecated in /home/topbest/public_html/wp-settings.php on line 472

Deprecated: Assigning the return …

February 18th in Money & Finance, PHP Scripts by .

Auto generate invoices from csv files with PHP

Screen shot 2012-02-18 at 4.53.29 PM

Tax season again, and i had to submit all invoices to file taxes. I always wanted a way to automatically generate invoices from the CSV file, i had which details like sales and billing activity from 2checkout.

I never liked buying accounting software specifically for this and i believe anything can …

November 4th in PHP Scripts by .

PHP – check ssl and redirect to https secure page

If you have a non https form and you if you want to force to use SSL (https), it can be done with 4 lines of code with php. Remember that you need to buy ssl and have https working in your website. The key here is use of $_SERVER['https'] …

September 16th in Miscellaneous, PHP Scripts by .

Interview with Balakrishnan who blogs at corpocrat.com

Screen shot 2011-09-16 at 6.19.29 PM

As a owner of Corpocrat.com, I was recently interviewed by SelfBlogger.com and i was really proud to share my struggles and experiences and i came a long long way to acheive my goals.  I answered on various topics including blogging, making money and career goals.  You can read my interview …

June 14th in PHP Scripts by .

Mysql Query – Use brackets for multiple conditions!

mysql

Often you might be in situations where you want to query your mysql database with multiple AND and OR statements in the WHERE clause., which is why i use brackets to nest either OR and AND statments. Those conditions within the brackets will be executed first in the mysql query.

Lets …

June 2nd in PHP Scripts by .

10+ Best Social Network Scripts in PHP

php

i have been searching for a while for  instant turnkey php scripts  to start my own social network site. I must say that i am totally impressed with the scripts and these are the best ones i have seen to start a social network. I have listed both open source …

May 7th in PHP Scripts by .

25+ Very Useful PHP Class libraries for Developers

php

I am gonna post here some the very useful php libraries and classes which will come so handy during coding. You might run into various requirements which is why i compiled these php components.  All the php libraries listed below is free software and can be downloaded in the original …

January 9th in Linux/Unix, PHP Scripts by .

How to import text data in mysql with spaces?

mysql

Lets say you have to import a large text file to mysql and fields are totally irregular but only separated by spaces. For example.  Since it is only text file and highly irregular data you have to use other methods to import data to database.

17876           …

January 9th in Linux/Unix, PHP Scripts by .

How to use LOAD DATA INFILE to import fixed width data in MySQL

It is very easy to import fixed width CSV data into your mysql database and LOAD DATA INFILE is the fastest method i have seen. If you are on shared hosting be sure you first upload the csv file to your hosting server and specify LOCAL if not you will …