2

嗯。我知道这看起来很简单(如馅饼,哈哈),但我一直得到一个

Warning: /cache/ is not writeable. Make sure you've set the correct relative or absolute path, and that the location is server-writable.

这是我的情况。我有 simplepie 从我的域中的各个级别和文件夹中提取提要。因此,如果它在一个地方有效,那么我会在其他地方收到此警告。(例如它位于子文件夹中。)

所以,我试图通过编辑 simplepie.inc 文件上的第 501 行来指定实际的完整路径位置

var $cache_location = $_SERVER['DOCUMENT_ROOT'] . "/cache/";

但是,这是一个语法错误......

所以,A)为什么?我知道我错过了一些愚蠢的东西。

B)有没有更好/更有效的方法来做到这一点?

谢谢是提前!

4

2 回答 2

5

http://simplepie.org/wiki/reference/simplepie/set_cache_location怎么样?

于 2012-05-15T18:15:30.583 回答
2

在您的应用程序中创建一个文件夹假设文件夹名称是缓存添加这一行到您的 php 页面。$feed->set_cache_location($_SERVER['DOCUMENT_ROOT'] . '/你的应用名称/缓存');

于 2013-08-27T06:37:12.280 回答