提示错误为:
JFolder::create: Could not create directory
Aborting language installation: Failed to create directory [/var/www/html/joomla/language/zh-CN]
Package Install: There was an error installing an extension: site_zh-CN.zip
官方给出的建议是:Depending on the security configuration of your Web server the recommended default permissions of 755 for directories and 644 for files should be reasonably secure.
即目录755 ,文件644,可该如何批量设置呢?
方案1,测试一下。
Change directory in to the top directory (" / ") of your Joomla! installation, then run these;
find . -type f -exec chmod 644 {} \;
find . -type d -exec chmod 755 {} \;
多谢老白,我去官网看了看,Admin Tools for joomla 2.5的新版也出来了~
2.2.a3(Alpha) Released on: Wednesday, 25 January 2012 18:59
官方说“Despite being labelled "alpha", this version is actually stable enough for everyday use. In fact, it's the only version of Admin Tools which you can use on a Joomla! 2.5 site.”