-
Posts
1,147 -
Joined
-
Last visited
-
Days Won
97
Content Type
Profiles
Forums
Gallery
Downloads
Articles
Store
Blogs
Everything posted by the.rampage.rado
-
Call for votes for (or against) upgrading Smarty
the.rampage.rado replied to Traumflug's topic in English
For me supporting 7.1 is enough but if you want to present this CMS as more advanced and more modern than 1.6 then this have to be done. If you have few issues with the most used themes in the marketplaces I can't imagine that those issues can't be ironed out in few hours and then everybody can use the latest and greatest php with their current themes. I know that iqit is refusing support for Tb for now but I can't imagine they will stick to this opinion much longer if you gather community. And how you can get more users - it's important to support the newest versions of all parts of this platform. And why do you wait for 1.1.x to start removing legacy (before 1.6) code from the core? Also the full caching needs some fixes and more testing. And probably the most important part is trust in you - people should know that if they migrate their shops will have life ahead without need for custom migration to another system. I think that currently the trust is not very high as one of the first developers is not getting around and the fixes done in the recent versions are more cosmetic than bugfixes and improvements... -
You have emails in each theme also - they get used first.
-
Just use https so you can use http2 and enter once ot twice the full url in the bar and then the browser will keep it...
-
Is the pack quantities bug fixed in TB?
the.rampage.rado replied to the.rampage.rado's topic in Tips and Tricks
https://github.com/thirtybees/thirtybees/issues/558 -
https://github.com/thirtybees/thirtybees/issues/558 - I've made this issue because recently stumbled upon this issue... Please vote for it...
-
Recaptcha module - Confirmation Unknown message
the.rampage.rado replied to ukclearance's topic in No CAPTCHA reCAPTCHA
For me the test works but the contact form can be filled be not publishing the captcha. The other forms like login and admin login are working as normal. I had tons of russian spam and had to install another module. Probably this otherwise perfect one have to be checked for bugs. I can offer my shop if you want to see the issue i describe. -
Say hello to release 1.0.5!
the.rampage.rado replied to Traumflug's topic in Announcements about thirty bees
@mockob said in Say hello to release 1.0.5!: You are completely right @doclucas! I hope you will decide to stay on the project and participate with your skills, because developers are what the project needs most! With all my respect to all that participate with code, I think the project is going to die really soon without the main person behind it @mdekker The reason for the recent bugs is mainly because the developers currently committing code are not so familiar with the core and make some unintentional errors. And I think it is time for clear statement from @mdekker if he will continue supporting the project, because many are worried even if they don't say it aloud. I think he's very busy. He's still contributing in the modules of TB but I can imagine he's busy and thus not so active here and on the main repo. -
The difference between the mod and original ps version is the additional hook (over the products). It's working just fine for 2 of my stores. I don't know what features were put in the tb version of the module...
-
Say hello to release 1.0.5!
the.rampage.rado replied to Traumflug's topic in Announcements about thirty bees
When manually updating the update is always sucessful when you have uploaded the files through FTP. The same with the db queries - if the db admin is green you're fine with that query... ;) -
How we can push the css of TB - the system creates numerous css and js files which are cached and with unique ID and i belive they are user based. How we can push the css and js without turning off ccc?
-
Product page update when out of stock with full page cache
the.rampage.rado posted a question in Bug Reports
Just wanted to check if it's the same with all of you before putting an issue @ github. Does your product page update when the product goes out of stock when you have full page cache enabled for product page? Mine doesn't and it's frustrating. If this is the case is it easily fixable? Also - when I clear my cache in BO the full page cache is not deleted. I have to manually delete cachefs folder contents. A bug or not? -
Is the pack quantities bug fixed in TB?
the.rampage.rado replied to the.rampage.rado's topic in Tips and Tricks
@Traumflug - ok, i'll describe the test for my issue later this week and will post them here and in github so hopefully somebody who knows what's going on can check it out. -
<?php class ContactController extends ContactControllerCore { /* * module: nocaptcharecaptcha * date: 2018-07-06 22:39:10 * version: 1.0.2 */ public function postProcess() { if (version_compare(_PS_VERSION_, '1.7.0.0', '>=')) { return; } if (!Module::isEnabled('NoCaptchaRecaptcha') || !@filemtime(_PS_MODULE_DIR_.'nocaptcharecaptcha/nocaptcharecaptcha.php') ) { return parent::postProcess(); } require_once _PS_MODULE_DIR_.'nocaptcharecaptcha/nocaptcharecaptcha.php'; $recaptcha = new NoCaptchaRecaptcha(); if (Tools::isSubmit('submitMessage') && $recaptcha->needsCaptcha('contact', trim(Tools::getValue('from')))) { $recaptchalib = new NoCaptchaRecaptchaModule\RecaptchaLib(Configuration::get('NCRC_PRIVATE_KEY')); $resp = $recaptchalib->verifyResponse(Tools::getRemoteAddr(), Tools::getValue('g-recaptcha-response')); if ($resp == null || !($resp->success)) { if ($resp->error_codes[0] === 'invalid-input-secret') { $this->errors[] = Tools::displayError( Translate::getModuleTranslation( 'NoCaptchaRecaptcha', 'The reCAPTCHA secret key is invalid. Please contact the site administrator.', 'configure' ) ); } elseif ($resp->error_codes[0] === 'google-no-contact') { if (!Configuration::get('NCRC_GOOGLEIGNORE')) { $this->errors[] = Tools::displayError( Translate::getModuleTranslation( 'NoCaptchaRecaptcha', 'Unable to connect to Google in order to verify the captcha. Please check your server settings or contact your hosting provider.', 'configure' ) ); } } else { $this->errors[] = Tools::displayError( Translate::getModuleTranslation( 'NoCaptchaRecaptcha', 'Your captcha was wrong. Please try again.', 'configure' ) ); } $this->context->smarty->assign('authentification_error', $this->errors); return; } } return parent::postProcess(); } } This is in my override for ContactController. Obviously part of the module.
-
In PS we have a bug with pack quantities always showing 0 when the least stocked item in this pack has more than 0 in stock. Also I've read about other bugs where the stock of the pack is not reduced when the items are sold otherwise (in other packs or by single purchase). I've followed back on TB changelogs but I did not notice any references to this area. Are some bugs fixed? I need advanced stock program and I know that TB will be ideal in our case but I need to get this fixed as literally all products we sell will be marked as packs and the individual components will be marked as products of those packs.
-
I also don't receive emails for new orders. Please can you check what's wrong with the module? The test email is sent correctly (from Email settings), the module is configured as in PS but no email is sent. I'll try to restart and reinstall now and get back with more info. EDIT: no, uninstall didn't do the trick. The customer receives email but the merchant doesn't.
-
Speaking of TB email - did we removed the plain password from the emails?