Show Posts


Messages - abolabo

Pages: [1] 2 3 ... 144
1
Support / Re: multiple add to cart and buy it now buttons
« on: Today at 04:25:03 AM »
do you have fast_checkout extension installed?

2
Installation and Configuration / Re: Various Error messages
« on: May 19, 2025, 02:47:20 PM »
you should to run sql queries manually via phpMyAdmin.
Regarding error i guess you should to start since line 1091
https://github.com/abantecart/abantecart-src/blob/master/public_html/install/abantecart_database_upgrade.sql#L1091

Do not forget to replace table prefix with yours before

3
General Support / Re: SQL error when trying to upgrade to 1.4.2.
« on: May 13, 2025, 04:18:39 AM »
if index does not exists just run this sql and start upgrade process again.

Code: [Select]
CREATE INDEX `ac_lang_definition_idx` ON `ac_language_definitions` (`language_value`(500) ASC);
Do not forget replace ac_ prefix in the names with yours before.

4
Extension Support / Re: Add Venmo to Paypal extension
« on: May 09, 2025, 05:28:30 AM »
Paypal Commerce extension do not have a management of your Paypal buttons on checkout form. These buttons loaded from their API, it's a third-party code.
So you should to ask their support team hot to enable venmo button inside your merchant account.

5
General Support / Re: Not all 1.4.2 tables are changed to INNODB
« on: May 09, 2025, 05:16:48 AM »
Hi Core Devs,

I've noticed that the stripe_customers, stripe_orders, and task_steps tables were not converted to the InnoDB engine during the upgrade process.

Was this intentional?

not critical, please ignore

6
Templates / Re: Developer Recommendations
« on: May 06, 2025, 09:31:18 AM »
probably you don't need to clone template.
You can try our new Novator extender extension to make css overrides

7
Upgrade / Re: upgrading from V.1.4.1 to V. 1.4.2
« on: May 06, 2025, 03:41:46 AM »
I am also working through problems with upgrade (1.4.2), permissions, as well as ftp unable to log on etc. Abantecart needs to create a better system for upgrading through hosting sites (A2webhosting) if I find anything substantial I will post again....in the mean-time I am also stuck in the ditch....

You see all these permissions "issues" because of security reason. AbanteCart thinks how to forbid injections from other hosting providers accounts and other worms.
If we made easy upgrade this mean weak defense. What do you prefer, easy upgrade or weak defense?
Please provide how do you see upgrade process. We'll try to make it better

8
Upgrade / Re: upgrading from V.1.4.1 to V. 1.4.2
« on: May 06, 2025, 03:32:02 AM »
Hello,

I tired to upgrading from V.1.4.1 to V. 1.4.2 but i couldn't and got next error log and screenshot.


2025-05-02 19:54:07 - Unknown Error: AbanteCart core v.1.4.1 SQL-ERROR: "array (
'error_text' => 'Can\'t DROP INDEX `fuw2_lang_definition_idx`; check that it exists',
'errno' => 1091,
)" in /core/lib/package_manager.php on line 832

What shall I do in my case?

this index must be presents in your language_definition table.
See 1.4.1 install.sql script, line 983 https://github.com/abantecart/abantecart-src/blob/1.4.1/public_html/install/abantecart_database.sql#L983

To solve just create it manually via phpMyAdmin and run upgrade again

9
General Discussion / Re: AbanteCart v1.4.2 suppliers
« on: May 02, 2025, 03:31:01 AM »
hi,
it's a db skeleton for extensions

10
Security / Re: Permissions Warning Messages
« on: May 01, 2025, 12:55:01 PM »
Sorry if I'm missing something but I have permissions set properly according to that article.

php files set to 644
folders set to 755

Should I just turn off message notifications? Or is there actually something incorrect about my permission settings?

try to set 444 for php files

12
General Support / Re: Email error
« on: April 18, 2025, 06:28:42 AM »
You should to ask your hosting provider why they disabled function proc_open() on your host.  Some hosting providers do that by security reasons.
Or ask them how to enable it via cPanel.
Also you can try to setup dsn inside your system/config.php file and change mailer setting on admin-side to "take from config"

Code: [Select]
// details about allowed DSN settings  https://symfony.com/doc/6.0/mailer.html#transport-setup
const MAILER = [
    //'dsn' => null,
    // OR
    'protocol' => 'smtp', // or ses+smtp, gmail+smtp, mandrill+smtp, mailgun+smtp, mailjet+smtp, postmark+smtp, sendgrid+smtp, sendinblue+smtp, ohmysmtp+smtp
    //we use "username" also as ID, KEY, API_TOKEN, ACCESS_KEY
    'username' => 'merchant@yourdomain.com',
    'password' => '****super-secret-password****',
    'host'     => 'your-hostname',
    'port'     => 465 //or 587 etc
];



14
General Support / Re: Email error
« on: April 16, 2025, 02:52:19 AM »
disable_functions   exec,passthru,shell_exec,system   exec,passthru,shell_exec,system
sendmail_from   no value   no value
sendmail_path   /usr/sbin/sendmail -t -i   /usr/sbin/sendmail -t -i

The setting for mailer is inner mailer


so wierd. I cannot to replicate this bug on my host with the same settings.
Can you help me with debugging?
Please replace your file public_html/core/lib/mail.php
with attached.  ( added trace in the error message ).
Then replicate the error and post error message here.
Thank you.

15
General Support / Re: Email error
« on: April 14, 2025, 04:31:45 PM »
Hello,

My customers are not getting their order summary email after purchasing from my website. Here are the logs from my server:

2025-04-14 16:19:42 - AMail. transport: Symfony\Component\Mailer\Transport\SendmailTransport: Call to undefined function Symfony\Component\Mailer\Transport\Smtp\Stream\proc_open()
2025-04-14 16:28:34 - AMail. transport: Symfony\Component\Mailer\Transport\SendmailTransport: Call to undefined function Symfony\Component\Mailer\Transport\Smtp\Stream\proc_open()
2025-04-14 16:28:35 - AMail. transport: Symfony\Component\Mailer\Transport\SendmailTransport: Call to undefined function Symfony\Component\Mailer\Transport\Smtp\Stream\proc_open()

Email functionality was working after upgrading Abantecart to v1.4.1 but today is when we noticed the errors.

please open admin->system->settings->system -> button phpinfo() at the heading,
then find directives disable_functions and sendmail_***
Please post them here with values.

+ what settings of mailer do you have, "Inner mailer", "smtp" or "config"?

Pages: [1] 2 3 ... 144

Powered by SMFPacks Social Login Mod