Posts

Showing posts with the label php development

Methods of Increasing file upload size in PHP

It often becomes a major headache to continue file uploading in PHP due to limitations in maximum file upload size. Increasing memory limits in PHP and increasing PHP upload size are two completely different worlds of determinations. Default option allows PHP upload size be limited between 2MB to 10MB. Most servers are developed on PHP scripts which make it open to initiate changes in upload limits. Errors are common with developers finding it hard to select higher upload sizes. We have given a few steps which can help to ensure increasing file upload size in PHP. Configuration Options The following configurations need to be set in order to prepare the increase in upload limitation. ‘upload_max_filesize’ is a command that ensures increasing the upload file size. ‘memory_limit’ allow developers to set maximum limits within the script. This allows the desired file size to be allocated. This is a very important command that helps preventing poorly written scripts to...

10 Tips for Effective PHP Development

Today, PHP is of the most popular web development languages in the world with over twenty million domains in the web using PHP web development techniques. Also many open source web development frameworks such as WordPress and Drupal have also used PHP. There has been a tremendous growth in the web development field with most web development companies setting up their base. Many frameworks and tools have also been built to aid in the PHP development. However, most offshore PHP developers have still a long way to go when it comes to effective development. Here are a few tips that can help you in making the PHP development process effective: 1.Use PHP framework: Using PHP framework will provide for standardization of code and thus you will achieve faster development process. Though using the simple PHP is a little faster than using the framework, it leads to writing of bad code which ends up making the entire development process complicated. 2.Keep a collection of code snip...