Notice: Function _load_textdomain_just_in_time was called incorrectly. Translation loading for the wp-expand-tabs-free domain was triggered too early. This is usually an indicator for some code in the plugin or theme running too early. Translations should be loaded at the init action or later. Please see Debugging in WordPress for more information. (This message was added in version 6.7.0.) in /home/websitedevait/public_html/wp-includes/functions.php on line 6131
How can I change the amount of memory that PHP uses? | Advanced Internet Technologies

The amount of memory that PHP uses is controlled by the php.ini file. The php.ini file is located in /usr/local/lib directory. In this file, if you want to change the alloted memory for script execution, you need to find a line that looks like the following:

memory_limit = 16M

This is change in megabytes, notice the M. Remember, that you ALWAYS have to specify M, and NOT MB, or you will cause the ini file not to be read properly, and have only 16 bytes if you have 16MB specified in that line.

Save the file and upload it back to the server. Ensure you make a backup copy before you upload it.