Vigile |
01-11-2004 11:48 AM |
Quote:
Originally Posted by Erwin
You have 3 uncached templates, which is causing that page to have 3 extra unnecessary queries. You need to add these templates to the template cache by editing that PHP file. To know which templates, you need to switch debug to on. My hack tells you how many templates are uncached, but not which ones.
|
Sorry, I know Im getting outside the confines of this topic thread, but Im was able to drop 2 of them but they are being caused by an eval statement to my phpinclude, so I can drop in a variable $shadow instead of long drawn out code. Is there an easy fix for this that wont generate a query? Mind you.. I have added $shadow to about 70 templates so far. So one less query (and an easy fix for it) would be a good thing.
all I've done is
PHP Code:
eval('$shadow = "' . fetch_template('shadow') . '";');
any help appreciated. If ya want to cut this and move to a proper forum, please do.
|