Show Posts


Messages - abolabo

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



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

4
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"?

5
General Discussion / Re: Group Pricing Display when Logged In
« on: April 14, 2025, 12:16:59 PM »
I would have to create thousands of products twice. I would rather edit a few lines of code and have it do what I want. I just don't know which lines of code control the price display while logged in.

I do appreciate you taking time to answer though. Thanks!
https://github.com/abantecart/abantecart-src/blob/master/public_html/storefront/model/catalog/product.php#L1560

6
General Discussion / Re: Group Pricing Display when Logged In
« on: April 14, 2025, 11:51:30 AM »
If you have two stores you should to have two variants of the same products with different prices.
See product form->stores. Chose only one.

7
General Discussion / Re: Group Pricing Display when Logged In
« on: April 14, 2025, 11:37:12 AM »
Coming back around to this again.

Could someone please point out what part of product_listing.tpl would need to be edited to get the correct group discount pricing to display on both the category page and the product page?

I know that I could make the price a special instead of a discount but that automatically puts them on the Specials page and shows the "Sale" text which I don't want.

Thanks!
You should no to edit tpl file in this case.
Is question only in Specials page?
What if remove links on it and use Featured block instead?
If you have a special price of product for group it's a "special". When you wish to show special product but say it's not a special product it sounds wierd

9
General Support / Re: Contact Us Form on v.1.4.1
« on: April 13, 2025, 08:35:56 AM »
try to remove all messages. i guess nofitication depends on repeating

10
Templates / Re: error log on V.1.4.1
« on: April 12, 2025, 09:37:23 AM »
fix is already in current development version 1.4.2.
Hope release will be soon.

11
General Support / Re: Contact Us Form on v.1.4.1
« on: April 12, 2025, 09:35:22 AM »
Your contactUs form works as expected.
I created new customer, changed store email to mine
and i got this email to another mailbox address.
See screenshot


12
General Support / Re: Contact Us Form on v.1.4.1
« on: April 11, 2025, 12:09:27 PM »
i just discovered that there is an option should be activated for getting notification on admin dashboard for the contact us form enquiry details.  still i need to know how to push the form enquiry to arrive to email inbox and without the unnecessary fields as well as the CAPTCHA and Google reCAPTCHA codes.

Fix with captcha here
https://github.com/abantecart/abantecart-src/blob/1.4.2/public_html/core/engine/form.php
https://github.com/abantecart/abantecart-src/blob/1.4.2/public_html/storefront/controller/pages/content/contact.php
Just replace files.
Regarding uploaded files. You should find them in admin->system->data->file uploads.


13
General Support / Re: Contact Us Form on v.1.4.1
« on: April 11, 2025, 11:42:56 AM »
yes, i can confirm that i got the email in my inbox as you can see in my attachment

check spam on mailbox side.

14
General Support / Re: Contact Us Form on v.1.4.1
« on: April 11, 2025, 10:13:00 AM »
Looks like trouble in gmail that you use as mailer.
Can you try to set your sender email (abcotex.llc@***.com) as store email (instead info@***.com) ?
Looks like google don't like when sender email address not equal real sender account


after replacing the files codes you advised i found that the form is working but all emails forms appearing only in the sender (sent box) only and not appearing in the inbox or admin messages notifications as also it is printing all form's fields the required and not required fields.

1. Try to create and send new email from you to yourself (email loop) via email page (gmail etc) and let us know if you got this email in the inbox.

2. Regarding uploaded files. There are two limitations, first in on php.ini side. see post_max_size, upload_max_size.
So if you plan to receive files via contactUs form you should to test with some small images and then increase values of php-directives.
Second limitation related to mailer. Usually mail server do not send emails greater than 7Mb.

Regarding other data.
I'll test this part of code a bit later and let you know

15
Template Support / Re: Blurb text on V.1.4.1
« on: April 11, 2025, 05:26:36 AM »
blurb cannot be html. It's just a short description of product


we cannot keep the html version anyway with a fix for this issue ?

what the aim of html-version of blurb?

Pages: [1] 2 3 ... 144

Powered by SMFPacks Social Login Mod