Hello, I installed Xampp 1.7.4 and my little system show me this message: Deprecated: Assigning the return value of new by reference is deprecated in C:\www\sistema\lib\adodb-492\adodb.inc.php on line 914 Deprecated: Assigning the return value of new by reference is deprecated in C:\www\sistema\lib\adodb-492\adodb.inc.php on line 1988 Deprecated: Assigning the return value of new by reference is deprecated in C:\www\sistema\lib\adodb-492\adodb.inc.php on line 2060 PHP: What is the problem?
You must be using a statement like this : $obj = new class_name(); or $obj =& new class_name(); If latter is the case, remove & (ampersand). In former, try to view the code of the class, there may be some ampersand assignment(reference) like this =& try removing these ampersands.
ADODB looks like it's not been updated in over a year. You can either switch to PDO + Propel/Doctrine or suppress the error by editing the php.ini file: error_reporting = E_ALL & ~E_DEPRECATED Code (markup): The later is not ideal but might be your only option if the problems not resolved by the ADODB devs.