Author Topic: Error 1054 while loginto admin panel  (Read 2747 times)

Offline gold2000

  • Newbie
  • *
  • Posts: 13
  • Karma: +0/-0
    • View Profile
Error 1054 while loginto admin panel
« on: June 21, 2017, 10:24:44 AM »
Hello Team

This morning suddenly I am facing this message while logging in to my Abantecart Admin

Please advise.

Offline abantecart

  • Administrator
  • Hero Member
  • *****
  • Posts: 4358
  • Karma: +298/-10
    • View Profile
    • Ideal Open Source Ecommerce Solution
Re: Error 1054 while loginto admin panel
« Reply #1 on: June 22, 2017, 01:37:47 PM »
Hello.

Did you upgrade your AbanteCart recently?

Looks like you are missing `salt` field on users table.

You can ran these to make sure you have salt field
Code: [Select]
ALTER TABLE `ac_customers`
ADD COLUMN `salt` varchar(32) COLLATE utf8_general_ci NOT NULL DEFAULT '';
ALTER TABLE `ac_customers` ADD COLUMN `salt` varchar(8) COLLATE utf8_general_ci NOT NULL DEFAULT '';
 
ALTER TABLE `ac_users` ADD COLUMN `salt` varchar(8) COLLATE utf8_general_ci NOT NULL DEFAULT '';
ALTER TABLE `ac_users` MODIFY `password` varchar(40);

Do not forget to replace ac_ with your abmr_ prefix on the tables.
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

 

Powered by SMFPacks Social Login Mod