Jump to content

Moving directory contents


Recommended Posts

After moving the directory contents out of ../5.6/ and into the root directory. I cleared out the cache folder. It seems to be working okay but when I go check the system log and since i cleared it out on Monday there have been 10 system errors The below is one of the many of the same errors 

 

 

[Exception] G:PleskVhostssweettreasuresmm.comsweettreasuresmm5.6includeslibsmartysyspluginssmarty_internal_write_file.php:44 - unable to write file G:PleskVhostssweettreasuresmm.comsweettreasuresmm5.6cacheskinwrt55d2a4603269b1.71372993 

 

It looks like it is still trying to write to the old directory. Is this hurting it?

Link to comment
Share on other sites

/cache/skin/wrt55d2a4603269b1.71372993

The filename does not look familiar. It could be an intermediary file that the template engine, Smarty, would create just before wanting to save the actual final compiled template (which the filename looks like, for example, 1e6fa0959c8482c7f51802a79c93d7c0c12c234d_0.file.ccpower.php.php), then deleting the interim file.

The Smarty is getting setup in the controller.index.inc.php file:

$GLOBALS['smarty']->compile_dir  = CC_SKIN_CACHE_DIR;
$GLOBALS['smarty']->config_dir   = CC_SKIN_CACHE_DIR;
$GLOBALS['smarty']->cache_dir    = CC_SKIN_CACHE_DIR;

So, if CC_SKIN_CACHE_DIR is pointing to the wrong place, then you should see all manner of mayhem.

Important Question: Do you have any sort of PHP-level caching enabled? The cache could be remembering things about where this installation was located previously.

However, there is probably some folder permission issues (yes, even on a Windows system!, but controlled differently).

Please read http://www.smarty.net/forums/viewtopic.php?t=13821

Let us know what your results are.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...