Hello, I have tried putting a copy of both sites on the same server, which resolved the database connection issue but I’m still getting no log and also, no progress when I try to migrate. It just sits at 0 and breaking the database instructions doesn’t give me an error in the log.
I checked my .htaccess and it’s as follows
# HTTPS forced by SG-Optimizer
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule ^(.*)$ https://%{SERVER_NAME}%{REQUEST_URI} [R=301,L]
</IfModule>
# END HTTPS
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase //wp/
RewriteRule ^index\.php$ – [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . //wp/index.php [L]
</IfModule>
# END WordPress
I can’t see what in there would be preventing the plugin from running properly?