All Entries in the "PHP" Category
PHP Debugging Techniques – Part III
Use an IDE and Debugger
Most developers use some Integrated Development Environment (IDE) for the majority of their development, and I highly recommend that you do the same. Many PHP developer use Zend Studio and you only have to look at the feature list to see why they find it completely indispensible, especially for debugging. If you have not [...]
PHP Debugging Techniques – Part II
2. Error Logging
Despite out best efforts, errors can (and do) occur in production environments. When these hiccups do arise we have to ensure that they are dealt with quickly, otherwise users (or even, gasp, clients) get angry.
A logging system can be very useful in tracking down bugs, especially when they happen in a production environment. [...]
PHP Debugging Techniques – Part I
There are many PHP debugging techniques that can save you countless hours when coding as error reporting, using print statements etc. Let’s go through a little detail of these techniques.
Error Messages
Error messages are your first line of defense as a developer. You don’t want to be developing code in PHP on a server that is [...]
How to change Contact US page in Joomla
Very easy steps to change it.
Go to administration section.
Click "Components" -> "Contacts" -> "Manage Contacts"
Here you can add/edit/delete contacts.
Enjoy the great php CMS…
Change file upload size limit in PHP/MySQL
In php.ini, this is the one:
upload_max_filesize
However, change only this line won’t help you to restore big db, so you have to setup some other factors as well Try these different settings in C:\wamp\bin\apache\apache2.2.6\bin\php.ini Find: post_max_size = 8M upload_max_filesize = 2M [...]
