Jump to content
thirty bees forum

datakick

Administrators
  • Posts

    3,036
  • Joined

  • Last visited

  • Days Won

    465

Everything posted by datakick

  1. Ohh, that's a bug. Fortunately it's nothing serious. It just means that there's no settings for full page cache hooks in the tb_configuration table. You can safely ignore this warning. If you have debug mode enabled, then it's probably hard to do, though. Note that you should never enable debug mode in production environment. To get rid of this warning completely, simply follow these steps: 1) go to Advanced Parameters > Performance, 2) find section Full Page Cache 3) turn on and off any one of the displayed hooks. This will create the missing setting option in configuration table, and the warning will no longer be in the log. Sorry for the trouble, folks
  2. @smorjkompaniet pm me your domain, and I'll restart your trial. Note that my module supports xml import only
  3. Hello everyone, I just wanted to advice anyone who is using Full Page Cache to turn this feature off. I just found very serious security bug in the code. Nobody should use this feature until it's resolved. Edit: There were many bug fixes in thirtybees 1.0.7. The security bug was fixed as well, but the whole functionality is still NOT usable
  4. Are you using community theme? I've tested it, and it works just fine there
  5. @janex - this can be really caused by many different things: misconfiguration of your server font actually missing on your server you can be using Media servers with incorrect Access-Control-Allow-Origin settings some css might override font family on icon-* css class and many more That's why I wrote start with javascript console in web browser. Is there any error in console, or in network tab? If there is, what it says? If not, then examine html element where the icon should be, and look what font-family it uses... I could tell you what's wrong, but I'd need access to your back office first
  6. Looks like font awesome is not loaded for some reason (Access-Control-Allow-Origin maybe?). Open your javascript console/network tab and look for errors there, that should help you understand where the problem is
  7. That's misconfiguration of your mysql db. I suggest you follow this recommendation
  8. This is a bug in 1.0.6 that's been fixed. Thirtybees (should) come with random_bytes polyfill, but this polyfill not part of 1.0.6. The only code that uses this random_bytes function is Rijndael encryption, and this is going away soon. There are alternative encryption methods, so the easier way to fix this is change to different encryption. Log into your database and go to the <PREFIX>_configuration table. Find a key called PS_CIPHER_ALGORITHM and set the value to 2
  9. @rubben1985 that's the thing with development, things that seems easy are usually the hardest one to implement :) There are really many areas that needs to be carefully adjusted - review criteria - it's not possible to use criteria for products - review lists - ensure that it's filtered by correct entity type. We don't want to mix different type of reviews together. This applies mainly for customer reviews page / all reviews page - email templates should be different / modified - there's no product title or image for shop review - rich snippets - store reviews needs different metadata than product reviews, otherwise google would be angry - review export needs adjustment - review import - and who knows what else :) But yeah, this feature is really needed, I get asked for this a lot.
  10. @the-rampage-rado: Looking forward to the custom 'stars' feature! I'm a bit reluctant with implementing this feature, because couple more features will not work with it correctly, or will require custom hacks. For example sizing, half-stars, etc... But I'll probably implement it anyway, there are quite a many people what want this. @rubben1985: Do you plan to include store review? It's in the backlog, but it's a huge feature. Also, I probably make it a bit more generic, because there are people who want to review other things as well. For example brands, sellers if they have marketplace, etc... I haven't decided yet, but given the amount of work associated with this feature, I'll probably make it part of a premium module only.
  11. Make sure you have routes defined for all languages.
  12. Version 1.0.20 - support for images I'm happy to announce that new version 1.0.20 has just been released. This version fixes few bugs, and brings one major new feature - support for images. Your customers can now attach images to their reviews: Other changes extracted css classes to allow popup window customization - issue #71 fixed multistore bug in all reviews page - issue #68 check that dom php extension is loaded and more...
  13. @b_otho said in Updating to 1.06 - Error with "Address::isDeleted": I just tried clearing APC cache through the module. Didn’t help. Please open file classes/Address.php and ensure that it contains method isDeleted, it should be somewhere around the line 385. ``` public static function isDeleted($idAddress) { $row = Db::getInstance(PSUSESQLSLAVE)->getRow( (new DbQuery()) ->select('a.deleted') ->from(bqSQL(Address::$definition['table']), 'a') ->where('id_address = '.(int) $idAddress) ); if (!isarray($row) || !isset($row['deleted'])) { return true; } return (bool) $row['deleted']; } ``` If the method is there (as it should, otherwise this file should be mentioned in Changed files list), then the issue really must be with the php cache.
  14. @b_otho said in Updating to 1.06 - Error with "Address::isDeleted": Dyou mean Advanced Parameters > Configuration Information? I cannot see that anything should be wrong. If there are no changed files listed than it should definitely work -- the only other explanation is that the php APC cache wasn't flushed, so it's still uses the original php file.
  15. @b_otho method Address::isDeleted was introduced in 1.0.4. Could you please verify that *all* files have been updated correctly - Simply open Configuration Information to see if there's any changed file. It is possible that updater could not update Address.php file, for example because of wrong owner or file permissions.
  16. @b_otho the sql issue is already fixed in newer version. You can either update, or apply this fix manually
  17. Work on this project has been temporarily suspended, I plan to return to it later this week.
  18. @doclucas the sheet is no longer accessible, could you please fix the sharing permissions:
  19. It is very strange that it happened only occasionally. The message from error log is still needed to figure out what went wrong, though. Could you please look into your server's error log and copy the error message here.
  20. Couple of times... meaning not always?
  21. You'll need to look into your server's error.log to see where the problem is. Then we can help
  22. do you really need unique attribute group for every product? I guess all that's necessary is some small javascript code to filter out colors that are not used by any combination
  23. thanks @Briljander. But I'm not helping all the time, just during coffee breaks :)
  24. The git repository is not always a valid module. Quite often some build script is required to compile module zip file from source code
  25. @exuraz I can't see column is_root_category in the screenshot. Please ensure that it has 1 for your Home category (id 2). If not, fix it.
×
×
  • Create New...