go to cyberpanal and you see edit PHP configs on left-hand side Bottom.
And select your present PHP version and Cyberpanel has Created easy fields, Directly enter the required Data, and hit save. And refresh your Site you will have you Memory Limit increased :)
Comments
And select your present PHP version and Cyberpanel has Created easy fields, Directly enter the required Data, and hit save. And refresh your Site you will have you Memory Limit increased :)
For instance, I had a WordPress installation that had the following line in wp-config.php:
define( 'WP_MEMORY_LIMIT', '64M' );
So no matter what the php.ini settings were, WordPress was stuck on 64M. Changing the value on that line fixed the problem.
Memory limit can be set from within a script using ini_set(), like this:
ini_set(‘memory_limit’,’64MB’).