我有一个 WordPress 插件,我想在不修改的情况下在 localhost 和部署中工作,但我似乎无法使用一个语句设置目录的位置。
我想这样做:
$feed->set_cache_location($_SERVER['DOCUMENT_ROOT'] . '/wp-content/cache');
虽然这适用于网络主机。在本地主机上它会产生这个错误:
C:/xampp/htdocs/wp-content/cache/a547b8792c3144c98549be23ef1465e7.spc is not writeable
在 localhost 上,我需要将其设置为此才能正常工作:
$feed->set_cache_location($_SERVER['DOCUMENT_ROOT'] . '/mysite/wp-content/cache');
当然,必须有一些东西可以在 localhost 和 web 主机上运行!
谢谢。