Parse error when editing order & adding product

I am trying to edit an order by adding an additional product to the order. Whenever I click the add product link, I get a parseerror in the red box on the upper left. I’ve contacted my host and this is what they stated:


[quote]

[Fri Apr 20 08:52:56 2012] [error] [client 69.xxxxxxx] PHP Fatal error:

Allowed memory size of 50331648 bytes exhausted (tried to allocate 80 bytes)

in /home/vin/public_html/

prepare.php on line 179, referer:

https://www.url.com/admin.php?dispatch=order_management.products



[Fri Apr 20 08:54:23 2012] [error] [client 69.xxxx] PHP Fatal error:

Allowed memory size of 50331648 bytes exhausted (tried to allocate 80 bytes)

in /home/vin/public_html/prepare.php on line 179, referer:

https://www.url.com/admin.php?dispatch=order_management.products



This means /home/vin/public_html/prepare.php was trying to use more than

50MB of memory and since that was the limit, the server stopped the script. I

see the global php memory limit is currently set to 128MB, so the 50MB limit

would be local to url.com. Normally it would be set in .htaccess or

php.ini though a php script itself can set this limit too. I didn’t find any

memory constraint in url.com that limits the php memory to 50MB and a

phpinfo page in url.com shows local php memory limit is at 128 MB so

that leaves just the possibility of the memory limit being set by the script

itself.

[/quote]



Anyone have any ideas on what would be causing the memory limit of 50MB?

The default in /config.local.php is 48. Check that file and change it to 128.

[quote name='The Tool' timestamp='1334949798' post='135207']

The default in /config.local.php is 48. Check that file and change it to 128.

[/quote]



Worked perfectly. Thank you.