When i install the new version on my new domain. I am facing the problem here is error written below
Warning: Smarty error: unable to read resource: “/left.tpl” in //****//b1567/ipg./lib/templater/Smarty.class.php on line 1095
Warning: Smarty error: unable to read resource: “/central.tpl” in ////b1567/ipg./lib/templater/Smarty.class.php on line 1095
Warning: Smarty error: unable to read resource: “/bottom.tpl” in //*****/*//b1567/ipg./lib/templater/Smarty.class.php on line 1095
PLEASE HELP ME.
I am getting the exact same errors, almost none of my skins will work. PLEASE help
It’s due to the database having “blocks” which have been moved manually, you need to delete all blocks from the file system and database and recreate. Enjoy.
How do I go about doing that?
Never mind. To anyone else out there having this problem, this method seemed to fix it:
Open up skins/[active skin]/customer/
edit “main.tpl”
find and replace the following:
{include file=“$location_dir
/top.tpl” assign=“top”}
{include file=“$location_dir
/left.tpl” assign=“left”}
{include file=“$location_dir
/right.tpl” assign=“right”}
{include file=“$location_dir
/bottom.tpl” assign=“bottom”}
{include file=“$location_dir
/central.tpl”}
with respectively:
{block group=“top” assign=“top”}
{block group=“left” assign=“left”}
{block group=“right” assign=“right”}
{block group=“bottom” assign=“bottom”}
{block group=“central”}
End of problem.