problem with address http://www.bgweek.pcriot.com/

Status
Not open for further replies.

fibella94

New Member
Messages
1
Reaction score
0
Points
0
Hi.
I use Free Hosting one month and I wish to buy Premium Hosting. I have а problem with а job
script. Please can you visit the address http://www.bgweek.pcriot.com/. Can you tell me what is the problem- in the script or hosting.

Thank you in advance
 

descalzo

Grim Squeaker
Community Support
Messages
9,373
Reaction score
326
Points
83
Your script is out of date. That is what the 'Deprecated' warnings are about. The servers have been updated to run PHP 5.3 and your script uses features that are 'deprecated', ie they work, but they are discouraged and may not work in future versions of PHP.

You have to either
1. Get an updated version of the script
2. Find and correct the problem areas yourself
3. Add the line
error_reporting(E_ALL & ~E_DEPRECATED);
to the top of index.php . This "hides" the problem, but the script should run (at least until a new version of PHP goes from 'deprecated' to not working period).
 
Last edited:
Status
Not open for further replies.
Top