AbanteCart Community

Shopping Cart Operations => Support => General Support => Topic started by: dejavu on November 20, 2015, 05:22:03 PM

Title: Two admin URL after moving abantecart installation from sub folder to root
Post by: dejavu on November 20, 2015, 05:22:03 PM
I had installed abantecart in the folder \public_html\abanteCart.
Now I moved all the contents of the abanteCart from the sub folder to the root as per the procedure listed in one of the forum discussion on abanteCart.

now I have two admin URL and both seems to be accepting username and password ?? I know this a problem if not fixed will bite me later, anyone with similar experience and fix for it.

xxxxx/abanteCart/index.php?s=admin123
xxxxx/index.php?s=admin123

thanks
Title: Re: Two admin URL after moving abantecart installation from sub folder to root
Post by: abantecart on November 21, 2015, 10:57:35 AM
You should not have 2 URLs. Did you move or copy?
Make sure that sub-directory is deleted

You need to update URL setting in admin and .htaccess path.

Title: Re: Two admin URL after moving abantecart installation from sub folder to root
Post by: dejavu on November 22, 2015, 12:29:02 AM
I moved the directory and after the move deleted the sub-directory.

I did not change the URL setting after I moved code from the sub-directory because I had the URL setting without the sub-directory when all of the code was in sub-folder.


I did not change the .htaccess path, where to change this ? following is the contents of .htaccess file in the public_html

# 1. To use URL Aliases you need to be running apache with mod_rewrite enabled.

# 2. In your abantecart main directory rename file htaccess.txt to .htaccess

# 3. Edit file .htaccess. If abantecart is installed in yourdomain/ subfolder change configuration line  RewriteBase /  to  RewriteBase /subfolder/.
# Example:  yourdomain.com/store   use RewriteBase/store/
# Important to have / at the end of the line.

# 4. if htaccess and mode_rewrite still does not works - check and set apache2 webserver directive AllowOverride All for your virtual hosts

# For any support issues please visit: http://forum.abantecart.com

Options +FollowSymlinks

# Prevent Directoy listing
Options -Indexes

# Prevent Direct Access to files
<FilesMatch "\.tpl">
Order deny,allow
Deny from all
</FilesMatch>

# Rewrite section for retina high-res images with @2x in the end of filename base on cookie HTTP_IS_RETINA
# To emulate Retina mode on your NON-Retina display, add HTTP_IS_RETINA cookie in your browser
RewriteEngine on
RewriteCond %{HTTP_COOKIE} HTTP_IS_RETINA [NC]
RewriteCond %{REQUEST_FILENAME} !@2x
RewriteRule ^(.*)\.(gif|jpg|png)$ $1@2x.$2
# if @2x isn't available fulfill the original request
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)@2x\.(gif|jpg|png)$ $1.$2

# SEO URL Settings
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)\?*$ index.php?_route_=$1 [L,QSA]
AddHandler application/x-httpd-php54 .php .php5 .php4 .php3
Title: Re: Two admin URL after moving abantecart installation from sub folder to root
Post by: dejavu on November 22, 2015, 01:10:04 AM
I copied the contents of sub-directory to the root and deleted the sub-directory. I did not move the sub-directory.

Thanks for the help