Show Posts


Messages - abolabo

Pages: 1 ... 3 4 [5] 6 7 ... 137
61
General Support / Re: Can't add menu item in admin
« on: April 07, 2022, 05:56:33 AM »
i guess issue related to php 8.1.
You should to use php7.4  for abantecart v1.3.2.
Or use our current development version 1.3.3

62
General Support / Re: How to remove quantity arrows
« on: March 15, 2022, 04:31:19 AM »
To solve you can try to replace tpl-file of product page with this

63
General Support / Re: Getting value of 'call_to_order' on product page
« on: March 14, 2022, 01:53:45 AM »
if you have right array in controller, but not in tpl that means you have an some extension which override view variable.
Easiest way to check  - just comment row with hk_UpdateData() at the end of controller method and see what you got in the tpl

64
Support / Re: How to pay for publishing free products?
« on: February 23, 2022, 10:58:17 AM »
I have added a free product, what payment method can I enable to support 0 yuan purchase? I asked paypal and they said the price of the item must be 0.01. But what I need is 0 yuan, what should I do? thanks!

please describe your free product.
Is it physical?
is shipping required?
Tax rate?

65
please try to edit file core/lib/mail.php

Just replace
Code: [Select]
$header['From'] = '=?UTF-8?B?'.base64_encode($this->sender).'?='.'<'.$this->from.'>';with this
Code: [Select]
$header['From'] = (preg_match('/[^\x20-\x7f]/', $this->sender)  ? "=?UTF-8?B?". base64_encode($this->sender) ."?=" : $this->sender ) ." <".$this->from.">";
and let us know

66
General Support / Re: changing default on length and weight
« on: February 14, 2022, 05:05:05 AM »
Thank you for bug-report
Solution goes to 1.3.3

More details here

67
Support / Re: PHP 8.1 compatibility
« on: January 28, 2022, 07:04:47 AM »


php8 supports this function.
You can check if this function presents in the disable_functions directive inside phpinfo() output (see admin->system->settings->system->button PHPINFO)

On php 8.0 impossible to access  (admin->system->settings->system->button PHPINFO), is there any other way to check if that function included or not ??

looks like phpinfo() forbidden too.
Ask techsupport of provider about their paranoid mode :-)

68
Support / Re: PHP 8.1 compatibility
« on: January 27, 2022, 07:06:52 AM »
Hello.
You can check the AbanteCart error log to find out.
It can be some 3rd party extension or your modifications

Hello,

According to AbanteCart error log recordes it is related to safe_mode:

in my php.ini my safe_mode is Off and on cPanel it was enabled, I tried many methods on cPanel and php.ini but no positive results.


the error log details as here;
2022-01-27 10:22:21 - Unknown Error: AbanteCart core v.1.3.2 Call to undefined function set_time_limit() in <b>/public_html/admin/controller/responses/common/resource_library.php</b> on line <b>22</b>

I turned Off ModSecurity from cPanel and php.ini and Enabled them in both then cleaned the website and browser cache but nothing did changed.


What is the solution please?

Thank you...

php8 supports this function.
You can check if this function presents in the disable_functions directive inside phpinfo() output (see admin->system->settings->system->button PHPINFO)

69
General Discussion / Re: NIcer Mobile MAin Menu View
« on: January 26, 2022, 05:23:47 AM »

you can turn on mobile view via developer console and see what styles applies.
All that you need you can find in @media section of style.css file

70
Support / Re: Since ~6 month blank page after admin login
« on: January 23, 2022, 11:16:52 AM »
Code: [Select]
Note:
AC version 1.2.13
MySQL version 8.0.22
PHP version (tested) 7.1, 7.2, 7.3 and 7.4 - same result

you have a 1.2.13 version which DO NOT SUPPORT php greater than 5.6.
1.2.16 supports 7.1
1.3.0 supports 8.0

You should to upgrade your abantecart  under php5.6 to version 1.2.16. Then switch to php7.4 and upgrade cart to latest 1.3.2 . In that case you can switch to  php8.0

71
Support / Re: Since ~6 month blank page after admin login
« on: January 23, 2022, 06:20:21 AM »
Looks like your database inner time differ than server time

you can try run query
Code: [Select]
select now();
and  compare it with server time.

Anyway, your issue i not a php-code problem.

If your host have a php mysql-dirver your can switch cart from "pdo" driver to "amysqli" (see system/config.php, DB_DRIVER constant)

72
unfortunately AbanteCart do not have this feature out of box. To solve you should to create your own hook to regulate language based on domain

73

Currently using version1.3.1

please try to replace file core/lib/mail.php with file from 1.3.2 version

74
Extension Support / Re: How do I fix 403 error in text banner manager?
« on: December 27, 2021, 04:01:11 PM »
looks like you have a permission issue with "extensions" directory.
Can you post errors from error.log file?

75
to solve you should to write a hooks for form and validation.
Changing of core code not recommended. These changes will be overridden by future upgrade process.
You can clone your current template via our developer tools extension and add hooks for form there.

Pages: 1 ... 3 4 [5] 6 7 ... 137

Powered by SMFPacks Social Login Mod