Drupal display blank page after adding enabling Drupal modules


Drupal display blank page after adding or enabling new Drupal modules.
Page access control not found or
Drupal display blank page after you adding or enabling new Drupal modules.
The example that I get, gallery2 just display blank page.
The reason is that you may be running out of memory, you may need to check the
PHP configuration file and check default memory setting for your PHP.
The default PHP memory limits for:
Fedora Core 5: 8M
Fedora Core 6: 16M
Solution: increase PHP memory by editing the PHP configuration file located at
/etc/php.ini or use find command to locate the PHP (php.ini)
configuration files.
[root@fedora ~]# find / -name php.ini
2. Open and edit the php.ini configuration
file and find part that say memory_limit:
;;;;;;;;;;;;;;;;;;;
; Resource Limits ;
;;;;;;;;;;;;;;;;;;;
max_execution_time = 30 ; Maximum execution time of each script, in seconds
max_input_time = 60 ; Maximum amount of time each script may spend parsing request
data
memory_limit = 16M ; Maximum amount
of memory a script may consume
3. Increase the amount PHP memory limit to any amount that you thing appropriate,
try use 64M.
memory_limit = 64M ; Maximum amount of memory a script may consume
- drupal's blog
- Login or register to post comments
- 2396 reads
- Email this page












