Zoidy Posted May 8, 2007 Share Posted May 8, 2007 I just installed STS 4.5 on a new, clean OSC install. The problem I have is getting the templates to display after they are enabled. The STS module shows up fine, but no changes take place when I set use templates to "true". The pages looks exactly the same as it did without the template enabled (the index module is activated and set) All my settings are default. I also made this code change to both compatibility files, as seen here http://www.oscommerce.com/forums/index.php?sho...;hl=refresh+bug. function do_magic_quotes_gpc(&$ar) { if (!is_array($ar)) return false; while (list($key, $value) = each($ar)) { if (is_array($ar[$key])) { do_magic_quotes_gpc($ar[$key]); } else { $ar[$key] = addslashes($value); } } reset($ar); } I'm not sure what to do from here. I have read all the applicable forum posts I can find, but nothing seems to help. Thanks L Quote Link to comment Share on other sites More sharing options...
bkellum Posted May 8, 2007 Share Posted May 8, 2007 (edited) I just installed STS 4.5 on a new, clean OSC install. The problem I have is getting the templates to display after they are enabled. The STS module shows up fine, but no changes take place when I set use templates to "true". The pages looks exactly the same as it did without the template enabled (the index module is activated and set) All my settings are default. I also made this code change to both compatibility files, as seen here http://www.oscommerce.com/forums/index.php?sho...;hl=refresh+bug. function do_magic_quotes_gpc(&$ar) { if (!is_array($ar)) return false; while (list($key, $value) = each($ar)) { if (is_array($ar[$key])) { do_magic_quotes_gpc($ar[$key]); } else { $ar[$key] = addslashes($value); } } reset($ar); } I'm not sure what to do from here. I have read all the applicable forum posts I can find, but nothing seems to help. Thanks L Landon, I see that you are a new member so I would like to suggest looking for answers and posting questions relating to STS in the STS thread (the link is written in the STS User Manual as well as in my signature below). You will need to upgrade to 4.5.2 which includes two bug fixes. Edited May 8, 2007 by bkellum Quote Bill Kellum Sounds Good Productions STS Tutorials & more: STSv4.6, STS Add-ons (STS Power Pack), STS V4 Forum STS Forum FREE TEMPLATE Link to comment Share on other sites More sharing options...
Zoidy Posted May 22, 2007 Author Share Posted May 22, 2007 Landon, I see that you are a new member so I would like to suggest looking for answers and posting questions relating to STS in the STS thread (the link is written in the STS User Manual as well as in my signature below). You will need to upgrade to 4.5.2 which includes two bug fixes. I actually spent a day reading through the STS thread, and all the other posts in the STS forum even remotely related to my trouble. I was unable to find anything that applied to my case. I actually am running 4.5.2. Any ideas as to where else I should look or what else might be causing this problem? Thanks Landon Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.