-
Posts
2,011 -
Joined
-
Last visited
-
Days Won
168
Everything posted by wakabayashi
-
Warning: cloudflare enabled Speculation rules API
wakabayashi replied to datakick's topic in English
Normal customers can't call backoffice controller. But it doesn't necessairly mean, that you don't have issues on the FO. If you are using cloudflare, I would just deactivate it for now. I have done it and everything works fine again. -
Warning: cloudflare enabled Speculation rules API
wakabayashi replied to datakick's topic in English
@datakick Thanks for this post!! I saw some strange setting a few days ago in cloudflare. It's called "Speed Brain". Is this the setting you are talking about? Or where is the exact setting you are talking about? Oh that does maybe exaplain, why some of my customer see the "This cart was already used" error. I have the feeling that the request is sent two times. And now it sounds very likely that my own code sends it automatically by a "fake click" and the cloudflare system could do it too. To me this feature sounds like complete bullshit. It's way too risky. -
I have just done this merge 3 into 1 thing. Seems to work fine βΊοΈ But be careful: this is advanced stuff. It's not very hard, but you need to know, what you are doing... I noticed, that stock management is a bit tricky, if you used "share_stock" before π«£ IMO what you have to do in stock_available table: set id_shoup_group = 0 set id_shop = ID_OF_YOUR_SHOP (note: this can differ from 1) Additional Edit: you should also check ps_configuration table similair to stock_available table
-
Dingedi vs PrestaHero modules (for translation and custom ChatGPT prompts)
wakabayashi replied to 30knees's topic in Modules
I have my doubts π Talking about "many"... I don't know how many merchants here are interested in something like this. We had once this topic: -
Dingedi vs PrestaHero modules (for translation and custom ChatGPT prompts)
wakabayashi replied to 30knees's topic in Modules
I don't have any experience with this modules, but I am interested in the topic too. I am not mainly interested in the translation part, but in generating texts like meta title, meta description... IMO it's important to note that Prestahero is only compatible with PS 1.7-8. It's very very unlikely that you even can use this module with tb. -
I guess the question is more, if this should be core stuff or a module. A lot of stores don't need this feature.
-
How easy would it be to implement Cloudflare Turnstile free Captcha?
wakabayashi replied to ukclearance's topic in Modules
I should update this module. Atm I just don't find enough time. Hopefully I can do it next weeks. In general this entry is not all problematic. -
Remove part of breadcrumb on product page
wakabayashi replied to MichaelEZ's question in Technical help
Sounds clever π π -
Hm solche Dinge sind immer etwas komplex. Sind das die einzigen Produkte, die du verkaufst? Falls du nicht hunderte bzw. tausende andere Produkte hast, wΓΌrde ich nach einer LΓΆsung streben mit mehr Produkten und weniger Varianten/Optionen.
-
Updating from 1.5.1 to Bleeding Edge Breaks Product Images
wakabayashi replied to Rhapsody's question in Updating thirty bees
Pretty sure, otherwise all links would be broken or not? -
Updating from 1.5.1 to Bleeding Edge Breaks Product Images
wakabayashi replied to Rhapsody's question in Updating thirty bees
Yeah, this is kind of logical. The problem is not the source files or the thumbnails. It's the rewrite. -
Updating from 1.5.1 to Bleeding Edge Breaks Product Images
wakabayashi replied to Rhapsody's question in Updating thirty bees
Then I would bet, that your htaccess or nginx configuration is wrong. As the product images changed the url path. I made this to have a clean structure in urls. My nginx looks like this: # Rewriting for images pretty url location ~* \.(eot|gif|ico|jpg|jpeg|otf|pdf|png|svg|swf|ttf|woff|webp)$ { rewrite ^/categories/([0-9]+)/([^\s/]+)\.webp$ /img/c/$1.webp break; rewrite ^/categories/([0-9]+)-([^\s/]+)/([^\s/]+)\.webp$ /img/c/$1-$2.webp break; rewrite ^/categoriesthumb/([0-9]+)/([^\s/]+)\.webp$ /img/c/thumb/$1.webp break; rewrite ^/categoriesthumb/([0-9]+)-([^\s/]+)/([^\s/]+)\.webp$ /img/c/thumb/$1-$2.webp break; rewrite ^/manufacturers/([0-9]+)/([^\s/]+)\.webp$ /img/m/$1.webp break; rewrite ^/manufacturers/([0-9]+)-([^\s/]+)/([^\s/]+)\.webp$ /img/m/$1-$2.webp break; rewrite ^/scenes/([0-9]+)/([^\s/]+)\.webp$ /img/scenes/$1.webp break; rewrite ^/scenes/([0-9]+)-([^\s/]+)/([^\s/]+)\.webp$ /img/scenes/$1-$2.webp break; rewrite ^/scenesthumb/([0-9]+)/([^\s/]+)\.webp$ /img/scenes/thumbs/$1.webp break; rewrite ^/scenesthumb/([0-9]+)-([^\s/]+)/([^\s/]+)\.webp$ /img/scenes/thumbs/$1-$2.webp break; rewrite ^/stores/([0-9]+)/([^\s/]+)\.webp$ /img/st/$1.webp break; rewrite ^/stores/([0-9]+)-([^\s/]+)/([^\s/]+)\.webp$ /img/st/$1-$2.webp break; rewrite ^/suppliers/([0-9]+)/([^\s/]+)\.webp$ /img/su/$1.webp break; rewrite ^/suppliers/([0-9]+)-([^\s/]+)/([^\s/]+)\.webp$ /img/su/$1-$2.webp break; rewrite ^/products/([0-9])(\-[_a-zA-Z0-9-]*)?(-[0-9]+)?/.+\.webp$ /img/p/$1/$1$2$3.webp break; rewrite ^/products/([0-9])([0-9])(\-[_a-zA-Z0-9-]*)?(-[0-9]+)?/.+\.webp$ /img/p/$1/$2/$1$2$3$4.webp break; rewrite ^/products/([0-9])([0-9])([0-9])(\-[_a-zA-Z0-9-]*)?(-[0-9]+)?/.+\.webp$ /img/p/$1/$2/$3/$1$2$3$4$5.webp break; rewrite ^/products/([0-9])([0-9])([0-9])([0-9])(\-[_a-zA-Z0-9-]*)?(-[0-9]+)?/.+\.webp$ /img/p/$1/$2/$3/$4/$1$2$3$4$5$6.webp break; rewrite ^/products/([0-9])([0-9])([0-9])([0-9])([0-9])(\-[_a-zA-Z0-9-]*)?(-[0-9]+)?/.+\.webp$ /img/p/$1/$2/$3/$4/$5/$1$2$3$4$5$6$7.webp break; rewrite ^/products/([0-9])([0-9])([0-9])([0-9])([0-9])([0-9])(\-[_a-zA-Z0-9-]*)?(-[0-9]+)?/.+\.webp$ /img/p/$1/$2/$3/$4/$5/$6/$1$2$3$4$5$6$7$8.webp break; rewrite ^/products/([0-9])([0-9])([0-9])([0-9])([0-9])([0-9])([0-9])(\-[_a-zA-Z0-9-]*)?(-[0-9]+)?/.+\.webp$ /img/p/$1/$2/$3/$4/$5/$6/$7/$1$2$3$4$5$6$7$8$9.webp break; rewrite ^/products/([0-9])([0-9])([0-9])([0-9])([0-9])([0-9])([0-9])([0-9])(\-[_a-zA-Z0-9-]*)?(-[0-9]+)?/.+\.webp$ /img/p/$1/$2/$3/$4/$5/$6/$7/$8/$1$2$3$4$5$6$7$8$9$10.webp break; allow all; try_files $uri $uri/ /index.php?$args; } -
Updating from 1.5.1 to Bleeding Edge Breaks Product Images
wakabayashi replied to Rhapsody's question in Updating thirty bees
https://crew-mgr.com/shop/ is your shop, right? I really don't know, but these images are just loading normally for me!? π» Edit: or is this your live version and you have another version? -
While this is very stressful, I would still first try to find out, where the security hole is. Otherwise they might be around soon again.
-
Updating from 1.5.1 to Bleeding Edge Breaks Product Images
wakabayashi replied to Rhapsody's question in Updating thirty bees
-
Updating from 1.5.1 to Bleeding Edge Breaks Product Images
wakabayashi replied to Rhapsody's question in Updating thirty bees
-
Updating from 1.5.1 to Bleeding Edge Breaks Product Images
wakabayashi replied to Rhapsody's question in Updating thirty bees
I am not totally sure, how the update works technically. But have you done the DB updates as well? π€ -
Thanks for your work, guys! Still very happy to use thirty bees. Obviously I support the project with the monthly subscription and with paid support hours. π I hope, I can find some time for some useful PR on github β²οΈ But I am very busy with my own work, so atm the financial support is easier π€
-
ThirtyBees 1.5 OFFICIAL is here!
wakabayashi replied to the.rampage.rado's topic in Announcements about thirty bees
I basically click the button: Sometimes I seem to be logged in. Sometimes not. π€ About the routing/redirect. I am not so sure. My nginx settings don't contain anything special with "connect", nor do I have modules that are looking for this. At least thats my feeling. -
ThirtyBees 1.5 OFFICIAL is here!
wakabayashi replied to the.rampage.rado's topic in Announcements about thirty bees
Is this https://accounts.thirtybees.com/connect broken? I just get: It's correct to login with forum credentials, right? Cause the credentials form the store, don't work... -
When will you update the list? π BTW: I am finally back on bleeding edge π€©
-
Display errors on website pages, header, cart and images
wakabayashi replied to WayneB's question in Technical help
What kind of errors do you get? When I open your link, it seems to work fine. Maybe your webhoster forced you to update the php version and this caused some issues. This is just my random guess, when somebody claims "I haven't done anything at all". If you need help, I normally would buy offical support hours: https://store.thirtybees.com/. I buy hours there too and I am a coder myself π -
Uh two different installations π₯΅ I think it would be possible, but much more complicated.