Welcome Guest, Not a member yet? Register   Sign In
Codeigniter Error
#1

[eluser]Unknown[/eluser]
I am new to codeigniter. I am getting errors while using codeigniter. I have worked with the same code on my laptop, which has worked fine. When i brought it to office its not working.

Below is the errors i got :

-------------------------------------------------------------------------------
Deprecated: Assigning the return value of new by reference is deprecated in C:\xampp\htdocs\asgc\system\codeigniter\Common.php on line 130

Deprecated: Assigning the return value of new by reference is deprecated in C:\xampp\htdocs\asgc\system\codeigniter\Common.php on line 136



A PHP Error was encountered
Severity: 8192

Message: Function set_magic_quotes_runtime() is deprecated

Filename: codeigniter/CodeIgniter.php

Line Number: 60

A PHP Error was encountered
Severity: 8192

Message: Assigning the return value of new by reference is deprecated

Filename: libraries/Loader.php

Line Number: 255

A PHP Error was encountered
Severity: 8192

Message: Assigning the return value of new by reference is deprecated

Filename: database/DB.php

Line Number: 133

A Database Error Occurred
Unable to select the specified database: blog
#2

[eluser]John_Betong[/eluser]
Looks like you have different PHP versions between your laptop and work.

Try searching your code for  error_reporting[/b] and replacing with the following code.
Code:
error_reporting(E_ALL ^ E_DEPRECATED);

Also search this forum for error_reporting(E_ALL & ~E_DEPRECATED);

 
 
 
#3

[eluser]Derek Jones[/eluser]
Er, I'd opt to fix the errors instead of hiding deprecation errors. It sounds like your server at the office is running PHP 5.3. What version of CodeIgniter are you using? v1.7.2 should take care of those errors.




Theme © iAndrew 2016 - Forum software by © MyBB