Show Posts


Messages - Basara

Pages: [1] 2 3 ... 410
1
How-to questions / Re: SALE
« on: Today at 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.

2
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

4
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.

5
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.

6
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

7
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

8
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.

9
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.

10
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

11
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)

12
Hello.
Please attach your CSV file

13
News and Announcements / Re: AbanteCart Version 1.4.1 is now released
« on: June 10, 2025, 01:42:56 AM »
I continue to get error messages when trying to complete this update. The latest error is as follows.  Directory /home/myprettypetonlin/public_html/extensions/ is not writable. Please change permissions for it.
Hello.
Error means that the AbanteCart system is trying to write to the extensions/ directory during an update or installation, but it doesn’t have the necessary file permissions.
Log in to your hosting control panel, set the permissions to 775, which allows the web server to write to the directory. If that doesn’t work, you can temporarily try 777

14
How-to questions / Re: SALE
« on: June 10, 2025, 01:40:36 AM »
Hello.
Navigate to System > Localization > Language Definitions and apply a filter for definitions using block blocks_special

15
New Features Sposorship / Re: Barcode-Scanner
« on: June 09, 2025, 03:17:55 AM »
Thank you for your post. It’s great to see users like you interested in sponsoring new features to help improve AbanteCart for everyone!

To help us better understand and evaluate this feature, could you please provide a more details? With a bit more context, we can better scope the development and provide you with sponsorship options

Pages: [1] 2 3 ... 410

Powered by SMFPacks Social Login Mod