Knowledge Base - com_aimysitemap-v26.x to 31.x - Free - HTTPS limited from 50 to 99999

Open: Sitemap.php
Located here: /home/username/public_html/administrator/components/com_aimysitemap/

Search in file for:  $row_count > 50

Change 50 to 99999:
if ( $row_count > 50 ) { $rows = array_slice( $rows, 0, 50 ); $msg->error( JText::sprintf( 'AIMY_SM_MSG_XML_SITEMAP_INCOMPLETE_WRITE_X', 50, $row_count, 50, 'https://www.aimy-extensions.com/joomla/sitemap.html' ) );


Should look like this:
if ( $row_count > 99999 ) { $rows = array_slice( $rows, 0, 99999 ); $msg->error( JText::sprintf( 'AIMY_SM_MSG_XML_SITEMAP_INCOMPLETE_WRITE_X', 99999, $row_count, 99999, 'https://www.aimy-extensions.com/joomla/sitemap.html' ) );
 

Before: Supports HTTPS-only websites (limited to 50 entries in the XML sitemap)

After: Supports HTTPS-only websites (limited to 99999 entries in the XML sitemap)

Details

Created : 2019-09-10 19:24:01, Last Modified : 2022-09-24 07:34:50