hey guys, I have a Linux VPS (centos), and I'm trying to install mod_auth_mysql for apache2
I've run
compile--
apxs -c -DHOST=localhost -lmysqlclient -I/usr/include/mysql/ -L /usr/lib/mysql mod_auth_mysql.c
install
apxs -i -I /usr/include/mysql/ -c -lmysqlclient -L /usr/lib/mysql -lm -lz /home/auth_mysql/mod_auth_mysql.c
then added the line
LoadModule mysql_auth_module modules/mod_auth_mysql.so
to my httpd.conf file.
httpd -l does not show the module loaded,
httpd -t shows no errors.
any thoughts on what I'm doing wrong ?
Thanks