Jump to content
thirty bees forum

wakabayashi

Silver member
  • Posts

    2,027
  • Joined

  • Last visited

  • Days Won

    175

Everything posted by wakabayashi

  1. wakabayashi

    PS quality

    Despite all mistakes they do, it's understandable that they delete thirty bees in the forum. As we all know, thirty bees is just a better ps. It means it's a big treath to the them... It wouldn't the first fork, which "overtakes" the main project.
  2. At the moment it's hard for me to imagine, how I could use this. Is it basically for local testing purposes? I use multistore... How does it work there?
  3. Looks the same: 'PageCache' => array ( 'path' => '', 'type' => 'class', 'override' => false, ), 'PageCacheCore' => array ( 'path' => 'classes/PageCache.php', 'type' => 'class', 'override' => false, ), Also it says no overrides. Any idea?
  4. Yes the method is there... No I don't use any overrides for this class... I just deleted cache/class_index.php. But Still the same error.
  5. Thanks Sir! That solved my problem...
  6. When I try to delete Cache I get the following: Call to undefined method PageCache::flush() at line 1267 in file controllers/admin/AdminPerformanceController.php php 1262. $redirectAdmin = true; 1263. Tools::clearSmartyCache(); 1264. Tools::clearXMLCache(); 1265. Media::clearCache(); 1266. Tools::generateIndex(); 1267. => PageCache::flush(); 1268. if (function_exists('opcache_reset')) { 1269. opcache_reset(); 1270. } 1271. } 1272. - AdminPerformanceControllerCore->postProcess - [line 379 - classes/controller/Controller.php] php 374. if ($this->checkAccess()) { 375. if (!$this->content_only && ($this->display_header || (isset($this->className) && $this->className))) { 376. $this->setMedia(); 377. } 378. 379. => $this->postProcess(); 380. 381. if (!empty($this->redirect_after)) { 382. $this->redirect(); 383. } 384. - ControllerCore->run - [line 742 - classes/Dispatcher.php] php 737. if (isset($paramsHookActionDispatcher)) { 738. Hook::exec('actionDispatcher', $paramsHookActionDispatcher); 739. } 740. 741. // Running controller 742. => $controller->run(); 743. } catch (PrestaShopException $e) { 744. $e->displayMessage(); 745. } 746. } 747. - DispatcherCore->dispatch - [line 58 - admin/index.php] php 53. if (!isset($_REQUEST['controller']) && isset($_REQUEST['tab'])) { 54. $_REQUEST['controller'] = strtolower($_REQUEST['tab']); 55. } 56. 57. // Prepare and trigger admin dispatcher 58. => Dispatcher::getInstance()->dispatch(); I am using redis and full page cache. Regards
  7. There is an updater module: https://github.com/thirtybees/tbupdater/releases
  8. Did you lost connection or was there a standby? I think, I had the same, when my laptop was switching to standby modus ;)
  9. wakabayashi

    Sitemap

    Which sitemap module? I think user should define, what should be in. Of course there should be option for categories, products, blog, manufactures, suppliers and cms pages.
  10. Hello I know, that we have some server experts here. Maybe somebody could explain, how caching is working. It confuses me, that there are many different caching methods. As far as I know, I have the following: nginx cache redis cache smarty cache full page cache Additional there is the browser cache, right? Which one is doing what? Where are the risks? I am always afraid that visitor could see outdated informations. Let's say I change price of a product. Is there a risk, that customer sees the old price? What if I change tpl files?
  11. wakabayashi

    Which tpl

    Nice! Good Night!
  12. wakabayashi

    Which tpl

    This is core tpl file. It's not a module. Just go to your theme folder and search for cms.tpl.
  13. wakabayashi

    Which tpl

    Tipp: You can find this out very easily by your own. Just use a modern browser where you can select an element to inspect it. It shows immediately that its h1. To find out which tpl file, you just read body id="". The id normally tells you the tpl file!
  14. wakabayashi

    Which tpl

    Well then just open cms.tpl and search for
  15. wakabayashi

    Which tpl

    Oh one second. You wanna remove really the header? Or the headline?
  16. wakabayashi

    Which tpl

    If it's a cms page it's cms.tpl. It's easier to help if you send a link, so we can see the source code!
  17. I doubt he will fix it, since he doesn't even upgrade his module anymore...
  18. This is the blog module from kpodemksi. I have some issues to make it work. It seems to be caused by the rewrite system. Unfortunately this module now even breaks other frontControllers. For example I get: Fatal error: Call to a member function isAccessGranted() on null in /home/genzo/publichtml/modules/phsimpleblog/controllers/front/single.php on line 33 But when commenting this function out, I get a 404 error. @mdekker could you solve this?
  19. There is a menu "topic tools". I can do it there. But not sure, if it is because I am moderator. Anyway: somebody did it :D
  20. You are welcome! Feel free to mark it as "solved".
  21. ``` {$blocktitle1|escape:'html':'UTF-8'} {foreach from=$blocks1 item=block name=loop} {if $block.link}{/if}{if $block.title}{$block.title|escape:'html':'UTF-8'}{/if}{if $block.link}{/if} {/foreach} ``` Try it like this...
  22. @Havouza said in How create a link like this?: This is the code in the tpl. To me it looks if a target is hardcoded here, all links will open in a new tab. Solution for that is to only place links here that should open outside the shop <ul id="footercustom_link_informations"> <li class="footercustom_link_title footercustom_title">{$blocktitle1|escape:'html':'UTF-8'}</li> {foreach from=$blocks1 item=block name=loop} <li>{if $block.link}<a href="{$block.link|escape:'html':'UTF-8'}" title="{$block.title|escape:'html':'UTF-8'}">{/if}{if $block.title}{$block.title|escape:'html':'UTF-8'}{/if}{if $block.link}</a>{/if}</li> {/foreach} </ul> Yeah you could solve it in your tpl file. The solution which comes to my mind is a bit ugly. But you could use something like: {if $block.id==anynumber}target="_blank"{/if} I don't use this module, so I don't know if you have access to the id...
  23. You have html error in it. You mess up with quote sign ("). Yours: <a href="https://webadmin-lin.demo.plesk.com:8443/smb target =&quot;_blank&quot;" title="Plesk Control Panel">Plesk Control Panel</a> Correct: <a href="https://webadmin-lin.demo.plesk.com:8443/smb" target ="_blank" title="Plesk Control Panel">Plesk Control Panel</a>
  24. @Traumflug said in Onepage Check-out like presta 1.7: I wonder all the time why people ask for a one-page checkout all the time. There is one, right in thirty bees, standard installation. Just enable it in Backoffice -> Preferences -> Orders -> General. Works just nicely. Is this the same as in PS? Cause this is no real onepage checkout. User have to save address first. But to be honest, I wonder too why so many are screaming for one page checkout. Our experience shows that people get confused, when they have to fill in too much on a single site. I only like one pages checkout for registered customers with saved addresses.
  25. I am not yet on tb on live server and removed the font from my theme ;)
×
×
  • Create New...