Show Posts


Messages - abolabo

Pages: [1] 2 3 ... 138
1
Support / Re: can u disabling reCAPTCHA manually through the database or php
« on: September 13, 2024, 06:54:00 AM »
try to remove recaptcha site keys fron phpMyAdmin
Code: [Select]
update settings SET `value` = '' WHERE `key` LIKE 'config_recaptcha_%';

2
Support / Re: can u disabling reCAPTCHA manually through the database or php
« on: September 12, 2024, 04:41:18 AM »
to disable reCaptcha you should clear it's site and secret keys in the admin settings (see tab General)

4
General Discussion / Re: Second level breadcrumb is removed in 1.4.0?
« on: September 10, 2024, 04:06:08 AM »
why does the second level breadcrumb is removed?

It's not on purpose. You just found a bug.

5
Support / Re: I want to sort shipping method options by price.
« on: July 29, 2024, 05:52:55 AM »
One shipping operator can offer different methods of delivery.
For example Fedex or UPS.
Usually shopping extension call their API and sorts response by price.
in the same time if you have a few enabled shipping extensions each of them can obtain their own list of methods.
Another words, methods grouping my brand and then shown as list ordered by sort_order (see extension settings page)


6
to solve just open file public_html/storefront/controller/pages/checkout/guest_step_1.php
find method _validate ( line 632)
You need to replace
Code: [Select]
        if ($data['country_id'] == 'FALSE') {
            $this->error['country'] = $this->language->get('error_country');
        }

        if ($data['zone_id'] == 'FALSE') {
            $this->error['zone'] = $this->language->get('error_zone');
        }

with this
Code: [Select]
       if (!$data['country_id'] || $data['country_id'] == 'FALSE') {
            $this->error['country'] = $this->language->get('error_country');
        }

        if (!$data['zone_id'] || $data['zone_id'] == 'FALSE') {
            $this->error['zone'] = $this->language->get('error_zone');
        }

7
The error log shows this:

2024-07-09 1:04:20 - Unknown Error:  AbanteCart core v.1.3.4 Class "mysqli" not found in <b>/home/stormsof/public_html/AbanteCart/core/database/amysqli.php</b> on line <b>45</b>
this error mean mysli php-extension does not installed on your host.
You can try to switch on another mysql driver. Just open public_html/system/config.php file and replace 'amysqli' with 'apdomysql'.
Or install mysqli driver on your host. See more details here https://www.php.net/manual/en/mysqli.installation.php

8
General Discussion / Re: When does preview layout will be impmented?
« on: July 10, 2024, 04:00:56 AM »
Hi core devs,

i found in the 1.4.0 code that there are preview layout code but it's not finished yet.

Are there estimation in which version of AbanteCart that it will implemented?

Thanks.

hi, what "preview layout code" do you mean?

9
Extension Support / Re: Cannot install extension - Paypal commerce
« on: June 17, 2024, 06:48:39 AM »
please check is file public_html/extensions/paypal_commerce/admin/model/extension/paypal_commerce.php
 present on your disk

10
Support / Re: Add to cart buttons not showing
« on: June 06, 2024, 03:37:44 AM »
Thank you for your reply, I took a look at the log, this is what was logged last

2024-06-04 16:02:09 - Unknown Error: AbanteCart core v.1.3.1 flock(): Argument #1 ($stream) must be of type resource, bool given in <b>/home/u346078515/domains/cjsequestrian.com/public_html/Store/core/cache/file.php</b> on line <b>270</b>

Any ideas?
permissions for cache directory and newly created files?

11
Shipping Modules / Re: Default UPS Extension
« on: May 07, 2024, 07:07:17 AM »
UPS released official API-documentation of their new API version.
We already created automatic generated php-sdk based on it.
Unfortunately UPS repository still unstable and very buggy that affecting on our SDK.
If you plan to develop your own extension you can include sdk into your project.

12
you should to compare your file with this
https://github.com/abantecart/abantecart-src/blob/1.4.0/public_html/extensions/default_authorizenet/main.php
see line #3
Code: [Select]
require_once DIR_EXT . 'default_authorizenet' . DS . 'vendor' . DS . '/autoload.php';i guess cause here.

Also check your directory https://github.com/abantecart/abantecart-src/tree/1.4.0/public_html/extensions/default_authorizenet/vendor

And change permission for file public_html/index.php to 644 (write-read-read) to avoid warnings

13
Support / Re: When creating an account the page remains blank
« on: April 04, 2024, 03:25:11 AM »
Hello, when creating an account, all the fields for registration are filled out and when I click to register, the page loads and remains blank and generates the following error in the registration

2024-04-01 23:46:10 - Unknown Error: AbanteCart core v.1.3.4 Call to undefined function Symfony\Component\Mailer\Transport\Smtp\Stream\proc_open() in <b>/home/electron/public_html /vendor/symfony/mailer/Transport/Smtp/Stream/ProcessStream.php</b> on line <b>41</b>



Looks like you have disabled function https://www.php.net/manual/en/function.proc-open.php
Please contact your hosting provider support for details.
I guess they are in paranoid mode and forbid all functions with "proc" inside the name.
You can check it via admin->system->settings->system->click on phpInfo() button at the heading. In the newly opened tab try to find "disable_functions" directive inside Core section.
if proc function in the list you can try deal with hosting provider. If they are reject your wish, you should to choose another mail transport, not smtp.
Actually the best approach to use inner server mailer (mail).

Also you can try to disable security_mod for your domain in the cPanel




14
Support / Re: When creating an account the page remains blank
« on: April 03, 2024, 03:31:06 AM »
hi,
is it your v1.3.4 after upgrade or it's a newly installed 1.3.4 ?

please check file public_html/core/init.php
these lines must be there

Code: [Select]
const DIR_VENDOR = DIR_ROOT . DS . 'vendor' . DS;

require DIR_VENDOR.'autoload.php';

15
Tips and Tricks / Re: Options for products
« on: March 13, 2024, 04:06:19 AM »
I want to make some alterations to some of the options offered in the product page setup, like the radio buttons, etc. But where, oh where are the codes for the options? In what section where the cart is installed?

please clarify what is the aim.

Pages: [1] 2 3 ... 138

Powered by SMFPacks Social Login Mod