LPWV wrote:The only changes I made were too install the Cal Mod and the Gallery Mod...
I have no experience with them -or- whether they would have this effect.
LPWV wrote:I do not know how to detect/disable Frontend Init and render files...could you please explain
Then they cannot be an issue.
(BTW: they are in "config.inc.php")
Code: Select all
// other stuff
$phpwcms["allow_ext_init"] = 1; //allow including of custom external scripts at frontend initialization
$phpwcms["allow_ext_render"] = 1; //allow including of custom external scripts at frontend rendering
LPWV wrote:...or is there somewhere I can go and hard enter the <script> I am needing...
Thanks...
I'm not sure what you mean. "Hard entering" is the way you've tried.
The other way to try is more involved. You would make a .JS file with all your callable functions. place it in a sub-folder of phpWCMS root (for example "/include/inc_js/" ) and then use:
Code: Select all
<script language="JavaScript" type="text/javascript" src="include/inc_js/iFramefunct.js"></script>
-OR-
Use the form block in frontend setup: page layout
javascript: onload: include/inc_js/iFramefunct.js
-OR-
Use the form block in edit template: TemplateName
js onload: include/inc_js/iFramefunct.js
To call them into the page as it's being built and then the HTML would contain the javascript function calls. That's harder... to divide up the process.
I guess we have to keep in mind THOUGH that this is an error message from THE SERVER. I don't ~think~ "caching" would cause any problems. It may be CPanel settings...like certain account name(s) do/don't have Read/Write/Edit/Delete privilege -or- ".htaccess" file overriding CHMOD settings of folders. I always suggest turning on all errors & notices in "php.ini" if you can... to see if PHP is throwing up any errors. All else may lie with contacting TS @ host and asking them what the logs may show or what might be happening? Sorry to be of so little help.