- Edited
osticket'm installing a centos server with mysql 5.1.6, but to run the setup, it tells me missing mysql, which I can do?
osticket'm installing a centos server with mysql 5.1.6, but to run the setup, it tells me missing mysql, which I can do?
are you sure that mysql is running?
are you sure that mysql is running?
yes, you already install the database osticket
create a file with the following in.
<?php phpinfo(); ?>
put it some where that you will be able to find it on your webserver and browse to it in your web browser.
Please make sure that there is a mysql section. If there is not then you have not configured PHP to use mysql. You may need to install the php-mysql package.
and put that test and if brings information of php, but when running the setup it tells me that it has
Yes, that will print out the current running config for PHP according to your webserver. Which needs to have a mysql section in it. If you do not have that section then that's your problem. I recommend that you read the following tutorial on how to setup Apache, PHP, MySQL on CentOS:
http://www.howtoforge.com/installing-apache2-with-php5-and-mysql-support-on-centos-6.2-lamp(http://www.howtoforge.com/installing-apache2-with-php5-and-mysql-support-on-centos-6.2-lamp)
You want to pay special attention to step 6 which is entitled "6 Getting MySQL Support In PHP5"
Sounds to me like you need to install the PHP mysql module
sudo yum install php-mysql
on the commandline
I agree. Which is why I sent him to the tutorial about how to do it. :)