Required
Member
Posted 2 weeks ago #
Hello! The plugin is working incorrectly with sqlite database. The matter is that direct instructions are used in work for the adress to the base mysql. Is it planned to improve this plugin so that requests will be realized with the help of standard functions of wp?
http://wordpress.org/extend/plugins/google-sitemap-generator/
Hi,
the plugin was improved to NOT use the standard functions of WP ;-)
The problem is that on most servers the memory limit of PHP is quite low. To save memory, the script uses some mysql functions like unbuffered queries, which don't retrieve all the data in one big array, but row by row without storing it.
Unfortunately these functions are not supported by the WP database layer, so I had to use direct instructions...