News:

AbanteCart v1.4.4 is released.

Main Menu
support

Menu

Show posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

Show posts Menu

Messages - Basara

#1
Hello.
Yes, it's possible to add a "last updated" timestamp column to the product grid in administration, but it requires code changes. There isn't a built‑in setting or configuration option for this.
#2
Built-in Features / Re: Import PDF
August 05, 2026, 06:04:55 AM
Quote from: timlight10 on August 04, 2026, 12:26:26 PMChecking on development status of this feature.
Thank you for following up, timlight10.
The requested feature has already been in work, and you can see the commit here: GitHub Commit.
At the moment, the changes are still undergoing testing. We discovered a few issues during review, and we want to ensure they are fully resolved before releasing the code to all. Please allow us a bit more time to finalize and polish the implementation.

We truly appreciate your support and patience
#4
Quote from: timlight10 on July 31, 2026, 08:58:02 AMAwesome, is there an official feature request channel somewhere I can post this for v1.4.5?
Yes, there are a few.
New Features Sposorship
New Features Discussion
Idea Polls
#5
Hello.
Yes, this is technically possible. AbanteCart already stores the product's last-modified date and time, and standard product imports update this value, so no database changes are needed. A code change or extension would be required to display it as column in the Products grid.
#6
Hello,
By default, the product list in the admin panel is sorted so that the most recently edited items appear at the top.
#7
Hello.
Please run this SQL script in phpMyAdmin or your preferred database tool. Be sure to replace the database prefix with your own before executing it.
SELECT
    p.product_id,
    p.model,
    p.status,
    pd.name
FROM `<DB_PREFIX>products` AS p
LEFT JOIN `<DB_PREFIX>product_descriptions` AS pd
    ON pd.product_id = p.product_id
    AND pd.language_id = 1
WHERE NOT EXISTS (
    SELECT 1
    FROM `<DB_PREFIX>products_to_categories` AS p2c
    WHERE p2c.product_id = p.product_id
)
ORDER BY p.product_id;
#8
Quote from: shift838 on July 29, 2026, 10:53:54 AMI am running version 1.4.0, the payment method is PayPal and shipping method is USPS.
Hello.
Please upgrade to version 1.4.4, as this issue was likely resolved some time ago. Make sure to create a backup before proceeding with the upgrade.
#9
Hello
What version of AbanteCart are you running? Also, what payment and shipping methods were used on the orders that trigger this error?
#10
General Support / Re: Abantecart Ver. 1.4.3 errors
July 27, 2026, 06:15:29 AM
Hello,

The upgrade.sql file is the correct one. What error messages are you getting?
#11
General Support / Re: Digital Download
July 27, 2026, 06:12:56 AM
Hello.
You will need to add the download file under Products Files for the product. After adding it, click the Push button so that customers with existing eligible orders can also see and download the file.
https://abantecart.atlassian.net/wiki/spaces/AD/pages/29131023/Sell+Digital+Products

You cannot simply upload the file by FTP and have AbanteCart automatically recognize it as a product download. However, there is a third-party extension that may help with it https://marketplace.abantecart.com/auto_downloads
#12
General Support / Re: Abantecart Ver. 1.4.3 errors
July 23, 2026, 07:54:10 AM
Hello, 
The upgrade sql file is available once you unarchive the upgrade package. You can download the package from the GitHub release page: https://github.com/abantecart/abantecart-src/releases
Please ensure you update the database prefix to match your configuration.
#13
Hello,

Could you first confirm the version? You wrote AbanteCart 1.1.4. Did you perhaps mean 1.4.4?

To help diagnose the issue, could you also provide a bit more information?

Please paste the latest entries from system/logs/error.log (or the latest log file under system/logs/).
Which Windows version are you using?
Which XAMPP version are you running?
Is your XAMPP using Apache or Nginx as the web server?

The error log and these environment details should help identify the problem.
#14
Built-in Features / Re: Import PDF
July 22, 2026, 09:20:58 AM
Thank you for the suggestion and for your willingness to support the development of AbanteCart.

This is certainly something we could consider adding. A donation of $300 USD or more would help prioritize and accelerate the development process. With that level of support, our developer should be able to complete the feature in approximately one business week, assuming no unexpected technical issues arise.
#15
Hello. Usually, when you delete a product, AbanteCart also removes the images assigned to that product.
You can clear all AbanteCart caches to remove the generated thumbnails, which may delete also hundreds or thousands of cached tmp files. The thumbnails will be generated again automatically only when they are requested.

The resources directory contains the original uploaded files, so it should not be deleted or cleared manually.

Forum Rules Code of conduct
AbanteCart.com 2010 -