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 > 9999999 ) { $rows = array_slice( $rows, 0, 9999999 ); $msg->error( JText::sprintf( 'AIMY_SM_MSG_XML_SITEMAP_INCOMPLETE_WRITE_X', 9999999, $row_count, 99999, 'https://www.aimy-extensions.com/joomla/sitemap.html' ) );
 

------------------------------

Open: view.html.php
Located here: /administrator/components/com_aimysitemap/views/urls/

Search in file for:  50

Replace with: 9999999

Open: default.php

Located here: /administrator/components/com_aimysitemap/views/urls/tmpl/

Search in file for: 50

Replace with: 9999999

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

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

Details

Created : 2019-09-10 19:24:01, Last Modified : 2024-02-27 07:13:27