Hi,
I bought TB Simplex. Everything seems to be in the zip-file. I tried to install the Demo File package on my local server Mamp. Everytime it works until the last step, than nothing happens and all I get is just a blank page in the browser. Whats is wrong. My Database and all the stuff must be correct. I did what is written on your page and in the readme.txt. After one day without finding a solution by my own I am helpless.
Thanks!
Hi,
I'm not an expert but I use MAMP too.
When I get a "white screen of death" I do this, which I found by searching drupal.org:
Go to sites/default/settings.php and add this, it increases MAMP memory limit:
ini_set('memory_limit', '64M');
SO
/**
* Drupal automatically generates a unique session cookie name for each site
* based on its full domain name. If you have multiple domains pointing at the
* same Drupal site, you can either redirect them all to a single domain (see
* comment in .htaccess), or uncomment the line below and specify their shared
* base domain. Doing so assures that users remain logged in as they cross
* between your various domains. Make sure to always start the $cookie_domain
* with a leading dot, as per RFC 2109.
*/
# $cookie_domain = '.example.com';
ini_set('memory_limit', '64M');
Thank you so much. It was nearly the solution. You can upgrade the php.ini of MAMP. So I could install the demo file. You have to install Drupal at the same time, so I couldn't change the settings.php. But your answer helped me to find the solution on google. Made my day :)