Home  >  Article  >  Backend Development  >  我刚刚搭建了个centos6.0平台有问题!

我刚刚搭建了个centos6.0平台有问题!

WBOY
WBOYOriginal
2016-06-23 13:56:04798browse

我刚刚搭建了个centos6.0平台

我是yum安装的
yum -y install httpd
yum -y install php*
yum -y install mysql*


我把网站传上去以后,想在centos平台修改点小bug

我是用vim 修改php的,修改后保存,运行程序确没有改变。

到底怎么回事?php不是不需要编译的吗?

什么原因啊

修改前
if($info != false)
{
         print_r('true');
         
}else
{
         print_r('false');
}

修改后
if($info != false)
{
         //print_r('true');
         print_r('');
}else
{
         print_r('false');
}

一直返回是true 修改其它html 也不行。

现在只能把文件放回windows wamp5修改运行后在放centos,这样不是折腾人吗?




回复讨论(解决方案)

运行phpinfo(),查看php是安装成功

不成功,怎么能运行网站啊

解决。原来是权限问题,把它修改为 chmod 777 XXX.php 就可以了。郁闷  和windows果然不同!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn