Recent Posts

Pages: 1 [2] 3 4 ... 10
11
Upgrade / Re: upgrading from V.1.4.1 to V. 1.4.2
« Last post by abolabo on June 11, 2025, 04:30:19 AM »
Not all of us are dev's. There are many apps out there that provide both an easy upgrade, and a strong defense. We know because we have used them and upgrades are secure and seamless. These Abantecart upgrades have become intimidating and that should not happen. We just want to have the best products to present to our customers.

 Agree.  Feel free send us donations. This project alive because of you and code is free.
12
Installation and Configuration / Re: Clearing cache automatically
« Last post by Basara 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
13
Upgrade / Re: upgrading from V.1.4.1 to V. 1.4.2
« Last post by perplexed on June 10, 2025, 01:09:49 PM »
Not all of us are dev's. There are many apps out there that provide both an easy upgrade, and a strong defense. We know because we have used them and upgrades are secure and seamless. These Abantecart upgrades have become intimidating and that should not happen. We just want to have the best products to present to our customers.
14
Installation and Configuration / Re: Clearing cache automatically
« Last post by perplexed on June 10, 2025, 12:24:07 PM »
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,
15
General Discussion / Re: Main bottom banners
« Last post by Basara 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)
16
I ran into something like this when I cloned a site across different domains and had lingering admin sessions messing things up. Even after clearing the cache and making sure only the new domain was in play, some extensions were throwing weird behavior. The marketplace connection wasn’t the culprit in my case either, it was more about how the extensions were reacting to the switched domain and some small overlooked settings carried over from export/import.
17
How-to questions / Re: SALE
« Last post by Nuno Neff on June 10, 2025, 05:30:51 AM »
Doesnt find nothing :(
18
General Discussion / Re: Main bottom banners
« Last post by Archibald on June 10, 2025, 02:54:36 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?
19
How-to questions / Re: New Install 1.4.2 getting error when uploading CVS files
« Last post by Basara on June 10, 2025, 02:09:37 AM »
Hello.
Please attach your CSV file
20
News and Announcements / Re: AbanteCart Version 1.4.1 is now released
« Last post by Basara 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
Pages: 1 [2] 3 4 ... 10

Powered by SMFPacks Social Login Mod