AdrianB
Forum Replies Created
-
Forum: Plugins
In reply to: [Clean Image Filenames] No thumbnail, text insteadYeah, I guessed it was supposed to work like that. I’ve tried other plugins (Clean Filenames, Filenames to latin) and had problems with them as well. So maybe it has something to do with my setup. My site is hosted at a Swedish web hosting company (https://fsdata.se/) but not open to the public (just a test site).
Forum: Plugins
In reply to: [Clean Image Filenames] No thumbnail, text insteadAh, I see that now.
My file name was
File Name test – åäÖ.jpgand the images on the server becomesfile-name-test-a%cc%8aa%cc%88o%cc%88.jpgwhich results in a 404 when I try to access it.I’d rather see that the file name was transliterated to
File Name test – aaO.jpg(or even better,file-name-test---aao.jpg).Forum: Plugins
In reply to: [Clean Image Filenames] No thumbnail, text insteadMaybe it had something to do with the fact that I’ve already uploaded the file before trying Clean Image Filenames? Is WordPress smart enough to try to use the previous image? I’ll investigate… 🙂
Forum: Plugins
In reply to: [Clean Image Filenames] No thumbnail, text insteadThen it works.
I uploaded the same file (with a filename that contained a Swedish “å”) four times, alternating the activation of Clean Image Filenames. Both times it was active I got the same result.
Forum: Themes and Templates
In reply to: [Responsive Mobile] Creating Child themeThere is a separate child theme for Responsive II, more info here:
http://cyberchimps.com/guide/responsive-ii-example-child-theme/Forum: Plugins
In reply to: [Responsive Lightbox & Gallery] Fancybox updateYeah, that’s the same Stack Overflow link as I posted above 🙂
Forum: Plugins
In reply to: [Responsive Lightbox & Gallery] Fancybox updateI think this is related (otherwise I’ll open a new thread):
I got
Uncaught TypeError: Cannot read property 'msie' of undefinedwhen I chose Fancybox, causing it to not work. I found this question about it and the answer confirmed that Fancybox 1.3.4 does not work with jQuery v1.9.0.The suggested solution was to patch the
jquery.fancybox-1.3.4.jsfile, changing
isIE6 = $.browser.msie && $.browser.version < 7 && !window.XMLHttpRequest,
to:
isIE6 = navigator.userAgent.match(/msie [6]/i) && !window.XMLHttpRequest,I tried this and it worked. If we can’t have Fancybox v2.1.4 (which has fixed this issue) because of license issues, then maybe the
jquery.fancybox-1.3.4.jsprovided by this plugin could be patched the same way?Can’t say if it is caused by the same problem, but I’m seeing these errors as well.
We’re using iThemes Security as network activated plugin, don’t know if that is related. There is no
dbname.wp_itsec_lockoutsas the error messages say but there is adbname.wp_2_itsec_lockouts(and adbname.wp_3_itsec_lockoutsetc).Forum: Plugins
In reply to: [XML Sitemap & Google News] Sitemap not foundI have no idea actually 🙂
Even more weird is that it worked on our dev servers without having to re-save the permalink structure. So I guess there is some slight difference in the setup but trying to pin that down is just not worth the time I think (since re-saving is so easy once you remember it).
Forum: Plugins
In reply to: [XML Sitemap & Google News] Sitemap not foundNo need, I just remembered that saving the permalink structure once (without changing any settings) usually fixes these kind of issues and it did. So this is solved for me.
Forum: Plugins
In reply to: [XML Sitemap & Google News] Sitemap not foundNot trying to hijack the thread but having the same issue. If
/?feed=sitemap-newsis present but notsitemap-news.xmlwhat could that mean? Could network activation (on multisite) be the cause?Forum: Plugins
In reply to: [Edit Flow] Edit Flow stalls Chrome and Safari on /wp-admin/edit.phpOk, I think i found the issue now.
The main problem is that our custom plugin loads an ridiculous amount of taxonomy terms (thousands) and Edit Flow adds a jQuery plugin that affects the loading of those terms in Safari and Chrome.
The longer version:
This is because edit.php has this quick inline edit of posts. And for that inline editor WordPress needs to list the entire category taxonomy as lists with checkboxes. This is all done in a hidden table below the posts lists that is display if the views activates the inline editor.
Now this has not been an issue for us before we activated Edit Flow. So I took a look at what javascripts Edit Flow loads. I found that it is because Edit Flow adds the jQuery plugin jquery.listfilterizer.js the loading almost hangs in Safari and Chrome or take at least 2 minutes to compute, even though that part of the page is not displayed.
I don’t know exactly what jQuery.listFilterizer does but since it’s a list filter plugin and we add thousands of (hidden) list items it seems like jQuery.listFilterizer tries to do something with all lists on the page. And unlike Firefox this affects the rendering by Safari and Chrome (on OS X that is, I have not tried Windows).
So I would assume that any sites that has a huge amount of category terms would experience this issue in Safari and Chrome with Edit Flow active.
Forum: Plugins
In reply to: [Edit Flow] Edit Flow stalls Chrome and Safari on /wp-admin/edit.phpI’ve been bug hunting this and found that it only happens with a combination of Edit Flow 0.8 and one of our custom plugins. Either one of them does not cause trouble, but when they are both active some kind of conflict occurs that cased this weird error (only on edit.php and only in Chrome and Safari).
I’ll try to nail this down even further.
Forum: Plugins
In reply to: [WordPress SEO News] Category Exclude doesn't workThis seems to be a know bug, and according to comments on Github this change will fix it (but I have not tested it myself):
https://github.com/douglasvc/Google-News-Sitemap/commit/880b75ff596a647a81c9a1f91351aaadfffc2f4d
@ vittali13
Thanks, your post about the “Enable SMTP Debug” checkbox solved my issue!