Hi,
I want to change my upload dir from “web/app/uploads” to “web/wp-content/uploads” (not in wp/wp-content).
I saw this discussion Bedrock and UPLOAD dir but I don’t found a solution:
define(‘UPLOAD’,‘wp-content/uploads’);
_update_option(‘upload_path’, $SERVER[‘DOCUMENT_ROOT’] . ‘/wp-content/uploads’);
_update_option(‘upload_url_path’, ‘http://’ . $SERVER[‘SERVER_NAME’] . ‘/wp-content/uploads’’);
doesn’t work.
I want to change it because I use WP Offload s3 and, if I change the upload dir, it replace all my OLD images with the new path (app/uploads).
Thanks