Show Posts


Messages - Basara

Pages: [1] 2 3 ... 410
1
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.

2
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

3
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

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

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

6
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

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

8
Hello.
Please attach your CSV file

9
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

10
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

11
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

12
How-to questions / Re: SALE
« on: June 09, 2025, 03:13:56 AM »
Hello.
Try to search in Language Definitions in admin

13
Hello.
What exactly are you importing? (Customers? Orders? Products? Something else?). Could you also attach your CSV file

14
General Support / Re: Receiving Error Trying to Import Products
« on: June 02, 2025, 09:56:07 AM »
Where do I set these permissions?
Hello.
You can set file permissions for your AbanteCart files directly through your hosting control panel (like cPanel) or via an FTP client (such as FileZilla).

15
I just tested on my end and can confirm the issue when trying to scroll to some sub-categories like eShops from a PC. It seems like the submenu doesn’t fully load or respond properly to the mouse scroll.
Hello.
Can you please check if you’re running the latest AbanteCart version (v1.4.2)? If you are already on v1.4.2, could you share a link to the affected site (you can a d d spaces if URLs aren’t allowed) and a screenshot showing the submenu issue?

Pages: [1] 2 3 ... 410

Powered by SMFPacks Social Login Mod