PHP Upload file size question
Installation and Configuration
You might need to restart your server. I think 128MB is the max you will get on arvixe shared hosting. Do you need more than that?
Site Builder - Menus 1.0.3
Site Builder - Panels 1.0.4
Site Builder - Widgets 1.0.7
function xxReviews_init(){
jrCore_register_event_listener('jrCore', 'daily_maintenance', 'xxReviews_daily_maintenance_listener');
return true;
}
/**
* Daily maintenance
* @param $_data array incoming data array
* @param $_user array current user info
* @param $_conf array Global config
* @param $_args array additional info about the module
* @param $event string Event Trigger name
* @return array
*/
function xxReviews_daily_maintenance_listener($_data, $_user, $_conf, $_args, $event)
{
// do whatever you want to do here, then return $_data
// this function will run once a day.
return $_data;
}