Can’t upload files
Apparently this is a new WordPress bug (I’m using version 3.5.2). Just set wp_debug to false and it works perfectly again. Hopefully they’ll fix this soon. define(‘WP_DEBUG’, false);
Apparently this is a new WordPress bug (I’m using version 3.5.2). Just set wp_debug to false and it works perfectly again. Hopefully they’ll fix this soon. define(‘WP_DEBUG’, false);
Is it possible to upload files for wordpress importer over FTP?
3.5.x Theme Customize: Handling Custom Control Requests
Can you export the sql file and edit to the correct path on the new server? Then just import the modified sql file to the new installation on the new server?
Found the issue. I’m using Postgres_SQL cus I’m on Heroku, but that doesn’t play nicely with WordPress. Here’s the problem query: SELECT wp_posts.ID FROM wp_posts WHERE 1=1 AND wp_posts.ID IN (8,9)… It caused the error described here: https://stackoverflow.com/a/14132471/378622
This might came from your access right: First, check that you are a writer or an admin (See User in Admin Panel) > general > Role Second, if this is not the problem check the rights of yoursource files into your server ( you can easily check this on your FTP files or if you … Read more
In case any poor soul runs in to something similar, I’ve found the problem: define(‘WP_DEBUG’, false); Running debug mode (as I do on all dev sites), was throwing a warning, but it was being returned in the ‘admin-ajax.php’ which was preventing the images from showing/uploading and returning the appropriate values etc. I cannot believe the … Read more
I suggest you to build your own WP_Customize_Control class that does exactly what you want. You can copy-paste the core WP_Customize_Image_Control code on your own class and modify it to fit your needs. You can follow Otto’s guide to create a new control. I personally use the Customizer API to modify the background-position CSS property … Read more
Upload button in metabox not working
I’d moved the root of my site from /blog/ to / and not changed it in the general options. Everything seemed to work fine apart from the media library. Correcting the path solved the problem.