1
How-to questions / Re: SALE
« on: Today at 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 SALEHello. Please provide a screenshot
I have made a clean install and tried to rename SALE in the english language and it doesnt work, still continues with word SALEHello. Please provide a screenshot
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.
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 ?Hello.
Thank You,
<?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);
}
*/6 * * * * /usr/bin/php /home/public_html/clean_cache.php >/dev/null 2>&1
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)
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.
Where do I set these permissions?Hello.
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.
what if i want to create my own extension and upload it to my server? is that working on AbanteCart ? more details in this case please