Recent Posts

Pages: 1 ... 7 8 [9] 10
81
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.
82
How-to questions / Re: SALE
« Last post by Nuno Neff on June 16, 2025, 05:27:08 PM »
Here is a screenshot of it.
83
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';
84
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
85
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
86
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
87
General Support / Re: Help with Permissions Breakdown
« Last post by abolabo on June 13, 2025, 08:54:07 AM »
just try to set 755 for  directory home/heartpetsupply/public_html/admin/system/ and it's subdirectories via cPanel fileManager
88
General Support / Help with Permissions Breakdown
« Last post by JessieSager on June 13, 2025, 08:47:56 AM »
Hello,

 I am being told by my webhost that my site cannot get the permissions 777 or 775 because I will be hacked. They are requesting I asked for the specific permissions breakdown that I should have.  Currently the issue is I cannot import/export, or update anything within the website as I keep getting this error:

Temporary Directory /home/heartpetsupply/public_html/admin/system/data/ is not writable! Please change permissions to proceed.

Your help is greatly appreciated.
89
General Support / Re: Physical Address
« Last post by Basara on June 13, 2025, 03:00:42 AM »
Hello.
Consider modifying the extensions/novator/storefront/view/novator/template/pages/content/contact.tpl file
90
General Support / Physical Address
« Last post by G. O. on June 12, 2025, 09:44:00 AM »
hello AbanteCart Team,

can you tell me what to do to remove the Physical Address from the settings in the contact us webpage?  because there is an option for working remotely and all jobs done online from desktop.
Pages: 1 ... 7 8 [9] 10

Powered by SMFPacks Social Login Mod