vote up 0 vote down star

Hello,

I have just started out with testing some php mvc framework

In it, it has this function that throws an error. The cachedirectory is set to /tmp/cache from the config file

additional: The php is hosted on an IIS server.

Can someone help me out to get this working somehow?

This is the function within the class

function setCacheDir($cacheDir = null)
    {
    	if( is_null( $cacheDir ) )
    	{
    		$config = config::getInstance();
    		$cacheDir = $config->config_values['template']['cache_dir'];
    	}

    	if (is_dir($cacheDir) && is_writable($cacheDir))
    	{
    		$config = config::getInstance();
    		$this->cache_dir = $cacheDir;
    	}
    	else
    	{

    		throw new Exception("De cache directory '$cacheDir' either does not exist, or is unwriteble");
    	}
    }

thanks, Richard

flag

68% accept rate
2  
It might be helpful to know what exactly is not working... – Franz Nov 3 at 20:40

3 Answers

vote up 1 vote down check

Why don't you set the cache directory to something a little more Windows-y, like c:\temp (and make sure that folder exists).

link|flag
thanks both, I think that worked I see a whole lot off other errors, but not this one now – Richard Nov 3 at 21:28
vote up 0 vote down

Some PHP frameworks work best (or better) in a LAMP stack, the first letter (L) being Linux. If the documentation of your framework advises a LAMP stack, I'd go with that.

link|flag
vote up 1 vote down

I'm guessing "/tmp/cache" doesn't exist and isn't writable, so in the configuration file, set cache_dir to a directory that is.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.