Recent Posts

Pages: 1 [2] 3 4 ... 10
11
The table already exists in the database. I'm attaching a screenshot of the customer_session fields. Is the table structure okay?
12
please check this sql-request of upgrade script.
https://github.com/abantecart/abantecart-src/blob/1.4.1/public_html/install/abantecart_database_upgrade.sql#L87

Be sure table customer_sessions presents in the database
13
Hi Community,

I’m experiencing a persistent issue with AbanteCart v1.4.1 on a live deployment. After submitting the login form, the user is redirected to the expected account/account URL, but then immediately redirected back to the login page without any error message.

Observed Behavior:
Login form submits via POST to account/login with valid credentials.

The response returns 302 Found to account/account (as expected).

Then the browser is redirected again with 302 back to login page.

Final status is 200 OK on the login page – but the user is never authenticated.

No errors appear in AbanteCart logs or server logs.

The customer cookie is issued after login, but gets immediately deleted in the next request.
14
How-to questions / Re: Which style sheet for the bootstrap theme?
« Last post by abolabo on June 17, 2025, 03:51:31 AM »
Hi all! I wanted to change the menu bar color (and other layout colors) and can't find the proper place to do it. I'm using the bootstrap theme. Is /storefront/view/default/stylesheet/bootstrap.css the right place?
I'm old. but the mind is still willing. A lot has changed since I made html web pages 25 years ago. Thanks for any help :)
You should to edit file style.css instead. bootstrap.css  is a file of css-framework. We prefer do not change such distributed files.
I guess you use our prior version of AbanteCart. Since 1.4.0 directories have name "css", not "stylesheet".
Please note, all your changes will be overwritten by upgrade process. To avoid that you should to create extension template based on your current "default" template via our developer_tools extension.
15
How-to questions / Re: Which style sheet for the bootstrap theme?
« Last post by leorasy on June 16, 2025, 11:46:35 PM »
This separate theme stylesheet is not used in Bootstrap 4 or 5, as theming is now handled via Sass variables and CSS custom properties.
16
How-to questions / Re: SALE
« Last post by Nuno Neff on June 16, 2025, 05:27:08 PM »
Here is a screenshot of it.
17
Support / Re: 1146 Error Upgrading 1.4.1 > 1.4.2
« Last post by abolabo on June 16, 2025, 03:59:32 AM »
Run this sql-query before upgrade via phpMyAdmin.
Do not forget do full backup of your cart (see database export tab in phpMyAdmin)

Code: [Select]
--
-- DDL for table `user_sessions`
--
DROP TABLE IF EXISTS `abc_user_sessions`;
CREATE TABLE `abc_user_sessions` (
    `user_id` int(11) NOT NULL,
    `token` varchar(128) NOT NULL DEFAULT '',
    `ip` varchar(50) NOT NULL DEFAULT '',
    `last_active` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
    `date_added` timestamp NULL DEFAULT CURRENT_TIMESTAMP,
    PRIMARY KEY (`user_id`, `token`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- DDL for table `customer_sessions`
--
DROP TABLE IF EXISTS `abc_customer_sessions`;
CREATE TABLE `abc_customer_sessions` (
    `customer_id` int(11) NOT NULL AUTO_INCREMENT,
    `session_id` varchar(128) NULL DEFAULT '',
    `ip` varchar(50) NOT NULL DEFAULT '',
    `last_active` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
    `date_added` timestamp NULL DEFAULT CURRENT_TIMESTAMP,
    PRIMARY KEY (`customer_id`, `session_id`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

#update menu design item
UPDATE `abc_dataset_values`
SET value_varchar = 'design/template'
WHERE row_id=3 AND value_varchar='extension/extensions/template';

#fix or prior upgrade 1.3.4->1.4.0
UPDATE `abc_blocks`
SET controller='blocks/viewed_products'
WHERE controller='viewed_products/viewed_products' AND block_txt_id = 'viewed_products';
18
How-to questions / Re: SALE
« Last post by Basara on June 16, 2025, 01:51:53 AM »
I have made a clean install and tried to rename SALE in the english language and it doesnt work, still continues with word SALE
Hello. Please provide a screenshot
19
How-to questions / Re: SALE
« Last post by Nuno Neff on June 14, 2025, 03:55:01 PM »
I have made a clean install and tried to rename SALE in the english language and it doesnt work, still continues with word SALE
20
Support / 1146 Error Upgrading 1.4.1 > 1.4.2
« Last post by MGBReg on June 14, 2025, 02:24:33 AM »
Hi Trying to upgrade to the latest version but fails and error logs show

Unknown Error: AbanteCart core v.1.4.1 SQL-ERROR: "array (
'error_text' => 'Table \'db769632144.abc_customer_sessions\' doesn\'t exist',
'errno' => 1146,
)" in /homepages/10/d4527924**/htdocs/mgbregalia/core/lib/package_manager.php on line 832

Any Ideas?

Thanks
Pages: 1 [2] 3 4 ... 10

Powered by SMFPacks Social Login Mod