Arne
Forum Replies Created
-
Hi,
the link is right, do you have Javascript enabled or do you see any Javascript errors?
Best regards,
Arne
Yes you can delete the empty one, as long as the others are working correctly I guess its not needed.
Forum: Plugins
In reply to: [Plugin: Google XML Sitemaps] French Translation updatedHi,
Thanks you very much for updating the language files. You can just send them to me (himself arnebrachhold de) and I will add them to the next release.
Thanks,
Arne
Forum: Plugins
In reply to: [Plugin: Google XML Sitemaps] Spanish translation has been updatedThanks, I’ve sent you an email.
Forum: Plugins
In reply to: [Plugin: Google XML Sitemaps] Error during Publish with latest versionSorry, looks like a copy and paste problem… it should be u.user_nicename instead of p.user_nicename. Will be fixed with next release.
Forum: Plugins
In reply to: [Plugin: Google XML Sitemaps] Incorrect work with sqliteHi,
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…
Forum: Plugins
In reply to: [Plugin: Google XML Sitemaps] Help with InstallationHi Mike,
unfortunately the plugin is not fully compatible to WP MU yet. I’m working on this and will let you know as soon as its ready.
Thanks,
Arne
Forum: Plugins
In reply to: Trojan Detected on Sitemap DashboardHi,
there is a lot of discussions about it in the Kaspersky forum:
http://www.google.com/search?hl=en&q=HEUR:Trojan.Script.Iframer+site:forum.kaspersky.com
Looks like there are a lot of false positives. The noted URL is the list of donors you see on the right side. If you continuously receive this error, you can also click on “Hide this list” to hide it.
Best regards,
ArneForum: Plugins
In reply to: [Plugin: Google XML Sitemaps] Bad Plugin – Came with Iframe built right in :(Hi,
I’m only using an IFRAME for showing the recent donations 🙂
The URL is: http://plugin-info.arnebrachhold.de/donor-list.php
Can you show me the exact error message or the result of the Exploit Scanner? The plugin also NEVER modifies the frontend (it’s actually not even active on a normal page load for saving memory) so I doubt it is the source of this error.
I would be glad to assist you in resolving this issue, you can also contact me by mail if you have any questions. (arne AT arnebrachhold de)
Thanks,
Arne
Edit: I’ve just installed the scanner and indeed it finds the iframe in the plugin, in the same way it finds one in the Akismet plugin for displaying the statistics.
If you don’t like this small window which shows the recent donations, you can click on the “Hide this list” link under it and it will never be shown again.
Additionally I want to note that the scanner is very simple (yet). If I would really want to hide this iframe and trick you, I could just create it via Javascript and the scanner would never be able to find it.
Forum: Requests and Feedback
In reply to: [Plugin: Google XML Sitemaps] Custom Taxonomies SupportHi,
thanks for the note! Actually I rewrote the whole part already using only one statement for everything (all taxonomies, terms, lastmod. and so on). 😉
Forum: Plugins
In reply to: [Plugin: Google XML Sitemaps] Problem setting additional page priority to 1Thanks, will be fixed in next release. 🙂
Forum: Plugins
In reply to: [Plugin: Google XML Sitemaps] Rebuilding sitemap via another pluginYes, that works too (at the moment ;-))
However the user will receive a fatal error in case the plugin is not active, sou you would at least have to add a check if the “GoogleSitemapGeneratorLoader” class exists…Forum: Plugins
In reply to: Google sitemap generator problemsYou can try to use your FTP program and check if there is any “log” or “logs” directory which contains something like an “error.log” text file. Inside this file you may search for “Fatal” or “php” and see if there is anything around it.
Forum: Plugins
In reply to: [Plugin: Google XML Sitemaps] Doubt Regarding Generated XML Sitemap TimeHi,
you don’t need to change anything, everything is correct 🙂
You can compare the timezones here:
http://www.timeanddate.com/worldclock/converted.html?month=10&day=22&year=2009&hour=14&min=40&sec=0&p1=176&p2=0Your sitemap contains the (correct) UTC/GMT time. Google and other search engines only accept the time in GMT/UTC, thats why its calculated from IST to UTC/GMT.
Greetings,
Arne
Forum: Plugins
In reply to: [Plugin: Google XML Sitemaps] Rebuilding sitemap via another pluginHi,
uuhm unfortunately that won’t work anymore since the GoogleSitemapGenerator class is “lazy loaded” by the GoogleSitemapGeneratorLoader class to avoid loading the whole generator on every page load.
I think the easiest way would be if you just call the “sm_build_cron” hook.
do_action("sm_build_cron");If the plugin is active, the building will start on this hook. If not, nothing will happen 🙂
Best regards,
Arne