My website is hosted on X10hosting and I keep getting this error messages

jfrancis79

Member
Prime Account
Messages
133
Reaction score
1
Points
18
My website is hosted on X10hosting and I keep getting this error messages


“Deprecated: Assigning the return value of new by reference is deprecated in /home/<sitename>/public_html/my/pdfit/PEAR/DB.php on line 317”

and also


“Warning: Cannot modify header information - headers already sent by (output started at /home/<sitename>/public_html/my/pdfit/PEAR/DB.php:317) in /home/<sitename>/public_html/my/pdfit/common.php on line 66”
I am trying to install this script http://www.tufat.com/s_business_card_designer.htm , also on the site is the requirements with I think the server meets, so why am I getting this?
 

descalzo

Grim Squeaker
Community Support
Messages
9,373
Reaction score
326
Points
83
It is because your script is out of date.

1. Get a newer version of the script, one that is valid under PHP v 5.3

OR

2. Add the line

error_reporting(E_ALL & ~E_DEPRECATED);

at the beginning of the script.

Deprecated == you really shouldn't be using this feature but it will continue to work for now. It may not in the future.
 
Top