russia5 Posted March 3, 2007 Share Posted March 3, 2007 Hello, I am installing Smarty Templates. Here is the folder/file configuration. www.mydomain.com /templates (folder) /template_c (folder) /configs (folder) /cache (folder) /libs /index.php /libs/internals/ /libs/plugins/ /libs/Smarty_Compiler.class /libs/Config_File.class /libs/Smarty.class Upon logging into the home page, I get this error: Warning: main(../usr/libs/Smarty.class.php): failed to open stream: No such file or directory in /home/russia6/public_html/index.php on line 3 Warning: main(../usr/libs/Smarty.class.php): failed to open stream: No such file or directory in /home/russia6/public_html/index.php on line 3 Fatal error: main(): Failed opening required '../usr/libs/Smarty.class.php' (include_path='.:/usr/lib/php:/usr/local/lib/php') in /home/russia6/public_html/index.php on line 3 Here is the index.php <?php require '../libs/Smarty.class.php'; $smarty = new Smarty; $smarty->compile_check = true; $smarty->debugging = true; I have tryed to put in require '../usr/libs/Smarty.class.php'; But, I get the same thing. Anyone know what I must do? Link to comment https://forums.phpfreaks.com/topic/40991-smarty-install/ Share on other sites More sharing options...
MadTechie Posted March 3, 2007 Share Posted March 3, 2007 Warning: main(../usr/libs/Smarty.class.php): failed to open stream: No such file or directory in /home/russia6/public_html/index.php on line 3 normally means your pointing to the wrong location, try require 'libs/Smarty.class'; Link to comment https://forums.phpfreaks.com/topic/40991-smarty-install/#findComment-198494 Share on other sites More sharing options...
russia5 Posted March 3, 2007 Author Share Posted March 3, 2007 That did it. I tryed '/libs/Smarty.class.php' before. So, thankyou. Link to comment https://forums.phpfreaks.com/topic/40991-smarty-install/#findComment-198496 Share on other sites More sharing options...
MadTechie Posted March 3, 2007 Share Posted March 3, 2007 Cool Link to comment https://forums.phpfreaks.com/topic/40991-smarty-install/#findComment-198500 Share on other sites More sharing options...
MadTechie Posted March 3, 2007 Share Posted March 3, 2007 you could of tried the following require('/home/russia6/public_html/libs/Smarty/Smarty.class.php'); Link to comment https://forums.phpfreaks.com/topic/40991-smarty-install/#findComment-198503 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.