PHP Freelancer

 

PHP Programmer India

PHP Freelancer PHP Freelancer India PHP Programmer India PHP Freelancer Indian Freelancer Freelance Programmer Freelance Developer Freelance Web Developer Freelance Programmer India Hire PHP Developer India Wordpress Developer India CakePHP Developer India

Common Issues/Bugs

Upload large(Big) files in PHP using .htaccess

I have seen many developers who find difficulties when working with larger files upload in php. When files which are too large in size, needs to be uploaded by php than you have to change the default file size either from php.ini OR httpd.conf OR using .htaccess. Default upload file size will be 2MB. If you are uploading file which is larger than 2MB size than here i am showing you the way to upload larger files using PHP.

How to send email from localhost(XAMPP or WAMP) in PHP in Windows

Whenever you works in local server (XAMPP or WAMP) for developing any email functionality in website, than you might be wonder that why email is not going from localhost(XAMPP or WAMP) in windows environment. Well, i faced the same situation and in this case i can help you. Below is the error you might get when working with email.

Open Comment Author url/link in new window of your wordpress blog

I am using wordpress blog and i want to do change when visitors/author give comment in post/article in wordpress blog,the author url/link should open in new window so when any visitor will look at comment and if they want to go in author's website than website will open in new window(target = '_blank'). Main objective is , visitor still have your site open in tab or window and they will not navigate from your wordpress blog. Below is the solution how to add target='_blank' in comment url of your wordpress blog.

URL rewriting – SEO Friendly URLs in sunshop shopping cart

I am working with sunshop shopping cart and my client needs seo friendly urls instead of Query string(parameters) passed in urls. By default in sunshop shopping cart, URLS are not seo friendly. I searched for url rewriting options but finally i found how to do make seo friendly urls in sunshop shopping cart.SEO Friendly urls should look like this and may be you are looking for this kind of solution.

How to sort multidimensional array in Entry Categories plugin of expression engine

Today i face a situation where i need to sort my two dimensional array by column name(table_order).I am working in expression engine , installed one of expression engine plugin(Plugin name: Entry Categories). In this plugin, it is not giving any option if you want to get categories order by particular column name. Below is the way how to get the ordered data by particular table field name(below is the code for order by cat_order).

How to differentiate Addition Operator with Concatenation Operator in Javascript

All we know about Concatenation operator (+) in JavaScript which combine two string with "+" operator in JavaScript(If you want to do concatenation in PHP than use "." character between two strings). Problem creates when you want to do addition of two JavaScript variables.

Solved – Warning: session_start() [function.session-start]: Cannot send session cache limiter – headers already sent

This is the most common error, you will face when you will start working with sessions in PHP. I got below error. "Warning: session_start() [function.session-start]: Cannot send session cache limiter – headers already sent" and i got success to solve this. So i would like to share this with all of you.