#Wordpressi keskkonna mälu kasutamise mahu muutmine
1. You can set the memory limit in the php.ini file. The syntax for setting this in the php.ini file is:
memory_limit 1024M
2) To increase the WordPress allowed memory size for your website:
Open wp-config.php, which by default is located in the root WordPress directory.
Find the following line near the end of the file:
/* That's all, stop editing! Happy blogging. */
Just above that line, add the following line:
define('WP_MEMORY_LIMIT', '1024M');
Save your changes.