Developing PHP Applications

Zhannar Personal Blog

Archive for May, 2008

May-17-2008

Easier way to Maximize the Import Limit of your PhpMyAdmin

Just simply add this code to the top of your config.inc.php file.

<?
ini_set('memory_limit', '32M');
ini_set('upload_max_filesize', '20M');
ini_set('post_max_size', '20M');
ini_set('max_execution_time', '1800');
ini_set('max_input_time', '1800');

// … rest of the config.inc.php …//

?>

This is much more helpful if you don’t have access to ‘.htaccess’ file.

Posted under PHP-MySQL