Blog with 3rd party Comments

3 posts by 2 authors in: Forums > CMS Builder
Last Post: January 12, 2009   (RSS)

Re: [blaine] Blog with 3rd party Comments

By ross - January 9, 2009

Hi there.

Thanks for posting!

This is probably going to start going outside of our support area as I think it might have to do with the 3rd party script. I'll see what I can do though :).

On line 24 you have this:

$_GET['comm_page']

That's trying to grab something out of the URL of the page your on. It isn't something that you would define in the CMS Builder code. What you'll want to do is make sure the URL to the page your on ends with something like:

page.php?comm_page=something

Of course, you could also just try putting a "@" infront of that code like this:

@$_GET['comm_page']

That doesn't really make the problem go away, but it will stop the warning message from showing up :).

Keep me up to date with how you are making out.
-----------------------------------------------------------
Cheers,
Ross Fairbairn - Consulting
consulting@interactivetools.com

Hire me! Save time by getting our experts to help with your project.
Template changes, advanced features, full integration, whatever you
need. Whether you need one hour or fifty, get it done fast with
Priority Consulting: http://www.interactivetools.com/consulting/

Re: [ross] Blog with 3rd party Comments

By blaine - January 12, 2009

Thanks, [;)]
That worked great!