Error when creating invoices & payments

Allowed memory size of 33554432 bytes exhausted (tried to allocate 20480 bytes)

in PDOStatement.php (line 142)

Anyone have experience with this issue?

Sounds like the memory_limit setting in PHP is to blame. According to the error, it’s only allowing about 33mb per script. You could try increasing that to something like 64 or 128.

To confirm, create a new file called “phpinfo.php” and place it in your /ninja/public folder. The file should only contain the following:

<?php

phpinfo();

?>

Then go to `http://yourninja.url/phpinfo.php, hit Ctrl-F and look for “memory_limit” (should be under the section labelled “Core”)