MySQL query works in Workbench but gives error code 63 from PHP

Posted by smund3 on Server Fault See other posts from Server Fault or by smund3
Published on 2012-04-12T09:58:37Z Indexed on 2012/04/12 11:32 UTC
Read the original article Hit count: 234

Filed under:
|

I am making a poll system with PHP/MySQL and have made created a MySQL user for the system to use. However, whenever I try to run a query from PHP as that user, I get error code 63, which after some Googleing I found out means:

OS error code 63: Out of streams resources

If I make the PHP script use an almighty user instead, everything works fine, so it looks like it has something to do with permissions.

I am using a non-persistent connection.

I have Googled a lot but I haven't found anything even slightly relevant to this issue.

What could cause this error?

EDIT: Now it actually started giving me a different error:

OS error code 65: Package not installed

...all I did was revert the script to using the poll user instead of the almighty one.

© Server Fault or respective owner

Related posts about mysql

Related posts about php