"License code is valid. Please go to Dashboard"... really?

Flintstone

New Member
Hi @Flintstone ,

Are you using HTTP Authentication via .htaccess on the back-end maybe?
OR
auth_basic "Restricted";
auth_basic_user_file /etc/nginx/.htpasswd; ?

I don't believe so... here is my .htaccess:
PHP:
# 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 /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
 

Flintstone

New Member
So it turns out that AliDropship Woo is activated... the UX is pretty bad though.

When it is activated the Activate button remains clickable and clicking on it produces an error.

Obviously, the activation page should probably only show your activation key and give an option to deactivate.
 
Top