Hello everybody, after update my dolibar 3.2.2 to the new 3.2.3 in my Linux hosting, I get a blank screen when trying to generate invoices, it works Ok with other documents, but not with invoices. This is the log in my hosting, no advice in the dolibarr log, I have removed the real domain and the client IP: [spoiler] [Mon Jan 14 00:46:15 2013] [error] [client 2xx.xx.xx.xxx] PHP Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 491520 bytes) in /var/www/vhosts/myowndomain.es/httpdocs/dolibarr/core/triggers/interface_50_modAgenda_ActionsAuto.class.php on line 417, referer: http://www.myowndomain.es/dolibarr/compta/facture.php?facid=4 [/spoiler] As I see the error (interface_50_mod[b]Agenda[/b]_ActionsAuto.class.php) - I must clarify that got the agenda disabled in my modules, and as aditional information: - PHP memory limit is set to 32 Mb, before it was working with value. - Im using the crabe template with a few design modifications, but as I say, it works well. In fact, after push the button "generate" at the right of the template the blank screen appears, but taking the cursor to the navigator address bar y pushing intro, the URL the is http://www.myowndomain.es/dolibarr/compta/facture.php?facid=4), get back to the Invoice tab, and the invoice generated is there. The line 417 of [b]interface_50_modAgenda_ActionsAuto.class.php[/b] is the one with asterisks: [spoiler][code] // Parameters $object->sendotid defined by caller //$object->sendtoid=0; $ok=1; } elseif ($action == 'BILL_SUPPLIER_VALIDATE') { dol_syslog("Trigger '".$this->name."' for action '$action' launched by ".__FILE__.". id=".$object->id); $langs->load("other"); $langs->load("bills"); $langs->load("agenda"); $object->actiontypecode='AC_OTH'; if (empty($object->actionmsg2)) $object->actionmsg2=$langs->transnoentities("InvoiceValidatedInDolibarr",$object->ref); $object->actionmsg=$langs->transnoentities("InvoiceValidatedInDolibarr",$object->ref); $object->actionmsg.="\n".$langs->transnoentities("Author").': '.$user->login; $object->sendtoid=0; $ok=1; } elseif ($action == 'BILL_SUPPLIER_SENTBYMAIL') { ******** dol_syslog("Trigger '".$this->name."' for action '$action' launched by ".__FILE__.". id=".$object->id); $langs->load("other"); $langs->load("bills"); $langs->load("agenda"); $langs->load("orders"); $object->actiontypecode='AC_EMAIL'; if (empty($object->actionmsg2)) $object->actionmsg2=$langs->transnoentities("SupplierInvoiceSentByEMail",$object->ref); if (empty($object->actionmsg)) { $object->actionmsg=$langs->transnoentities("SupplierInvoiceSentByEMail",$object->ref); $object->actionmsg.="\n".$langs->transnoentities("Author").': '.$user->login; }[/code][/spoiler]