I'm getting this error after the database step in the installation:

I have php 5.2.6

Fatal error: Call to undefined function _user_password_dynamic_validation() in /home/httpd/vhosts/xxxxxx.com/subdomains/community02/httpdocs/install.php on line 709

thanks

Comments

Magnity’s picture

This isn't a lot of help: but its a known issue: http://drupal.org/node/203187

Magnity

http://webdesign.magnity.co.uk
Drupal 5 themes | Drupal 6 themes

wjbeaver’s picture

I'm not in a subdirectory but I am in a subdomain, community02.xxxxxx.com, will mess with the rewrite rules

wjbeaver’s picture

I uncommented RewriteBase /

no change

wjbeaver’s picture

[Sun Aug 03 16:59:06 2008] [error] [client 70.176.108.250] ModSecurity: Access denied with code 501 (phase 2). Match of "rx (?:^(?:application\\\\/x-www-form-urlencoded(?:;(?:\\\\s?charset\\\\s?=\\\\s?[\\\\w\\\\d\\\\-]{1,18})?)??$|multipart/form-data;)|text/xml)" against "REQUEST_HEADERS:Content-Type" required. [id "960010"] [msg "Request content type is not allowed by policy"] [severity "WARNING"] [hostname "community02.xxxxxx.com"] [uri "/install.php"] [unique_id "AgboyELw7n8AAGZoZocAAAAD"]

I've had problems before with mod_security, I think I know where a fix is, will post them if I get it working

wjbeaver’s picture

One easy fix is to turn the mother off in .htaccess

SecFilterEngine Off

or allow the install file

SecFilterEngine On
SecFilterSelective "REQUEST_URI" "/install.php" "allow,nolog"

I can't get these to work in .htaccess because I have a Plesk setup

I have to create a vhost.conf in the conf directory below web root and use:

<location>
SecFilterEngine Off
</location>

or

<location>
SecFilterEngine On
SecFilterSelective "REQUEST_URI" "/install.php" "allow,nolog"
</location>

and then run:

/usr/local/psa/admin/bin/websrvmng -v -a

probably want to restart apache also, I've seen yes and no
If you don't have root access you need your server admin to do this

ocforum’s picture

where do you put the SecFilterEngine Off in the .htaccess file? and is there any symbols to be put before it?