Make sure line 156 of magpierss/rss_fetch.inc looks like:
if ( $rss and isset($rss->etag) and isset($rss->last_modified) ) {
It appears that way in the copy I just uploaded, so maybe it didn't overwrite the file you already had downloaded?
Make sure line 156 of magpierss/rss_fetch.inc looks like:
if ( $rss and isset($rss->etag) and isset($rss->last_modified) ) {
It appears that way in the copy I just uploaded, so maybe it didn't overwrite the file you already had downloaded?
I tried to implement this on my site but it doesn't play well with SEO urls; ie:
http://www.fngeeks.net/vanilla/extension.php?PostBackAction=GoogleMapDirectory
instead of:
http://www.fngeeks.net/vanilla/extension/?PostBackAction=GoogleMapDi…
I tried to implement this on my site but it doesn't play well with SEO urls; ie:
http://www.fngeeks.net/vanilla/extension.php?PostBackAction=GoogleMapDirectory
instead of:
http://www.fngeeks.net/vanilla/extension/?PostBackAction=GoogleMapDi…
Friendly URLs is used in conjunction with the GetUrl() function built into Vanilla, and then installing the Friendly URL extension. By using that function, an extension can be built where all the URL's generated will be normal, or SEO compliant.
W…
And another one...
Around line 153, Find:
Configuration['WEB_ROOT']."extension.php?PostBackAction=GoogleMap&'+(this.options[this.selectedIndex].value > 0 ? 'RoleID='+this.options[this.selectedIndex].value : '');\">
Change to:
Configur…
They just keep popping up! Found 2 more links that needed to be updated...
Around line 224, Find:
Cancel and go back
Change to:
Cancel and go back
Around line 287, Find:
var marker = createMarker(point, \''.addslashes($row[2]).'';
Change to:
var…
I missed one of the links accidentally. This is to update the link 'View all members' under a user's small google map on their account page.
In default.php
Find:
$GoogleMap = 'Member Location View all members';
Change to:
$GoogleMap = '…
Alright, here's how it would go with using GetUrl() properly, so that'll create the Url appropriate to the forum configuration...
Find:
header("Location:account.php?PostBackAction=ManageLocation&u=$u");
Change to:
header("Location:".GetUrl($Con…
Any work on getting this working properly with FriendlyURL? I just had to manually edit the code to get it to play nice, but would like a solution that works for both situations out of the box.
Edit, I think I fixed it.
The two changes I made…
Friendly URLs is used in conjunction with the GetUrl() function built into Vanilla, and then installing the Friendly URL extension. By using that function, an extension can be built where all the URL's generated will be normal, or SEO compliant.
W…
And another one...
Around line 153, Find:
Configuration['WEB_ROOT']."extension.php?PostBackAction=GoogleMap&'+(this.options[this.selectedIndex].value > 0 ? 'RoleID='+this.options[this.selectedIndex].value : '');\">
Change to:
Configur…
They just keep popping up! Found 2 more links that needed to be updated...
Around line 224, Find:
Cancel and go back
Change to:
Cancel and go back
Around line 287, Find:
var marker = createMarker(point, \''.addslashes($row[2]).'';
Change to:
var…
I missed one of the links accidentally. This is to update the link 'View all members' under a user's small google map on their account page.
In default.php
Find:
$GoogleMap = 'Member Location View all members';
Change to:
$GoogleMap = '…
Alright, here's how it would go with using GetUrl() properly, so that'll create the Url appropriate to the forum configuration...
Find:
header("Location:account.php?PostBackAction=ManageLocation&u=$u");
Change to:
header("Location:".GetUrl($Con…
Any work on getting this working properly with FriendlyURL? I just had to manually edit the code to get it to play nice, but would like a solution that works for both situations out of the box.
Edit, I think I fixed it.
The two changes I made…