Allowed memory size of 33554432 bytes exhausted (tried to allocate 41 bytes) in /home/rwp/www/test/CMF/dataface/Dataface/QueryTool.php on line 309,
I have added ini_set('memory_limit', '32M'); to my index.php file, based on a problem with a previous app I created.
Any ideas what I can do to get the dashboard to display the template on login?
Setting are fine in conf.ini and actions.ini code in files below.
actions/dashboard.php:
- Code: Select all
--
class actions_dashboard {
function handle(&$params){
$Contacts = df_get_records_array('Contacts', array());
df_display(array('Contacts'=>$Contacts), 'dashboard.html');
}
}
--
applicationdelegate.php:
- Code: Select all
--
class conf_ApplicationDelegate {
-- after permissions --
function beforeHandleRequest(){
$app =& Dataface_Application::getInstance();
$query =& $app->getQuery();
if ( $query['-table'] == 'dashboard' and ($query['-action'] == 'browse' or $query['-action'] == 'list') ){
$query['-action'] = 'dashboard';
}
}
}
--