Show Posts


Messages - abolabo

Pages: [1] 2 3 ... 138
1
General Discussion / Re: Problem with the Add to Cart button
« on: October 18, 2024, 05:12:05 AM »
Here is the link allprintdeco.com Thanks

please check this solution
https://github.com/abantecart/abantecart-src/commit/5fda88727c4376097615eb0bd3cc7c3901eafdff
Just change your file via CPanel filemanager manually or replace with this file

2
General Support / Re: getting .filename.css loaded automatically
« on: October 08, 2024, 05:14:54 AM »
Hi,
looks like host have some vulnerability that allows to write css file into your folder.
Try to delete it (or even better replace vendor directory with our from release) and set permissions for "vendor" to 555 recursively.  (only for read and execute)
Also check file .htaccess inside vendor dir.
It must contains
Code: [Select]
Order Deny,Allow
Deny from all
(No one file cannot be accessible from web)

Please, let us know about results

3
General Support / Re: Contact Form
« on: October 07, 2024, 05:04:58 AM »
you have two ways:
 1. change text via hook

Code: [Select]
    public function onControllerPagesContentContact_UpdateData()
    {
        $that = $this->baseObject;
        $that->view->assign('text_address', 'Some your title');
        $that->view->assign('store', '');
        $that->view->assign('address', 'You new Address here');
    }

2. change storefront/view/****/template/pages/content/contact.tpl file (if you have specific template). NOTE: in case when you use "novator" or "default" template your changes will be overridden by future upgrades of core.

4
AbanteCart version?

5
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_%';

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

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

9
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)


10
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');
        }

11
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

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

13
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

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

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

Pages: [1] 2 3 ... 138

Powered by SMFPacks Social Login Mod