Show Posts


Messages - Basara

Pages: [1] 2 3 ... 410
1
Hello.

In the admin panel, you should still see the store selector even if multiple stores are currently disabled. Additionally, when you edit a store’s settings, you’ll notice the URL includes something like store_id=0. You can manually change that ID in the URL to access the settings page of other stores, this can be helpful if, for some reason, the store selector isn’t visible.

2
Support / Re: Error log image issues
« on: Today at 01:08:37 AM »
Hello.
The image error you’re seeing is most likely related to the PHP GD library on your server. Specifically, older versions of GD don’t support WebP format, which can trigger those types of errors even if you’re not directly uploading WebP images yourself—AbanteCart or the browser might be trying to serve them automatically if supported.
The good news is that this is usually an easy fix. I recommend contacting your hosting provider and asking them to make sure the server has an up-to-date version of PHP with full GD and WebP support enabled.

When you say the database was “corrupt,” could you clarify what exactly made you think that? Were there specific errors or behaviors? Often, a proper backup restore should resolve most issues unless the backup itself was incomplete or taken while the database was in an unstable state. If you have any logs or symptoms you noticed before the crash, it might help narrow down the root cause.

3
Hi everyone! 👋

I’ve been experimenting with Cursor AI to clone the Novator theme into a new extension for AbanteCart. The process involves copying PHP, SQL, and XML files, updating paths, class names, and layout configs etc.

It worked quite well, but as Cursor AI adapts based on the input, I’m curious:

👉 What prompts or approaches have you tried when using AI tools with AbanteCart?
👉 Any tips for improving the cloning process or making templates more flexible with AI?




Would love to hear your experiences, suggestions, or even test cases!

4
Support / Re: 403 error only for the settings area
« on: June 24, 2025, 02:29:24 AM »
Hello.
Based on your description, it does sound like a Web Application Firewall (WAF) configuration issue. Most often, it is related to ModSecurity or similar server-side security rules.
Temporarily disable ModSecurity again, and this time wait at least 1 hour before testing the admin settings area.
If the issue still persists after that, it’s best to reach out to your hosting provider’s support team.

5
How-to questions / Re: SALE
« on: June 23, 2025, 09:57:02 AM »
But then I can't rename it to my native language, otherwise when someone browses my site in English they'll see the word I've renamed.
Hello.
Yes, you’re absolutely right, this is a known issue. This bug has already been reported to the development team, and they’re aware of the problem.

6
Support / Re: Updating/Inserting images (JPG, PNG ...) via CSV file
« on: June 23, 2025, 05:17:31 AM »
Do you have any alternative solution for this. If any one have then please suggest.
Thanks
Have you tried using the Import Wizard format? It might help simplify the process
https://abantecart.atlassian.net/wiki/spaces/AD/pages/16777227/Import+Wizard#Products-import-example

8
Hello.
Please review the slider block in the Admin panel
https://abantecart.atlassian.net/wiki/spaces/AD/pages/12582976/Banner+Slider#Novator-theme-sliders
There, you’ll see the current image paths. You can also upload new images using the Add Media button.

9
Hello.
Really appreciate your thoughtful suggestions 👍

Just to share a bit of common practice that might help in the meantime: it’s usually a good idea to run any AbanteCart upgrade first on a test or cloned site. That way, you can spot any issues or extension warnings before going live.
Also, in terms of extension compatibility, if you go to the extension’s page on the AbanteCart Marketplace, you’ll usually see which versions of AbanteCart it’s officially compatible with.

10
How-to questions / Re: SALE
« 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

11
General Support / Re: Physical Address
« on: June 13, 2025, 03:00:42 AM »
Hello.
Consider modifying the extensions/novator/storefront/view/novator/template/pages/content/contact.tpl file

12
Upgrade / Re: upgrading from V.1.4.1 to V. 1.4.2
« on: June 12, 2025, 07:19:26 AM »
Thank you,  I had made a significant contribution, however I never received any type of receipt, which is beneficial for my business tracking. If and when receipts are automatically sent to contributors after they contribute,  I will again contribute. Having said that I appreciate all your work and for all of those in the open source world.

Thank you very much for your contribution and your kind words of support. We truly appreciate your involvement and recognition of the work put into the AbanteCart project and the broader open-source community.

13
Hello.
One important thing to note is that when you clone an AbanteCart site and switch to a new domain, the installation ID remains the same unless manually updated. This can cause conflicts with your AbanteCart Marketplace account, especially for purchased extensions. The marketplace checks both the domain and installation ID for license validation, so mismatches can result in unexpected behavior or license errors.

After cloning and updating the domain in your settings, it’s also essential to:
Clear the AbanteCart cache to remove any stored data tied to the old domain.
Reconnect or reconfigure services that rely on domain-specific callbacks or credentials, such as PayPal, Stripe, ElasticSearch, and others.

14
Installation and Configuration / Re: Clearing cache automatically
« on: June 11, 2025, 01:39:32 AM »
Hoping this message still gets some recognition. As this post is relevant to the problem we have with inodes filling up on our hosting site. However the script in this message is not a link just text. Anyone know where we can find this clear_cache.sh ?
Thank You,
Hello.
Can you tell which version of AbanteCart you're using and the number of products you have?
You can create the clean_cache.php script like this
Code: [Select]
<?php
// File: /home/public_html/clean_cache.php

$cacheDir __DIR__ '/system/cache';

// Ensure the directory exists
if (!is_dir($cacheDir)) {
    exit(
"Cache directory not found: $cacheDir\n");
}

$files scandir($cacheDir);
foreach (
$files as $file) {
    
// Keep index.html and skip . / ..
    
if ($file === '.' || $file === '..' || $file === 'index.html') {
        continue;
    }

    
$filePath $cacheDir '/' $file;

    if (
is_file($filePath)) {
        
unlink($filePath);
    } elseif (
is_dir($filePath)) {
        
deleteDirectory($filePath);
    }
}

// Recursive deletion function
function deleteDirectory($dir) {
    
$items array_diff(scandir($dir), ['.''..']);
    foreach (
$items as $item) {
        
$path "$dir/$item";
        
is_dir($path) ? deleteDirectory($path) : unlink($path);
    }
    return 
rmdir($dir);
}

and set a CRON job to run it like
Code: [Select]
*/6 * * * * /usr/bin/php /home/public_html/clean_cache.php >/dev/null 2>&1

15
General Discussion / Re: Main bottom banners
« on: June 10, 2025, 08:51:09 AM »
Could there be a caching issue or a setting in the Banner Manager that is causing the banners in groups 1, 2, and 3 to display the same image?
Hello. Please share the URL (add s p a c e s to link to bypas forum newbie protection)

Pages: [1] 2 3 ... 410

Powered by SMFPacks Social Login Mod