
Paul Monday - 2005-04-18 16:16:12
Hi, I'm using Mambo 4.5.2 and I'm trying to get the News Feeds section working. I am behind a firewall so I need to use a proxy. Some of the information running around said to use $this->setProxy, but there are no calls like this, there is only setProxyConnection. Unfortunately, there are setProxyConnection calls on many of the PHP classes.
The newsfeed code appears as follows:
$rssDoc =& new xml_domit_rss_document();
$rssDoc->useCacheLite( true, $LitePath, $cacheDir, newsfeed->cache_time );
$rssDoc->setProxyConnection('129.148.9.42', '/', 8080); // I ADDED
$rssDoc->loadRSS( $newsfeed->link );
$totalChannels = $rssDoc->getChannelCount();
I added the setProxyConnection call...no luck. I also sprinkled setProxyConnection calls throughout the domit classes themselves...no luck.
Have you seen this before?????? I even tried putting in a userid/password (even though I don't need one)...no luck.
Any clues on this?