View Single Post
  #24  
Old 11-23-2003, 11:28 PM
  carlisleglass's Avatar 
carlisleglass carlisleglass is offline
 

eXpert
  
Join Date: Aug 2003
Location: Carlisle, UK
Posts: 316
 

Default

Just installed it onto v3.5 Gold ... had to change two of files thou for it to work, and i didn't have to copy the home.tpl file like i had to when i installed it on v3.4.9.

in cmsmaker.php and cmsmanger.php

had to change ..

Code:
require "../smarty.php"; require "../config.php"; require "./auth.php"; require "../include/security.php";
to ....
Code:
require "./auth.php"; require $xcart_dir."/include/security.php";

and change ..

Code:
$smarty->assign("pagecontent",$pagecontent); $smarty->assign("main","cmsmaker"); $smarty->assign("location",$location); $smarty->display("admin/home.tpl");
to...
Code:
$smarty->assign("pagecontent",$pagecontent); $smarty->assign("main","cmsmaker"); $smarty->assign("location",$location); @include $xcart_dir."/modules/gold_display.php"; $smarty->display("admin/home.tpl");

still got the problem with editing thou, where nothing comes up in the htmlbox when i press the edit button.
__________________
Darren Kierman
Carlisle Glass (http://www.carlisleglass.co.uk/)
... running X-Cart Gold 4.4.5 [unix]
Reply With Quote