CentOS fixes after fresh install

The mbstring PHP extension was not found and you seem to be using a multibyte charset.
yum install php-mbstring
Install PHP 5.2 on CentOS 5.2 Using Yum
Create /etc/yum.repos.d/centos-test.repo and enter following lines in it:
[c5-testing]
name=CentOS-5 Testing 
baseurl=http://dev.centos.org/centos/5/testing/$basearch/
enabled=1
gpgcheck=1
gpgkey=http://dev.centos.org/centos/RPM-GPG-KEY-CentOS-testing
Then run:
yum update php
Install phpmyadmin (http://www.aoddy.com/2007/12/12/how-to-install-phpmyadmin-2113-on-centos-5/)
cd /var/www/html
wget -c http://prdownloads.sourceforge.net/phpmyadmin/
phpMyAdmin-2.11.3-english.tar.gz?download
tar xvfz phpMyAdmin-2.11.3-english.tar.gz
mv phpMyAdmin-2.11.3-english phpmyadmin
cd phpmyadmin
cp config.sample.inc.php config.inc.php
nano config.inc.php
 
$cfg['Servers'][$i]['auth_type'] = ‘http‘; # default is cookies
No votes yet

Comments

Post new comment

The content of this field is kept private and will not be shown publicly.