Install & Get Smarty working on SuSE 10 - Printable Version +- Linux-Noob Forums (https://www.linux-noob.com/forums) +-- Forum: Distro Noob (https://www.linux-noob.com/forums/forum-10.html) +--- Forum: SUSE (https://www.linux-noob.com/forums/forum-98.html) +--- Thread: Install & Get Smarty working on SuSE 10 (/thread-2021.html) |
Install & Get Smarty working on SuSE 10 - ahuffman - 2006-04-23 Hi, I'm in desperate need of help here. My senior project is due in 2 weeks and I can't get this Smarty template program working which I need for it. I'm building a online shopping cart system w/ mysql, apache 2, smarty & php. I've been messing with this stuff for days and I have absolutely had it. I tried the way this book sets it up, i've tried the instructions for the quick install of smarty. Im not sure if its my php setup or what. I keep receiving this error: Code: Warning: fetch(templates_c/%%45^45E^45E480CD%%index.tpl.php): failed to open stream: No such file or directory in /usr/share/php/smarty/Smarty.class.php on line 1258 when i attempt to run the page. My templates_c folder is writable. Im just not sure if i have it in the right spot or what the problem is. I'm using SuSE 10. I don't know if this makes a difference or not. Please help me or i'm doomed haha! -Thanks in advance. Install & Get Smarty working on SuSE 10 - znx - 2006-04-25 A strange looking error.. which is easily solvable :) All this is actually the permissions on the files and directories. Do: Code: # chmod 755 directory That will solve it :) PS: it isn't looking for write permission .. inclusion - read permissions ;) |