Trying to use Choose Script to install

Status
Not open for further replies.

jaamzbuc

New Member
Messages
8
Reaction score
0
Points
1
I am trying to use the choose script to install to create a new web page but when I hit the Choose Script to install button it opens up and there is nothing to choose.
I have tried to load WebsiteBaker manually but there are some issues with the mysql and I cannot figure out how to fix them to make the page with the program. Everything I found to try to fix the issues
Depreciated: mysql_connect(): the mysql extension is depreciated and will be removed in the future: use mysqli or PDO instead ...
(Have not figured out how to do this properly)- I have two of those errors and one
Warning: Cannot modify header information- header already sent by (output started at...)

I ether need to figure out why the autoscripts button is not working or how to fix the errors properly in the manual install. The only links I found on it were in another language and I could not find a resolution for it.
PLEASE HELP!
 

Dead-i

x10Hosting Support Ninja
Community Support
Messages
6,084
Reaction score
368
Points
83
Hi jaamzbuc,

You are seeing the PHP errors because we utilise the latest version of PHP on our servers. Your script appears to use the old, outdated mysql_ library, which is deprecated as of PHP 5.5. Although this is deprecated, the error message will not actually halt your script. To stop this causing issues, you can either:
- Downgrade your PHP version to a version where mysql_ is not deprecated using your .htaccess file. Please click here for more information.
- Hide the error messages, by adding the following PHP code in an early, global place:
Code:
error_reporting(E_ALL ^ E_DEPRECATED);

Thank you,
 
Last edited:
Status
Not open for further replies.
Top