As per my previous post about session cookies - we're hosting at Acquia, and they have identified some issues.
In particular, Awe Content/MD Megamenu is altering the PHP memory limit (increasing it). We need to find and disable the code that's doing this, as it's messing with the performance setup on the server.
Please advise.
OK, found where this came from.
In awe_builder.module, I commented out the following, at line 1086:
// $memory_limit = intval(ini_get('memory_limit'));
// //change memory
// if($memory_limit < 512)
// ini_set('memory_limit', '512M');
// // unlimit time
// set_time_limit(0);
// $form->updateLinksByNewBaseUrl($oldHost, $base_url);
// //restore old memory
// if($memory_limit < 512)
// ini_set('memory_limit', $memory_limit.'M');
So far nothing broke.
Update - this edit seems to have broken the site on the Acquia side, though not on my local dev environment.
Loooking for a more elegant solution...
Hello,
In file awe_builder.module, please search function "awe_builder_theme" and comment: _awe_builder_auto_convert_url();