broken links for wordpress not in root folder
-
( This is for the most recent version )
When WordPress is in a folder that is not root ( ex https://www.mysite.com/nestedFolder/ ), the links are broken. There was another post on here regarding this issue on the submit button for the form to register your OAUTH credentials.The fix is to replace instances of
get_option("home");
with
site_url();
(here’s all 4 of them)
\wp-google-drive\class\settings-class.php (1 hits) Line 36: <form action="<?php echo get_option("home"); ?>/wp-admin/admin.php?page=configure_google&action=auth" method="post"> \wp-google-drive\wp-google-drive.php Line 72: define('GBACKUP_BACKUP_URL',get_option("home").'/wp-content/backup'); Line 73: define('GBACKUP_DB_URL',get_option("home").'/wp-content/db'); Line 74: define('GBACKUP_CONTENT_URL',get_option("home").'/wp-content/');
I just hope this fix is in the next updated version so I don’t have to replace all the instances again ??
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘broken links for wordpress not in root folder’ is closed to new replies.