Need help with ini_set

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

Post Reply
Shylux
Forum Newbie
Posts: 1
Joined: Mon Feb 22, 2010 9:26 am

Need help with ini_set

Post by Shylux »

I try to increase the maximum upload size.
Here is the code:

Code: Select all

ini_set('memory_limit', '1024M');
ini_set('post_max_size', '1024M');
ini_set('upload_max_filesize', '1024M');
ini_set('max_execution_time', '120');
ini_set('max_input_time', '120');
Unfortunately it didn't work... :banghead:
Can someone tell me what i have to do to solve that problem?
User avatar
AbraCadaver
DevNet Master
Posts: 2572
Joined: Mon Feb 24, 2003 10:12 am
Location: The Republic of Texas
Contact:

Re: Need help with ini_set

Post by AbraCadaver »

mysql_function(): WARNING: This extension is deprecated as of PHP 5.5.0, and will be removed in the future. Instead, the MySQLi or PDO_MySQLextension should be used. See also MySQL: choosing an API guide and related FAQ for more information.
Post Reply