tags:

views:

25

answers:

1

The php on the server is compiled without mysql module so I cannot run mysql_connect in php. I do not have root access. Is there a way for me to solve this problem, perhaps parsing in some files during runtime? Thanks in advance.

A: 

For security reasons, php does not allow non-root users to include modules. As already stated, your hosting provider should include it. Mysql is most likely not installed either. If they won't give you mysql I'm sure you can find a better host for less than $5 a month.

David W. Allor