View Full Version : Vbulletin Can Not Install.
devoidfeast
07-05-2014, 01:08 AM
Hello Fellows,
I am trying to install vbulletin 5 on our server.
i tried that php is installed and working on the server i have attached a snapshot of phpinfo().
149613
but whenever i browse to mydomain.com/core/install/index.php i get a blank page.
How can i resolve this issue?
Thank You
Lynne
07-05-2014, 03:11 PM
The PHP version is too low on your server. You need at least version 5.3.7 (you show version 5.3.3).
devoidfeast
07-05-2014, 08:31 PM
I updated the php and here is the new phpinfo() the attachement.
149617
Here whenever i try to install vbulletin with dbtype in the manager with "mysql" i get the following error.
149618
and when i try to install vbulletin with dbtype in the manager with "mysqli" i get
149619
Thank you.
Paul M
07-05-2014, 09:19 PM
Mysql is deprecated in php 5.5.x.
The latest vB3 & vB4 will auto switch you to mysqli if you run php 5.5 (or greater)
However, the powers decided not to do this in vB5, apparently preferring it to die with an error <shrug>.
As far as the mysqli error goes, it looks like you are not loading the mysqli module, thats normally done via php.ini
devoidfeast
07-05-2014, 09:42 PM
Mysql is deprecated in php 5.5.x.
The latest vB3 & vB4 will auto switch you to mysqli if you run php 5.5 (or greater)
However, the powers decided not to do this in vB5, apparently preferring it to die with an error <shrug>.
As far as the mysqli error goes, it looks like you are not loading the mysqli module, thats normally done via php.ini
Can you help me please, i will pm you my server details i am unable to do it so far.
thank you
--------------- Added 1404603568 at 1404603568 ---------------
php -m | grep mysqli
shows that mysqli is enabled the out output gives.
mysqli
--------------- Added 1404604242 at 1404604242 ---------------
Now As the mysqli module is installed and enabled but this time i get " There is a serious error and the page cannot be rendered" with mysqli enable as dbtype.
How can this be ressolved?
thanks
Lynne
07-06-2014, 01:15 AM
Go into debug mode and then go to that same page and see what the actual error is.
To enable debug mode edit the /config.php file and change:
$config['debug'] = false;
To:
$config['debug'] = true;
Then edit the /core/includes/config.php file and change:
// $config['Misc']['debug'] = true;
To:
$config['Misc']['debug'] = true;
To set that up for only your IP address (replace xxx.xxx.xxx.xxx with your IP), put these lines around the code:
if($_SERVER['REMOTE_ADDR'] == "xxx.xxx.xxx.xxx") {
CODE HERE
}
vBulletin® v3.8.12 by vBS, Copyright ©2000-2025, vBulletin Solutions Inc.