-
Posts
3,128 -
Joined
-
Last visited
-
Days Won
490
Content Type
Profiles
Forums
Gallery
Downloads
Articles
Store
Blogs
Everything posted by datakick
-
Advanced Parameters > Performance > CCC > Keep JS and CSS files ?
-
In theme directory there are only theme specific template overrides, translations, etc. Module itself is stored inside /modules directory
-
Randomly getting logged out of admin backend
datakick replied to ukclearance's question in Technical help
Go to Administration > Preferences and disable Check the cookie's IP address settings. That will probably help -- it's possible you are behind some proxy, and your ip address changes. Even cloudflare can cause this -
mysql> select * from tb_image_type; +---------------+---------------------+-------+--------+----------+------------+---------------+-----------+--------+--------+ | id_image_type | name | width | height | products | categories | manufacturers | suppliers | scenes | stores | +---------------+---------------------+-------+--------+----------+------------+---------------+-----------+--------+--------+ | 19 | Niara_cart | 80 | 80 | 1 | 0 | 0 | 0 | 0 | 0 | | 20 | Niara_small | 98 | 98 | 1 | 0 | 1 | 1 | 0 | 0 | | 21 | Niara_medium | 125 | 125 | 1 | 1 | 1 | 1 | 0 | 1 | | 22 | Niara_home | 250 | 250 | 1 | 0 | 0 | 0 | 0 | 0 | | 23 | Niara_home_smaller | 218 | 218 | 1 | 0 | 0 | 0 | 0 | 0 | | 24 | Niara_home_smallest | 211 | 211 | 1 | 0 | 0 | 0 | 0 | 0 | | 25 | Niara_large | 458 | 458 | 1 | 0 | 1 | 1 | 0 | 0 | | 26 | Niara_thickbox | 800 | 800 | 1 | 0 | 0 | 0 | 0 | 0 | | 27 | Niara_category | 870 | 217 | 0 | 1 | 0 | 0 | 0 | 0 | | 28 | Niara_scene | 870 | 270 | 0 | 0 | 0 | 0 | 1 | 0 | | 29 | Niara_m_scene | 161 | 58 | 0 | 0 | 0 | 0 | 1 | 0 | +---------------+---------------------+-------+--------+----------+------------+---------------+-----------+--------+--------+ 11 rows in set (0.00 sec) Is this what you want?
-
First of all - you should update to bleeding edge, and install maxmindgeoip2 module that can handle new version of database. But back to your question - smarty variable geolocation_country is available only in restricted mode -- when tb blocked access to the store based on ip location. If user is not blocked, this variable is not populated. So you can't access it in any way. For testing purposes you can simply modify the frontcontrolelr and always populate the geolocation_country smarty variable.
-
you don't have installer or enabled zip php extension https://www.digitalocean.com/community/questions/php-7-0-ziparchive-library-is-missing-or-disabled
-
Is it tb error page, or web generic server error page? If it's tb error page, then enable debug mode, ale post here the root cause. If it's the server error page, look into server's error log.
-
Looks like execution flow goes through different code branch for different users. In the context of one user RockPos module was probably not loaded. PHP did not know/found the constant this module defines, and the code in override failed terribly. Let's blame RockPos module for this 🙂 All overrides should check if the module is enabled and loaded. If not, they should NOT do anything - they should fallback to overridden method. Since you are customer of RockPos please file an issue for this, and let them fix it. Meanwhile, you should figure out why one user has different context than other. I would guess this to be related to Customer Groups -- modules can be disabled per group, so check this settings. But of course, it can be different issues
-
When you enable the module (and overrides), does it fix the problem?
-
This looks like a remnant of RockPOS module. Are you using this module right now? If not, delete the overrides.
-
If you want to use php 7.4 please update to 1.1.x.
-
disable debug mode
-
Almost there 🙂 What I'm interested in is not response headers and cookies, but response content. Look into Preview or Response tab:
-
Please click to network tab, look up this failed request, and look into the response. There might be some helpful text. Also, enable debug mode
-
Did you look into javascript console? Are there any errors?
-
If there are no errors on javascript console or in server error log then there is not much to suggest. I can investigate for you, if you send me back office and ftp credentials.
-
Thirty Bees Randomly Assigning Free Shipping
datakick replied to lukewood's question in Technical help
I would go to V1.1.x 🙂 -
It looks like you might be right -- I just encountered the same problem on my demo server. Will investigate
-
Many merchants run on pretty good servers, so they were lucky enough to never experience this problem. But there are a lot of them that did, unfortunately. If you search for this error message on ps forum you will find countless threads dealing with this issue, such as this one: https://www.prestashop.com/forums/topic/633811-warning-your-php-configuration-limit/. Or another one here on thirtybees forum: https://forum.thirtybees.com/topic/2317-2317/solved-warning-your-php-configuration-limits-the-maximum-number-of-fields-allowed-in-a-form-1000-for-max_input_vars/ Thanks to the fix, thirtybees is in better shape than it was before. We used to have merchants reporting issues like "I can't use translation tool". Now we have requests like "I would like to save more translations strings at once". The first one was a bug, the later is the feature request. Hopefully we will be able to implement it soon 🙂
-
Obtaining an IP address from an abandoned cart
datakick replied to The Pellet Guy's question in Technical help
Or you can use my datakick data export and import module 🙂 Just a shameless plug -
Obtaining an IP address from an abandoned cart
datakick replied to The Pellet Guy's question in Technical help
If you have installed and enabled module 'Data mining for statistics' then IP address is already stored. The IP address is stored in tb_connections table. You can access it using this query: SELECT INET_NTOA(c.ip_address) FROM tb_connections c INNER JOIN tb_guest g ON (c.id_guest = g.id_guest) INNER JOIN tb_cart cc on (cc.id_guest = g.id_guest) WHERE cc.id_cart = <cart_id> -
Can you upload and install module zip file from your back office Modules page? That's quick test to check if your permissions are ok