2011-03-08 34 views
0
Warning: copy(/home/beradioc/public_html/phpfreechat-1.3/src/../data/public/themes/default/sound.swf) [function.copy]: failed to open stream: Permission denied in /home/beradioc/public_html/phpfreechat-1.3/src/pfctools.php on line 179 

Warning: chmod() [function.chmod]: Operation not permitted in /home/beradioc/public_html/phpfreechat-1.3/src/pfctools.php on line 180 

Warning: copy(/home/beradioc/public_html/phpfreechat-1.3/src/../data/public/themes/default/smileys/emoticon_surprised.png) [function.copy]: failed to open stream: Permission denied in /home/beradioc/public_html/phpfreechat-1.3/src/pfctools.php on line 179 

Warning: chmod() [function.chmod]: Operation not permitted in /home/beradioc/public_html/phpfreechat-1.3/src/pfctools.php on line 180 

Warning: copy(/home/beradioc/public_html/phpfreechat-1.3/src/../data/public/themes/default/smileys/emoticon_waii.png) [function.copy]: failed to open stream: Permission denied in /home/beradioc/public_html/phpfreechat-1.3/src/pfctools.php on line 179 

Warning: chmod() [function.chmod]: Operation not permitted in /home/beradioc/public_html/phpfreechat-1.3/src/pfctools.php on line 180 

Warning: copy(/home/beradioc/public_html/phpfreechat-1.3/src/../data/public/themes/default/smileys/weather_sun.png) [function.copy]: failed to open stream: Permission denied in /home/beradioc/public_html/phpfreechat-1.3/src/pfctools.php on line 179 

Warning: chmod() [function.chmod]: Operation not permitted in /home/beradioc/public_html/phpfreechat-1.3/src/pfctools.php on line 180 

Warning: copy(/home/beradioc/public_html/phpfreechat-1.3/src/../data/public/themes/default/smileys/weather_cloudy.png) [function.copy]: failed to open stream: Permission denied in /home/beradioc/public_html/phpfreechat-1.3/src/pfctools.php on line 179 

Warning: chmod() [function.chmod]: Operation not permitted in /home/beradioc/public_html/phpfreechat-1.3/src/pfctools.php on line 180 
+0

尝试,首批上市的:goo.gl/Nk4Cg – used2could 2011-03-08 17:58:59

回答

1

你的脚本没有权限。

如果您在您自己的服务器上运行,请使用chmod。如果您在共享主机上运行,​​无论如何都请尝试使用chaning权限,但不会获得您的成功。

0

chmod是更改文件和/或目录的权限的命令,看起来您的脚本没有足够的权限来执行此操作,或者复制文件。我会认真地建议你研究文件权限,也许阅读phpfreechat的README,它可能会告诉你这些权限是什么,并从那里去。如果您没有ssh访问权限或直接访问您的Web服务器,您可能需要从托管公司获得一些帮助,然后才能确定哪些文件广告目录需要哪些权限。

快速浏览一下phpfreechat的页面状态:

给Web服务器的写入权限“phpfreechat-x.x中/数据/公众”和“phpfreechat-x.x中/数据/私人”目录。
如果您正在使用FTP:

CHMOD 777 phpfreechat-x.x/data/private 
CHMOD 777 phpfreechat-x.x/data/public 



If you are using SSH: 

chmod 777 phpfreechat-x.x/data/* 
相关问题