Show Posts


Messages - abolabo

Pages: [1] 2 3 ... 137
1
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');
        }

2
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

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

4
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

5
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?

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

7
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

8
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




9
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';

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

11
Also you can try with enabled browser developer tools. See Console tab for js-errors.
Please let us know about result.

12
Unknown Error: AbanteCart core v.1.3.3 Unsupported operand types: string + float in <b>/home/loveyou7petsuper/public_html/core/lib/tax.php</b> on line <b>228</b>

you can try to downgrade from php8 to php7.4 to solve an issue.

13
Development Help Needed / Re: Change PayPal message
« on: February 23, 2024, 03:45:04 AM »
Probably you should to hook controller public_html/extensions/fast_checkout/storefront/controller/responses/checkout/pay.php  method _process_success
You can write _updateData hook and use $that->session->data['processed_order_id'] for order recognizing

14
Extension Support / Re: no BS5 clone available dev tools
« on: February 08, 2024, 03:44:55 AM »
We did not realized this feature in the devtools yet. Will be soon. To clone extension template just copy directory "bootstrap5" to "your_new_template_text_id" and rename all files and subdirectories  "bootstrap5" to "your_new_template_text_id" (usually it's a language subdirectory in admin and sf) Also open layout.xml file from template root directory and replace all "bootstrap5"  words with "your_new_template_text_id" (BS5 too)  After then you can install your new template.

Pages: [1] 2 3 ... 137

Powered by SMFPacks Social Login Mod