Please help us to make AbanteCart Ideal Open Source Ecommerce Solution for everyone.

Support AbanteCart eCommerce

Author Topic: Two admin URL after moving abantecart installation from sub folder to root  (Read 8054 times)

Offline dejavu

  • Newbie
  • *
  • Posts: 3
  • Karma: +0/-0
    • View Profile
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

Offline abantecart

  • Administrator
  • Hero Member
  • *****
  • Posts: 4367
  • Karma: +302/-10
    • View Profile
    • Ideal Open Source Ecommerce Solution
Re: Two admin URL after moving abantecart installation from sub folder to root
« Reply #1 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.

Please  rate your experience or leave your review
We need your help to build better free open source ecommerce platform for everyone. See how you can help

Offline dejavu

  • Newbie
  • *
  • Posts: 3
  • Karma: +0/-0
    • View Profile
Re: Two admin URL after moving abantecart installation from sub folder to root
« Reply #2 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: newbielink:http://forum.abantecart.com [nonactive]

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

Offline dejavu

  • Newbie
  • *
  • Posts: 3
  • Karma: +0/-0
    • View Profile
Re: Two admin URL after moving abantecart installation from sub folder to root
« Reply #3 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

 

Powered by SMFPacks Social Login Mod