[Bug 1320532] Re: display_errors Off not respected

2014-05-20 Thread Nick Fazakis
Guys i'm not sure what causes this to happen, i was not able to fix it
for sure i have display_errors off , phpinfo() says also i have it off,
for sure this was not happening in older ubuntu versions, the legacy
code is a mixture of opencart and custom code so it's really not that is
to be sure why this is happening. So i will leave this issue as is and
if somebody has the same problem maybe can tell more. Thank you all for
your response.

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to php5 in Ubuntu.
https://bugs.launchpad.net/bugs/1320532

Title:
  display_errors Off not respected

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/php5/+bug/1320532/+subscriptions

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1320532] Re: display_errors Off not respected

2014-05-20 Thread Nick Fazakis
Guys i'm not sure what causes this to happen, i was not able to fix it
for sure i have display_errors off , phpinfo() says also i have it off,
for sure this was not happening in older ubuntu versions, the legacy
code is a mixture of opencart and custom code so it's really not that is
to be sure why this is happening. So i will leave this issue as is and
if somebody has the same problem maybe can tell more. Thank you all for
your response.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1320532

Title:
  display_errors Off not respected

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/php5/+bug/1320532/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1320532] Re: display_errors Off not respected

2014-05-18 Thread Nick Fazakis
** Description changed:

- Guys while i have display_errors off in PHP 5.5.9-1ubuntu4 (package) it keeps 
printing the following error: 
- Unknown: mysql_connect(): The mysql extension is deprecated and will be 
removed in the future: use mysqli or PDO instead in 
seller/controller/dbOperator.php on line 9  
+ Guys while i have display_errors off in PHP 5.5.9-1ubuntu4 (package) it keeps 
printing the following error:
+ Unknown: mysql_connect(): The mysql extension is deprecated and will be 
removed in the future: use mysqli or PDO instead in 
seller/controller/dbOperator.php on line 9
  
- if i set the display_errors On the error messages is: 
+ if i set the display_errors On the error messages is:
  Deprecated: mysql_pconnect(): The mysql extension is deprecated and will be 
removed in the future: use mysqli or PDO instead in 
system/database/mysql_cached.php on line 10
  Unknown: mysql_connect(): The mysql extension is deprecated and will be 
removed in the future: use mysqli or PDO instead in 
seller/controller/dbOperator.php on line 9
  
  For some reason the Unknown: error cant get hidden i'm using a work around 
like this:
  ob_start();
- $dbOp = new dbOperator($dbHost,$dbUsername,$dbPassword,$dbName);
+ $this-link=mysql_connect($dbHost,$dbUsername,$dbPassword,true);
  ob_end_clean()
  
  Just to hide the message. I also have to say that the same legacy code was 
running fine in ubuntu 12.04.
  Have fun!

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to php5 in Ubuntu.
https://bugs.launchpad.net/bugs/1320532

Title:
  display_errors Off not respected

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/php5/+bug/1320532/+subscriptions

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1320532] Re: display_errors Off not respected

2014-05-18 Thread Nick Fazakis
** Description changed:

- Guys while i have display_errors off in PHP 5.5.9-1ubuntu4 (package) it keeps 
printing the following error: 
- Unknown: mysql_connect(): The mysql extension is deprecated and will be 
removed in the future: use mysqli or PDO instead in 
seller/controller/dbOperator.php on line 9  
+ Guys while i have display_errors off in PHP 5.5.9-1ubuntu4 (package) it keeps 
printing the following error:
+ Unknown: mysql_connect(): The mysql extension is deprecated and will be 
removed in the future: use mysqli or PDO instead in 
seller/controller/dbOperator.php on line 9
  
- if i set the display_errors On the error messages is: 
+ if i set the display_errors On the error messages is:
  Deprecated: mysql_pconnect(): The mysql extension is deprecated and will be 
removed in the future: use mysqli or PDO instead in 
system/database/mysql_cached.php on line 10
  Unknown: mysql_connect(): The mysql extension is deprecated and will be 
removed in the future: use mysqli or PDO instead in 
seller/controller/dbOperator.php on line 9
  
  For some reason the Unknown: error cant get hidden i'm using a work around 
like this:
  ob_start();
- $dbOp = new dbOperator($dbHost,$dbUsername,$dbPassword,$dbName);
+ $this-link=mysql_connect($dbHost,$dbUsername,$dbPassword,true);
  ob_end_clean()
  
  Just to hide the message. I also have to say that the same legacy code was 
running fine in ubuntu 12.04.
  Have fun!

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1320532

Title:
  display_errors Off not respected

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/php5/+bug/1320532/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1320532] [NEW] display_errors Off not respected

2014-05-17 Thread Nick Fazakis
Public bug reported:

Guys while i have display_errors off in PHP 5.5.9-1ubuntu4 (package) it keeps 
printing the following error: 
Unknown: mysql_connect(): The mysql extension is deprecated and will be removed 
in the future: use mysqli or PDO instead in seller/controller/dbOperator.php on 
line 9  

if i set the display_errors On the error messages is: 
Deprecated: mysql_pconnect(): The mysql extension is deprecated and will be 
removed in the future: use mysqli or PDO instead in 
system/database/mysql_cached.php on line 10
Unknown: mysql_connect(): The mysql extension is deprecated and will be removed 
in the future: use mysqli or PDO instead in seller/controller/dbOperator.php on 
line 9

For some reason the Unknown: error cant get hidden i'm using a work around like 
this:
ob_start();
$dbOp = new dbOperator($dbHost,$dbUsername,$dbPassword,$dbName);
ob_end_clean()

Just to hide the message. I also have to say that the same legacy code was 
running fine in ubuntu 12.04.
Have fun!

** Affects: php5 (Ubuntu)
 Importance: Undecided
 Status: New

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to php5 in Ubuntu.
https://bugs.launchpad.net/bugs/1320532

Title:
  display_errors Off not respected

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/php5/+bug/1320532/+subscriptions

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1320532] [NEW] display_errors Off not respected

2014-05-17 Thread Nick Fazakis
Public bug reported:

Guys while i have display_errors off in PHP 5.5.9-1ubuntu4 (package) it keeps 
printing the following error: 
Unknown: mysql_connect(): The mysql extension is deprecated and will be removed 
in the future: use mysqli or PDO instead in seller/controller/dbOperator.php on 
line 9  

if i set the display_errors On the error messages is: 
Deprecated: mysql_pconnect(): The mysql extension is deprecated and will be 
removed in the future: use mysqli or PDO instead in 
system/database/mysql_cached.php on line 10
Unknown: mysql_connect(): The mysql extension is deprecated and will be removed 
in the future: use mysqli or PDO instead in seller/controller/dbOperator.php on 
line 9

For some reason the Unknown: error cant get hidden i'm using a work around like 
this:
ob_start();
$dbOp = new dbOperator($dbHost,$dbUsername,$dbPassword,$dbName);
ob_end_clean()

Just to hide the message. I also have to say that the same legacy code was 
running fine in ubuntu 12.04.
Have fun!

** Affects: php5 (Ubuntu)
 Importance: Undecided
 Status: New

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1320532

Title:
  display_errors Off not respected

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/php5/+bug/1320532/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs