Ok i've been using ubuntu for a while but on my web/router/gateway i've always used slackware. Recently my hdd crashed and i had to install the latest version of slackware.
Everything seemed to be ok. Then i tried to install dolphin, after tweaking the php.ini i found i needed mbstring and XsltProcessor, both of which show up in php.ini look
Code:
extension=mbstring.so
well maybe not Xslt but at least mbstring is there but according to apache its not.
then after a restart all the sudden mysql isnt there either im getting all kinds of errors like
Code:
Fatal error: Call to undefined function mysql_connect() in /blah on line 54
and
Code:
Cannot load mysql extension. Please check your PHP configuration. - Documentation
That second error is from phpmyadmin which i was just running like a hour ago. So i look in my php.ini which is in /etc/httpd/ and it says
Code:
extension=mysql.so
extension=mysqli.so
and mysql is running i can log into it via command line and
Code:
root@zonemikel:~/packages# ps aux | grep mysql
root 5549 0.0 0.2 2760 1368 pts/0 S 06:24 0:00 /bin/sh /usr/bin/mysqld_safe --datadir=/var/lib/mysql --pid-file=/var/run/mysql/mysql.pid --skip-networking
mysql 5574 0.1 2.7 101260 14152 pts/0 Sl 06:24 0:01 /usr/libexec/mysqld --basedir=/usr --datadir=/var/lib/mysql --user=mysql --pid-file=/var/run/mysql/mysql.pid --skip-external-locking --skip-networking
root 6218 0.0 0.1 2084 636 pts/0 S+ 06:41 0:00 grep mysql
but in phpinfo() there is no mention of mysql, in the phpinfo() it does say that mbstring=shared was configured.
I keep reading all these posts where they are like "oh just apt-get or yum" ... yeah right i cant do that . . .
I have reinstalled php, mysql, and apache restarted them tons of times I just cant figure this out. And i dont have tons of time to spend on it like i used to.
Does anyone have a solution or suggestion before i go installing ubuntu?