Viewing 12 replies - 1 through 12 (of 12 total)
  • I am not sure if this will work (theoretically, it should) but don’t feel like trying it on my blog:
    Settings -> Miscellaneous -> Store uploads in this folder => ‘../media/uploads’ if /media and /wordpress are on the same directory.

    Thread Starter beku76

    (@beku76)

    thanks for the hint,
    but it doesn’t work ??

    using this suggestion, WordPress creates a folder named “..” under WordPress directory

    like this:
    domain
    -wordpress
    –..
    —media
    —-uploads

    Oops, sorry, it should’ve been ‘/../media/uploads’, give it one more try. (Turns out that I can’t upload files on my WP, doesn’t matter to me thought because I use FTP to upload files.)

    I have been trying to figure this out too. It was easy to do before 2.5… I posted the solution here: https://chriskalani.com/archive/upload-outside-of-the-wordpress-directory/

    But that no longer works… ?? I really need to find a solution.

    Thread Starter beku76

    (@beku76)

    finally it worked for me,
    the links inside the posts look like:

    https://www.mydomain.com/wordpress/../media/uploads/photo1.jpg

    but,
    The image is stored at:
    https://www.mydomain.com/media/uploads/photo1.jpg

    I found that the browsers correct this by default.
    they know that /../ means -1 level
    Try it yourself, with any image found in google like this:
    https://images.pingmag.jp/images/title/wordpresstitle.jpg

    now, modify the url to:
    https://images.pingmag.jp/whatever/../images/title/wordpresstitle.jpg
    and copy it to the browser again,
    voila! it goes to the original one.

    I’m trying to move the default folder outside of the wordpress/ install directory and into the / root of the site too. Any tips on how this can be done??

    @beku76 – can you explain your solution more please?

    anyone out there have a solution for this?

    I have found the solution for this.

    Settings -> Miscellaneous
    Do both of the following:

    Store uploads in this folder -> absolute path to folder you want to use
    Example: /home/user/public_html/images

    Full URL path to files -> actual URL of folder you want to use
    Example: https://www.example.com/images

    Note: As shown in the examples above, do not use a trailing slash.

    How to find your absolute path:
    Using a text editor (such as Notepad), copy and paste the following code, and save it as path.php

    <?php
    $p = getcwd();
    echo $p;
    ?>

    Upload path.php to the folder you want to use, then open it in a web browser (example: https://www.example.com/images/path.php). It will display your absolute path.

    @yarntomato

    THANK YOU!!! Your solution worked perfectly. Many thanks!

    Awesome! Works great for 2.5+

    Hello, old topic but i searched this on google and found.
    I tried to change the path and url and also copied my old images to new folder but its funny that images on gallery inside my posts sits on the new directory, others not.
    i dont know why

    Hi!
    Any ideas about placing upload folder on another server?

    Namely, I tried defining upload folder location as seen from media server (the other one, using path.php), but although the URL is right and visible from WordPress server, the only thing I get is just another folder in WP root and that of course is not correct.

    I would actually need for WP to upload files to this other server and use them in posts like they were on WP side of the story.

    Any help appreciated!

Viewing 12 replies - 1 through 12 (of 12 total)
  • The topic ‘uploads folder outside WP root?’ is closed to new replies.