Changes your login password in LINUX
September 29th, 2009
No comments
APC is a PHP accelerator extension that can be installed using PECL. PECL comes with the php-pear package, and must be installed
yum install php-pear
install APC dependencies so that PECL can build APC:
yum install php-devel httpd-devel
yum groupinstall 'Development Tools'
yum groupinstall 'Development ...
To install yum fastest mirror plugin (yum-plugin-fastestmirror) you can use next command:
yum install yum-plugin-fastestmirror
or
yum install yum-fastestmirror
command result:
[root@server1 ~]# yum install yum-fastestmirror
Loaded plugins: refresh-packagekit
updates/metalink | 4.5 kB 00:00
updates | 4.4 kB 00:00
updates/primary_db | 3.5 MB 00:04
Setting up Install Process
Resolving Dependencies
--> Running ...
Your site permalinks doesn't seem to work with pretty links ? ==> mod_rewrite doesn't work !
Solution: make sure mod_rewite.so loaded on your httpd.conf and AllowOverride must set to all !
LoadModule rewrite_module modules/mod_rewrite.so
Search in /etc/httpd/conf/httpd.conf
<Directory />
***********
AllowOverride None
***********
</Directory>
and change AllowOverride line :
<Directory ...