• After I changed the directory in which my wordpress website is installed (/articles to /article) the image upload function continues to upload to /articles! HELP!

Viewing 2 replies - 1 through 2 (of 2 total)
  • Probably you need to update your upload_path option value to /article in wp_options.

    You can do it manually via phpMyAdmin or via MySQL CLI.

    To see current value, run:

    SELECT option_value FROM wp_options WHERE option_name LIKE 'upload_path';

    To update to article as upload_path, run:

    UPDATE wp_options SET option_value = 'article' WHERE option_name LIKE 'upload_path';

    Hope this helps ??

    Thread Starter fadilfaizal

    (@fadilfaizal)

    I found the solution here!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Image Upload not working after changing directory’ is closed to new replies.