Jump to content
thirty bees forum

bhtoys

Members
  • Posts

    242
  • Joined

  • Last visited

  • Days Won

    4

Everything posted by bhtoys

  1. Make that, 83.73% now... I think I'm good for at least a year now.
  2. I've cleared out some non-customers and shit like that. 87.28% looks like the final amount. I'm happy with that, I shouldn't have to worry about it for awhile now. Thanks!
  3. Maybe it takes awhile to register. I'm now at 87% of capacity...
  4. That did nothing but take money from my wallet. No images removed. NO drop in the inodes count.
  5. I assumed (like others I've used), that the main zip was what I had to upload. Just did this one now. Will report back.
  6. *sigh* I bought it, downloaded it, uploaded it, and now it doesn't show. So, I did it two more times. Nothing. I swear ThirtyBees hates me or something, everything is a damn challenge.
  7. They've had this in place for years. I've been with them 8 years and it's because of this that I'm at a limit.
  8. So apparently I'm running out inodes (sp?) on my server. Is there a way to remove old images from products that I've since removed from my site? Like, easier than randomly clicking thousands of files to find out where the images are? I assumed that when I deleted a product, the image would go with it, but that's not the case. I'm faced with a $70 increase if I don't get it lower. Currently at 92% of 300,000
  9. Well, that didn't work. Source file: modules/blockadvertising/blockadvertising.php 198: } 199: } 200: 201: // If the link is not set, then delete it in order to use the next default value (either the global value or the group value) 202: if ($link = Tools::getValue('adv_link')) { 203: Configuration::updateValue('BLOCKADVERT_LINK', $link); 204: } elseif (Shop::getContext() == Shop::CONTEXT_SHOP || Shop::getContext() == Shop::CONTEXT_GROUP) { 205: Configuration::deleteFromContext('BLOCKADVERT_LINK'); 206: } 207: 208: // If the title is not set, then delete it in order to use the next default value (either the global value or the group value) 209: if ($title = Tools::getValue('adv_title')) { 210: Configuration::updateValue('BLOCKADVERT_TITLE', $title); 211: } elseif (Shop::getContext() == Shop::CONTEXT_SHOP || Shop::getContext() == Shop::CONTEXT_GROUP) { 212: Configuration::deleteFromContext('BLOCKADVERT_TITLE'); 213: } 214: 215: // Reset the module properties 216: $this->initialize(); 217: $this->clearCache('blockadvertising.tpl'); 218: 219: if (!$errors) { 220: Tools::redirectAdmin(AdminController::$currentIndex.'&configure='.$this->name.'&token='.Tools::getAdminTokenLite('AdminModules').'&conf=6'); 221: } 222: echo $this->displayError($errors); 223: } 224: 225: } 226: 227: /** Stack trace 1. modules/blockadvertising/blockadvertising.php:164 source BlockAdvertising->postProcess() 2. controllers/admin/AdminModulesController.php:1648 source BlockAdvertising->getContent() 3. controllers/admin/AdminModulesController.php:1511 source AdminModulesControllerCore->postProcessCallback() 4. classes/controller/Controller.php:197 source AdminModulesControllerCore->postProcess() 5. classes/Dispatcher.php:837 source ControllerCore->run() 6. admin123/index.php:63 source DispatcherCore->dispatch()
  10. That would of been helpful, huh. 😉 https://store.thirtybees.com/shop-modules/front-office/block-advertising It takes me to this page : https://github.com/thirtybees/blockadvertising
  11. So I wanted to download this module and use it on my site... However when I click download, it takes me to a Github page... I have no clue what to do with a GitHub page. So, any suggestions?
  12. I just now did everything you suggested. I've had no time, and other prssing things to handle. This doesn't affect my sales/site - it's just something I'd rather have the other way.
  13. @the.rampage.rado - So I know I'm bringing up an older topic - but I honestly haven't had the spare time to do this until now. It just finished - It did not work. So what's the next step? Or am I just stuck with have friendly off.
  14. I mean, they're fine, and work well enough. But I find most I look at are all basically the same "blocky" layout. Is it just me?
  15. I found only one person from support was helpful - so I requested him, and asked him to view this thread for all info on what's wrong. This was his reply. Good Morning. I believe I was able to resolve all the issues you had with your store as I no longer see any errors atm (Yes, Checked all the links you have provided in that forum). So here is what I have performed to make this work (Should help you in the future if we encounter a similar situation): 1) ALT-PHP 7.4 for your wordpress website 2) Custom ALT-PHP 7.2 for your store 3) Enabled Zip and php fileopen for php 7.2 4) Enabled GD, php intl as well You may disregard the warning for TLS V1.2 warning. Our server supports TLS versions 1-3 For confirmation, please review the php information pages at : REMOVED and REMOVED If you have any other queries, Please let me know. Have a great day ahead!! Regards, Albert H. When I tried to backup my site today however, I got a new error. I've already requested help from them as I was able to back it up three days ago. ThirtyBeesException Allowed memory size of 33554432 bytes exhausted (tried to allocate 4096 bytes) in file classes/db/DbPDO.php at line 158 Source file: classes/db/DbPDO.php 139: */ 140: public function disconnect() 141: { 142: unset($this->link); 143: } 144: 145: /** 146: * Executes an SQL statement, returning a result set as a PDOStatement object or true/false. 147: * 148: * @see DbCore::_query() 149: * @param string $sql 150: * 151: * @return PDOStatement 152: * 153: * @since 1.0.0 154: * @version 1.0.0 Initial version 155: */ 156: protected function _query($sql) 157: { 158: return $this->link->query($sql); 159: } 160: 161: /** 162: * Returns the next row from the result set. 163: * 164: * @see DbCore::nextRow() 165: * @param bool $result 166: * 167: * @return array|false|null 168: * Stack trace 1. classes/db/DbPDO.php:158 source Fatal error()
  16. Shout Out to Albert, the only person at my hosting company that actually paid attention to my issues. It's all resolved now. Guess I should start updating stuff. 😉
  17. Correct I've never updated Thirtybees to the newest version.
  18. I don't see anywhere for the zip issue to change it. I've had no issues uploading zip files and installing them in the past. As for the 1.1.0 You asked for this before, but it slipped my mind to post it.
  19. ...and the errors when I try to update anything in the list of modules. ThirtyBeesException Class 'ZipArchive' not found in file classes/Tools.php at line 3733 Source file: classes/Tools.php 3714: { 3715: Tools::displayAsDeprecated(); 3716: 3717: return false; 3718: } 3719: 3720: /** 3721: * @desc extract a zip file to the given directory 3722: * @return bool success 3723: * 3724: * @since 1.0.0 3725: * @version 1.0.0 Initial version 3726: */ 3727: public static function ZipExtract($fromFile, $toDir) 3728: { 3729: if (!file_exists($toDir)) { 3730: mkdir($toDir, 0777); 3731: } 3732: 3733: $zip = new ZipArchive(); 3734: if ($zip->open($fromFile) === true && $zip->extractTo($toDir) && $zip->close()) { 3735: return true; 3736: } 3737: 3738: return false; 3739: } 3740: 3741: /** 3742: * @param $path 3743: * @param $filemode Stack trace 1. modules/tbupdater/tbupdater.php:1096 source ToolsCore::ZipExtract(arguments) 2. modules/tbupdater/tbupdater.php:956 source TbUpdater->extractModuleArchive(arguments) 3. modules/tbupdater/tbupdater.php:472 source TbUpdater->downloadModuleFromLocation(arguments) 4. controllers/admin/AdminModulesController.php:1594 source TbUpdater->updateModule(arguments) 5. controllers/admin/AdminModulesController.php:1511 source AdminModulesControllerCore->postProcessCallback() 6. classes/controller/Controller.php:197 source AdminModulesControllerCore->postProcess() 7. classes/Dispatcher.php:837 source ControllerCore->run() 8. admin123/index.php:63 source DispatcherCore->dispatch() I hope this helps to explain it.
  20. thirty bees version: 1.1.0 CHECK YOUR CONFIGURATION Required parameters: Please fix the following error(s) Install the `zip` PHP extension on your server. Test result: fail Optional parameters: Please fix the following error(s) Install TLS v1.2 support on your server. Test result: fail LIST OF CHANGED FILES Changed/missing/obsolete files have been detected. Obsolete files (6) admin/index.php-bk admin/CoreUpdaterBackup-2020-11-11--08-08-48 admin/shadow admin/CoreUpdaterBackup-2021-09-18--12-49-41 admin/CoreUpdaterBackup-2020-05-26--20-19-39 admin/error_logCore Updater Core Updater OH SNAP! WE HAVE ENCOUNTERED AN ERROR Found 1 installed modules incompatible with thirty bees 1.5.1. Details Module 'thirty bees Updater' [tbupdater] is not compatible with target version of thirty bees
  21. Core updater isn't working at all. Where would I get the tbupdater then? I thought my core updater needed to be installed to update TB. It won't allow me to update that either anyway.
  22. Thank you. I get this error message now. Found 1 installed modules incompatible with thirty bees 1.5.1. Details Module 'thirty bees Updater' [tbupdater] is not compatible with target version of thirty bees
  23. I replied in the other thread but have t gotten a reply since Thursday. Yeah, I've not wanted to update it because i've altered some files and I was worried I'd have to go in and alter them again. Where do I install the core updater? As mine is out of date and I had to download it. There's no info in the files.
  24. No reply since Thursday? I can’t find the answers I’m looking for elsewhere, I would have thought here was the best place for an answer. I’ll reply in the other thread as well I guess??
×
×
  • Create New...