The blank page is because you're
getting a php error and error display turned off.
in your php.ini, set
error_reporting =
E_COMPILE_ERROR|E_RECOVERABLE_ERROR|E_ERROR|E_CORE_ERROR
and
display_errors = On
then restart apache and try it.
-Don-
On 12/21/2012 1:33 PM, Alok Singh Mahor wrote:
Hi all,
I wanted to reinstall my Linux so I backup the my drupal site
without clearing chache and disabling clean url and without
retaining the permissions.
I simply use the command in my shell (cp -r /var/www/drupal
~/DATA)
and backed up databse using mysqldump
now after reinstalling my OS I just copied my drupl site to same
place in /var/www
and I set
chown www-data:www-data /var/www/drupal/sites/default/setting.php
chown www-data:www-data /var/www/drupal/sites/default/files
and restored mysql database properly with same name.
setting.php is correct
but when I am opening http://localhost/drupal its
showing blank page
please tell me where I am wrong? and what went wrong?
is it happening because of chache and clean url?
thank you