Forum Replies Created

Viewing 2 replies - 1 through 2 (of 2 total)
  • Hi,
    let me show you the code I inserted:

    186:} elseif ($this->cache == "fs") {
    187: $file = "/home/mhd-01/www.foo.bar/htdocs/wp-content/plugins/flickr-justified-gallery" . "/" . $reqhash . ".cache";
    188: //$file = $this->cache_dir . "/" . $reqhash . ".cache";

    The path has to be full. The problem persists with the new plugin, I noticed while upgrading my site! If you still face some problems, put some “echo” in the code and try to see the value of the variables.

    I hope this will help!

    Regards!

    Hi,
    I had the same problem. According to the code, system is unable to create a cache file.
    The variable $file is not correctly set, so it tries to create a file in the “root” directory of the host filesytem.

    I modified the code in this way:

    $file = “/<the_full_path_to_the_dir>/wp-content/plugins/flickr-photostream” . “/” . $reqhash . “.cache”;

    And the problem was solved. It’s just a dirty workaround!

    Regards!

Viewing 2 replies - 1 through 2 (of 2 total)