Quote Originally Posted by infinitearms View Post
I had the same problem (possibly?) with images not showing up in the popup. I checked the html source in the browser and it would not load past one point. Commenting out (<!-- -->) the Simple Google Analytics code from the html_header.php allowed the image to load.

Checking the debug log in the cache directory i found the following errors:


[14-Dec-2010 16:32:34] PHP Warning: require(includes/templates/template_default/popup_image/google_analytics.php) [<a href='function.require'>function.require</a>]: failed to open stream: No such file or directory in /home/infinite/public_html/shopping/includes/templates/template_default/common/html_header.php on line 129
[14-Dec-2010 16:32:34] PHP Fatal error: require() [<a href='function.require'>function.require</a>]: Failed opening required 'includes/templates/template_default/popup_image/google_analytics.php' (include_path='.:/usr/lib/php:/usr/local/lib/php') in /home/infinite/public_html/shopping/includes/templates/template_default/common/html_header.php on line 129


As a temporary fix i created a sym link between includes/templates/template_default/popup_image/google_analytics.php and includes/templates/template_default/google_analytics/google_analytics.php and everything is working again.

I know this is not a proper fix, let me know if you come up with anything better.
Ok, I see what is going on (thanks for the error log there.)

The popup page is trying to load the google analytics file from the popup directory instead of the proper one. Since the file is not present where it is looking, it errors off leaving you with a blank page.

I'll get that corrected here. Thanks again for that info.