By
Gunjan · February 27, 2010
I have faced a big problem while installing Drupal. I am receiving following error message
[Sun Feb 28 10:00:20 2010] [error] [client 127.0.0.1] PHP Fatal error: Call to undefined function _user_password_dynamic_validation() in /usr/share/drupal/install.php on line 710, referer: http://localhost/drupal/install.php?
profile=default&localize=true
To resolve above issue we need to manually update the table values
From shell run following commands.
root@theperfectarts.com[~]#mysql -u USER -p
Enter your mysql user password password
Or you can also
root@theperfectarts.com[~]#mysql
root@theperfectarts.com[~]#use drupal_databasename
Then run following sql statement
root@theperfectarts.com[~]#UPDATE system SET status = 1 WHERE name = ‘block’ OR name = ‘user’ OR name = ‘node’ OR name = ‘filter’;
Now try to install drupal
By
Gunjan · February 21, 2010
Most of the time we need to check the mysql value set on server and most of the techs checks /etc/my.cnf file.If you want to check all values set in mysql on server. We can use following simple command.
mysqld –no-defaults –verbose –help
Most of the scripts cron run from admin section and we are settings cron without admin section login details due to that cron never be run.We can set the cron with the admin section login details.Mostly we prefer curl to set the authentication cron because most of the servers blocking wget/lynx command.Simply we can set the cron with the following syntax.
/usr/bin/curl http://support:1q2w3e@www.yourdomain.com/test_script/cron.php
If you don’t want to receive cron result in E-mail then refer following sytax
/usr/bin/curl http://support:1q2w3e@www.yourdomain.com/test_script/cron.php > /dev/null 2>&1