Arne
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: [Plugin: Google XML Sitemaps] Problem with new V 3.1.3 and gzopenHmmm, this is strange since the changes where quite small. Do you see any additional errors in the debug mode beside of the “gzopen failed”?
The next version will clear any old cron entries when you manually rebuild the sitemap or change configuration settings.
At the moment I have no idea why sometimes the cron job is left in the list, since it is cleared before starting the sitemap process. Therefore it should be removed even if the build process breaks or runs out of memory for example…
Fixed in the next version, thanks for reporting.
Forum: Plugins
In reply to: [Plugin: Google XML Sitemaps] Possibily for third party to hop on “addurl”You already can (see documentation.txt) 🙂
function your_pages() { $generatorObject = &GoogleSitemapGenerator::GetInstance(); //Please note the "&" sign! if($generatorObject!=null) $generatorObject->AddUrl("http://blog.uri/tags/hello/",time(),"daily",0.5); } add_action("sm_buildmap","your_pages");Did you make a backup of this error_log file? It wound be interesting to know here it came from and whats inside… Maybe its the error log file created by PHP, so it could contain information why the plugin didn’t work before 🙂
Forum: Fixing WordPress
In reply to: [Plugin: Google XML Sitemaps] XML Parsing Error – no element foundDid you solve the problem? Your Sitemap looks fine 🙂
Forum: Plugins
In reply to: [Plugin: Google XML Sitemaps] Redirect Trailing Slash problem on author pageHi,
the plugin uses the get_author_posts_url / get_author_link functions from WordPress and doesn’t change them in any way. Looks like this function are returning the wrong URL.
Since it would be quite complicated (and also out of scope of the plugin) to check if these links are right, could you please open a WordPress bug ticket so it can be fixed Within WP?Forum: Plugins
In reply to: [Plugin: Google XML Sitemaps] Warning message after activating pluginHi,
seems to be a problem with a plugin or theme called siteground-j15-22 and is probably not related to the sitemaps plugin.
Forum: Plugins
In reply to: [Plugin: Google XML Sitemaps] problem while notifying YAHOOThere are two different APIs from YAHOO, one with key and one without. The one without was extremely unreliable so I decided to keep the other one. Notifying is working for me, does this always happen or only sometimes? If sometimes. it’s probably not the plugins fault.
Nothing, you just need to edit the sitemap.xsl file. Make sure you don’t use the WP auto-plugin-update function which would overwrite your changes!
Forum: Plugins
In reply to: readme.txt and documentation.txt files giveThank you very much. I will review these files, since they are pretty outdated. It’s just hard to keep all the information in sync, especially spread over multiple places…
Forum: Plugins
In reply to: [Plugin: Google XML Sitemaps] How to change virtual.txtIf the contents of your WordPress-generated virtual robots file block Google, check your WordPress privacy settings. There is an option in the admin panel to tell search engines NOT to crawl your site. Probably you have this option checked 🙂
Forum: Plugins
In reply to: [Plugin: Google XML Sitemaps] Fatal ErrorUpps, this function is available from WP 2.5.1, but the plugin only checks for 2.5.
Please open the sitemap-ui.php in Notepad and search for
<b><?php _e('Excluded categories', 'sitemap') ?>:</b>below there should be:
<?php if(version_compare($wp_version,"2.5",">=")): ?>
replace this with:
<?php if(version_compare($wp_version,"2.5.1",">=")): ?>This will disable the feature, since it is not supported in this older versions…
Or consider updating your WP installation 😉
Forum: Plugins
In reply to: [Plugin: Google XML Sitemaps] </urlset> missingHey all,
Thanks for the feedback! The plugin uses a special mode to access the database (unbuffered query) to save memory. Unfortunately if another plugin makes a MySQL Query during the sitemap process, maybe depending on a special hook/action/filter, and does NOT use the WordPress DB API, it might break the sitemap plugin connection and you can end in an error like this:
Warning: mysql_fetch_object(): 112 is not a valid MySQL result resource
You can workaround this by enabling the MySQL standard mode on the sitemap admin page. You could also try to find out which plugin causes this issue by temporarily disabling them.
If this doesn’t help, I can’t really help you via this forum. If you want, contact me via email and maybe I can have a look at your WP installation and do some debugging on your server.
BTW, I’m here directly in Beijing 🙂
Forum: Plugins
In reply to: [Plugin: Google XML Sitemaps] Error notifying YahooHi rschilt,
the YAHOO service is quite unreliable, returning often simply an error like “not successful” without any details. If it works sometimes, it’ probably not the plugins or servers fault.
Best regards,
Arne