为何经由apache建立的文件夹都无法正常读写?

来源:百度知道 编辑:UC知道 时间:2024/06/22 14:41:23
有时候手动修改文件属性都无效,请问是怎末回事情?

LINUX CENT OS
APACHE 2.2.3
MYSQL:5.0.22
用PLESK配置虚拟服务器,但

经由apache建立的文件夹都无法正常读写,请问怎末回事?

二、安装apache
进入安装包目录:cd /usr/local/software
1、# chmod 755 httpd-2.0.50.tar.gz
2、# tar xfz httpd-2.0.50.tar.gz
3、# cd httpd-2.0.50
开始配置APACHE
4、#./configure --prefix=/usr/local/apache2 --enable-so --enable-rewrite --enable-mods-shared=most
# ./configure --prefix=/usr/local/apache2 --enable-so --enable-module=most --enable-shared=max --enable-rewrite
# ./configure --prefix=/usr/local/apache2 --enable-so --enable-rewrite --enable-access
#./configure --prefix=/usr/local/apache2 --enable-so --enable-mods-shared=all –-enable-rewrite=shared

5、# make
6、# make install
7、察看编译进apache的模块:
# /usr/local/apache2/bin/httpd -l
compiled-in modules:
http_core.c
mod_so.c
看到以上的信息表明apache支持dso方式了。这样就可以用dso的方式把php和resin的模块加进来。

三、安装GD
进入安装包目录:cd /usr/local/software
1、tar -zxvf gd-2.0.33.tar.gz
2、cd gd-2.0.33
3、./configure --prefix=/usr/local/gd2
4、make
5、