|
Q: I have:
Warning: Smarty error: problem creating directory '/home' in /home/hosting/peter/public_html/chat/smarty/Smarty.class.php on line 1084
Warning: Smarty error: problem writing temporary file '/home/hosting/peter/public_html/chat/layouts/dp/cache//%%77/774/wrt43 378aac90294' in /home/hosting/peter/public_html/chat/smarty/Smarty.class.php on line 1084
Warning: Smarty error: problem creating directory '/home' in /home/hosting/peter/public_html/chat/smarty/Smarty.class.php on line 1084
Warning: Smarty error: problem writing temporary file '/home/hosting/peter/public_html/chat/layouts/dp/templates_c//%%77/774 /wrt43378aab3d5bd' in /home/hosting/peter/public_html/chat/smarty/Smarty.class.php on line 1084
Warning: fetch(): Unable to access /home/hosting/peter/public_html/chat/layouts/dp/templates_c//%%77/774/ 774BE9C9%%index.html.php in /home/hosting/peter/public_html/chat/smarty/Smarty.class.php on line 1255
Warning: fetch(/home/hosting/peter/public_html/chat/layouts/dp/templates_c//%%7 7/774/774BE9C9%%index.html.php): failed to open stream: No such file or directory in /home/hosting/peter/public_html/chat/smarty/Smarty.class.php on line 1255
Warning: fetch(): Failed opening '/home/hosting/peter/public_html/chat/layouts/dp/templates_c//%%77/774 /774BE9C9%%index.html.php' for inclusion (include_path='.:/usr/share/php:/usr/share/pear') in /home/hosting/peter/public_html/chat/smarty/Smarty.class.php on line 1255
What's the Problem?
A: This is the problem with your hosting provider. The directories which are created by php modules, have 644 permissions by default. You cannot fix it. You need to open inc/smarty.inc.php file and find:
$this->use_sub_dirs = true;
and replace it with:
$this->use_sub_dirs = false;
Back to FAQ index
|