[ABD] XML Sitemap

Any abandoned Extensions will be moved to this forum.

WARNING: Extensions in this forum are not currently being supported or maintained by the original Extension author. Proceed at your own risk.
Forum rules
IMPORTANT: Extension Development Forum rules

WARNING: Extensions in this forum are not currently being supported nor updated by the original Extension author. Proceed at your own risk.
amiroslo
Registered User
Posts: 25
Joined: Sun Feb 12, 2017 8:08 pm

Re: [DEV] XML Sitemap

Post by amiroslo »

works on 3.2?
User avatar
tas2580
Registered User
Posts: 295
Joined: Wed May 30, 2007 1:56 am
Location: Stuttgart, Germany
Contact:

Re: [DEV] XML Sitemap

Post by tas2580 »

amiroslo wrote: Thu Feb 16, 2017 1:52 pm works on 3.2?
Yes
User avatar
noth
Registered User
Posts: 2528
Joined: Fri Jan 07, 2005 7:10 pm
Location: North Surrey
Contact:

Re: [DEV] XML Sitemap

Post by noth »

the demo shows a list of links

who is the extension aimed at? Admins? Users? Guests?
User avatar
bonelifer
Community Team Member
Community Team Member
Posts: 3542
Joined: Wed Oct 27, 2004 11:35 pm
Name: William
Contact:

Re: [DEV] XML Sitemap

Post by bonelifer »

noth wrote: Thu Feb 23, 2017 9:29 pm the demo shows a list of links

who is the extension aimed at? Admins? Users? Guests?
While a regular user could access the SITEMAP, this extension is really aimed at Admins. In other words, it provides you the ability to tell Google/Yahoo, which FORUMS, etc to scrape and how often you allow them to do so.
William Jacoby - Community Team
Knowledge Base | phpBB Board Rules | Search Customisation Database
Please don't contact me via PM or email for phpBB support .
franklinlisbooa
Registered User
Posts: 1
Joined: Wed Mar 01, 2017 6:02 pm

Re: [DEV] XML Sitemap

Post by franklinlisbooa »

Image

Help-me
v12mike
Registered User
Posts: 584
Joined: Thu Jul 09, 2015 5:03 pm

Re: [DEV] XML Sitemap

Post by v12mike »

There is a bug in v0.1.4:

At line 126 of sitemap.php, the lines:

Code: Select all

			// Topics with more that 1 Page
			if ( $topic_row['topic_posts_approved'] > $this->config['posts_per_page'] )
			{
				$start = 0;
				$pages = $topic_row['topic_posts_approved'] / $this->config['posts_per_page'];
				for ($i = 1; $i < $pages; $i++)
				{
					$start = $start + $this->config['posts_per_page'];
					$url_data[] = array(
						'url'		=> $this->board_url . '/viewtopic.' . $this->php_ext . '?f=' . $id . '&amp;t=' . $topic_row['topic_id'] . '&amp;start=' . $start,
						'time'	=> $topic_row['topic_last_post_time'],
						'row'		=> $topic_row,
						'start'	=> $start
					);
				}
			}
			
should be moved up above the closing brace on line 125.

Without this change, a topic with multiple pages that has been moved will generate phantom links for all except the first page.
v12mike
Registered User
Posts: 584
Joined: Thu Jul 09, 2015 5:03 pm

Re: [DEV] XML Sitemap

Post by v12mike »

I noticed another minor issue with this extension.

If all of the posts in a topic have been soft-deleted, then that topic should not appear in the Sitemap. Currently the topic does appear in the Sitemap, and the Google bot complains that the indexed page(s) are not found.
Paul
Infrastructure Team Leader
Infrastructure Team Leader
Posts: 28619
Joined: Sat Dec 04, 2004 3:44 pm
Location: The netherlands.
Name: Paul Sohier
Contact:

Re: [ABD] XML Sitemap

Post by Paul »

This topic has been marked as [ABD] - Abandoned as the extension author has not been active recently. If the extension author wishes to continue development, please PM anyone on the Extension Customisations Team to request this topic be unlocked.

Notice!
We do not recommend that a user of the phpBB software install this extension, or any other extension that is marked as “abandoned” or “in development”, on a live forum. Doing so may cause your forum to not perform in the manner it should.


Thank you,
The phpBB Extension Customisations Team
Locked

Return to “Abandoned Extensions”