Cannot upload anything via wordpress

Right, I’ve managed to solve the problem. Maybe this answer helps other people who encounter the issue again. The problem is inherently in the installation procedure when installing via the package manager in ubuntu. The actual issue was in the database configuration, the installation had set WP_CONTENT_DIR to /srv/www/wp-content/localhost, a directory I did not even … Read more

Set a custom URL for image in the Media Library?

Sharing my thoughts on multiple issues you mentioned. Hoping one or two of the following would help… Firstly, you may visit your site’s wp-admin/options-media.php and uncheck the option “Organize my uploads into month- and year-based folders” Why can it only be attached to ONE post/page? An image can be attached to any number of posts … Read more

Site migration – some images not displaying in Media Library

I highly recommend updating all of your URLS. This can be done either with a word press plugin such as Velet Blues Update URLS Or via your SQL database: UPDATE wp_posts set post_content=REPLACE(post_content, ‘www.live.com/’, ‘www.test.com/’); note* images are uploadeded as posts in your database.* ( wp_posts table with a post_type of “attachment”. )

Large image size stuck on old value, even for new images

Find the actual large version of the image file (i.e., wp-content/uploads/2014/03/my-image-1024×576.jpg) and see if in fact it has the smaller dimensions or if it is just being rendered that way in your theme. If the large version is in fact 1024px wide, then the filter is working. Make sure you are referencing the right image … Read more