• I once use Better WP Security to change “/wp-content” folder name to “/media”, and now I’m moving my whole site from localhost to a web server.

    I used WordPress Duplicator plugin. It worked fine. I can enter to Admin panel and the database is right.

    However, “/media” isn’t recognized (no plugins, themes, languages, etc) so I’ve realized I had to change in my new wp-config.php the part where the WP_CONTENT_URL and WP_CONTENT_DIR is set, but it still isn’t recognized!

    before:

    define( 'WP_CONTENT_DIR', 'D:\wamp\www\fdp/media' );
    define( 'WP_CONTENT_URL', 'http://localhost/fdp/media' );

    now:

    define( 'WP_CONTENT_DIR', '/home/b7000173/public_html/fdp/media' );
    define( 'WP_CONTENT_URL', 'http://b7000173.ferozo.com/fdp/media' );

    My root folder is /public_html (and it’s a shared hosting).
    Wordpress is installed in /fdp folder.

    Does your plugin set those folder names in another place apart from wp-config.php ?

    https://wordpress.org/plugins/better-wp-security/

  • The topic ‘Moving WordPress and "wp-content" Folder Name issues’ is closed to new replies.