Show Posts


Messages - abolabo

Pages: 1 2 [3] 4 5 ... 146
31
General Discussion / Re: AbanteCart v1.4.2 suppliers
« on: May 02, 2025, 03:31:01 AM »
hi,
it's a db skeleton for extensions

32
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

34
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
];



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

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

38
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

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

40
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

42
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

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

44
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


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


Pages: 1 2 [3] 4 5 ... 146

Powered by SMFPacks Social Login Mod