lecaros
Forum Replies Created
-
Forum: Installing WordPress
In reply to: Install fails on win2k-apache-mysql-phpnext try:
comment lines
if ( !extension_loaded(‘mysql’) ) {
die( ‘Your PHP installation appears to be missing the MySQL which is required for WordPress.’ );
}on wp-settings.php
results:
blank page, so library is loaded, but no resultsnext try
change
if ( !extension_loaded(‘mysql’) ) {
die( ‘Your PHP installation appears to be missing the MySQL which is required for WordPress.’ );
}
to
if ( !extension_loaded(‘mysqli’) ) { // mysqli , no te the “i”
die( ‘Your PHP installation appears to be missing the MySQL which is required for WordPress.’ );
}results:
blank pageso, library is loaded, but for some reason it doesn’t work.
next try:
enable mysql library instead of mysqli on php configuration.result
it works!!I hope this helps to others with same problem.
sl3
Forum: Installing WordPress
In reply to: Install fails on win2k-apache-mysql-phpXAMPP works, but I need this stuff for a production environment, so must have services running by it self.
I have many others sofware, like Trac, moinmoin, etc. So I must do it correctly 🙂
may be xampp installation helps me to find the correct configuration parameter.
thanks againsl3
Forum: Installing WordPress
In reply to: Install fails on win2k-apache-mysql-phphi, thanks.
i already check that issue, but isn’t the problem here, cause phpinfo(); shows right parameters for mysqli (because can read php.ini i guess… i’ll try removing php.ini 🙂 )
And about google search… i’m not a new user on net 🙂
i’ve visited almost hundreds webpages, and try with many options, ideas, but i can’t fix it yet.
examples:
– path to php.ini
– loading dll by wp settings file
– read and check solutions for in several post in this forum (some talking about webhosting sites, etc.)
and finally i decided to create this post.
sorry about don’t write all my attempts before (there are many othes)so, somebody have any idea?
thanks in advance
sl3