升级Magento以后,新建产品,发现上传图片的文件夹不见了?!

1,830 人次阅读
没有评论

共计 526 个字符,预计需要花费 2 分钟才能阅读完成。

这个问题对于Magento来说非常普遍,解决方法也是很简单。

1.打开:app\code\core\Mage\Cms\Model\Wysiwyg

2.打开config.php文件,

修改

[php]

class Mage_Cms_Model_Wysiwyg_Config extends Varien_Object
{
/**
* Wysiwyg behaviour
*/
const WYSIWYG_ENABLED = ‘enabled’;
const WYSIWYG_HIDDEN = ‘hidden’;
const WYSIWYG_DISABLED = ‘disabled’;
const IMAGE_DIRECTORY = ‘other’;

[/php]

[php]class Mage_Cms_Model_Wysiwyg_Config extends Varien_Object
{
/**
* Wysiwyg behaviour
*/
const WYSIWYG_ENABLED = ‘enabled’;
const WYSIWYG_HIDDEN = ‘hidden’;
const WYSIWYG_DISABLED = ‘disabled’;
const IMAGE_DIRECTORY = ‘.’;

[/php]

很简单是吧。

当然也可以更改为其他名字。

正文完
 0