AdrianB
Forum Replies Created
-
Forum: Plugins
In reply to: [All-in-One WP Migration and Backup] Import nothing happensThe site where I do the [failing] import is my local developer environment (OS X), not any hosting provider. (I assume the failure is when importing rather then exporting.)
I’ve put the issue aside for now, will do some more testing later.
Forum: Plugins
In reply to: [All-in-One WP Migration and Backup] Import nothing happensI’ve done backups both with and without media folder (10 MB and 2 MB, respectively), and those sizes largely matches the sizes shown on the Backups page. (This is the site I’m exporting.)
At the site where I’m trying to import the writing permissions seem to work since I can create backup. It’s just the importing that doesn’t work, even though it reports it as successful.
Anyway, I used traditional database export/import instead (with the excellent Search Replace DB to change domain name).
Forum: Plugins
In reply to: [All-in-One WP Migration and Backup] Import nothing happensIs that really a sound advice, to set all the files and folders of wp-content to 775?
Anyway, I did try it and no, the import did not work any way.
Edit: I also updated to 5.42 and tried again, but still nothing.
Forum: Plugins
In reply to: [All-in-One WP Migration and Backup] Import nothing happensI’m having the same issue right now. Upload seems to work but nothing is imported.
I can give it a try and compare to 1.4.8, where/how do I get the beta version?
Not much other than each post type gets two identical queries each. For someone with only post, page and attachment post types it probably isn’t that much, but since I have another 14 posts types it adds up.
Here are two screenshots from Query Monitor reporting: http://imgur.com/a/KU5GV
Hmm, no I don’t think it has anything to do with Ultimate Member. I do not have that plugin installed. The
umis just the table prefix in wp-config.php:$table_prefix = 'um_';And yes, a good caching plugin is certainly good for performance, I just assume the many calls by Popup Maker was a bug of sorts.
Forum: Plugins
In reply to: [BackUpWordPress] Fails to update to 3.6.0I for one are grateful for the active development. The opposite is worse, there are way too many good plugins out there that have been abandoned and without updates for years (possibly with security issues). Active developers are one of my most important factors when it comes to choosing a plugin. As long as the releases are stable I don’t have a problem with frequent releases.
Forum: Plugins
In reply to: [BackUpWordPress] Fails to update to 3.6.0I hade the same issue yesterday, but I waited a couple of hours and then it worked. Seemed to me that the issue was wp.org not responding (although other updates worked).
Forum: Plugins
In reply to: [Database Backup for WordPress] Mysterious InstallSeems like a backdoor, if you try to access system.php in a browser you’re asked for a password. If I google “wp-db-backup-made” I see a lot of other sites that probably has this backdoor active…
Forum: Plugins
In reply to: [Database Backup for WordPress] Mysterious InstallI’ve also see the “wp-db-backup-made” plugin on an hacked WP site I am cleaning up right now.
Forum: Plugins
In reply to: [Clean Image Filenames] No thumbnail, text insteadActually it is only present in Firefox. Works as expected in both Safari and Chrome.
If I understand it correctly then other browsers are handling OS X filenames characters in a different way. I found this for example: Unconventional normalization form for uploaded filename on OSX.
So, that was my afternoon… :/
Anyway, I’ve now learned that filename cleaning of characters like åäö won’t work if files are uploaded with Firefox on OS X. (Not even the postprocessing in Media File Renamer worked on these files.)
I’m curious though if it would be possible to handle this in code in a plugin, but the world of character encoding is a world I rather stay away from… 🙂
Forum: Plugins
In reply to: [Clean Image Filenames] No thumbnail, text insteadI’m gonna mark this as resolved since I don’t think it’s anything wrong with this plugin.
Forum: Plugins
In reply to: [Clean Image Filenames] No thumbnail, text insteadSo it seems like files in my Finder (OS X) uses odd characters (multibyte?) even though it looks like åäö. Maybe it’s actually something related to the file names on my computer and has nothing to do with WordPress, plugins or server environment at all. Very weird.
Anyway, sorry to bother, and thanks for the quick feedback!
Forum: Plugins
In reply to: [Clean Image Filenames] No thumbnail, text insteadMaybe… if I run
locale -aon the server I do get a lot of locales, likesv_SEandsv_SE.utf8. But I’m not completely familiar with this, maybe that doesn’t mean they are available for PHP?It’s odd though, if I just use the
clean_filename()function from the plugin (like, in a template) and run it like this:function clean_filename($file) { $path = pathinfo($file['name']); $new_filename = preg_replace('/.' . $path['extension'] . '$/', '', $file['name']); $file['name'] = sanitize_title($new_filename) . '.' . $path['extension']; return $file; } $file = clean_filename( array( "name" => "Test av filnamn – åäÖ.jpg" ) ); echo $file[ 'name' ];The output is the expected
test-av-filnamn-aao.jpg.