Uncaught --> Smarty: unable to write file
解决方法 :
尝试执行 sudo chmod 777 /var/www/html/homepage
莫名其妙的就成功了
开启cache,类似问题出现
执行即可
find /var/www/html/homepage/cache -type d -exec chmod 755 {} \;
find /var/www/html/homepage/cache -type f -exec chmod 644 {} \;
网友评论