Jump to content

zoeck

Members
  • Posts

    419
  • Joined

  • Last visited

  • Days Won

    2

Everything posted by zoeck

  1. It should not be a problem to import the comments via the Processwire API. There is also a thread on how to do this here:
  2. Looks like the same problem ๐Ÿ™‚ Add this to the config.php file: $config->sessionFingerprint = 12;
  3. You can find the 2.7 Versions here: https://github.com/ryancramerdesign/ProcessWire/tags But it looks more like you are using a less compiler (lessphp) somewhere in the templates, and it is trying to access the wrong path.
  4. Have you adjusted your URL from the web server in config.php? Does the url in โ€œ$config->httpHostsโ€ match?
  5. In your hook posted above you use โ€œindexPages()โ€, but the correct one would be โ€œindexPage($page)โ€ without the s at the end. Your hook creates a completely new search index each time, not only for the changed page but for all pages. You have to use something like this (not tested) $wire->addHookAfter('Pages::saveReady', function($event) { $page = $event->arguments(0); $event->modules->get('SearchEngine')->indexPage($page); $event->wire('log')->save('Page saved', "Page ID: $page->id / Page Name: $page->name / Page Parents: $page->parents"); });
  6. Have you checked if your server supports mod_rewrite? You can check this with phpinfo(), then simply search for rewrite.
  7. Check the console of the browser dev tools, you should see an error in the console in the Dev Tools.
  8. You can also do this with the Pro modules. They are just PHP scripts like other modules. And you get access to the internal support forums of the corresponding pro modules. Of course you can also just buy the modules and not use them to support Ryan ๐Ÿ˜‰
  9. In most cases I would agree with you ๐Ÿ™‚ but i think that it is a very special case that is adapted to our internal processes ๐Ÿ™‚ However, it is often the case that users first โ€˜collectโ€™ items in their cart and then order them together. Example: The user has a new mouse and keyboard in the โ€˜hardware cartโ€™, but he knows that he would like to add a headset, but needs to find out more first. The purchasing department has announced a โ€˜collective orderโ€™ for company clothing, the employee would like to order something as well and therefore places the order for the clothing directly. There is also a specific shop where recurring weekly orders are placed (food), so this plays an even greater role here. But I think I'll have a look at the โ€˜partial checkoutโ€™ topic, I think that should be implementable ๐Ÿ˜‰ Then only a single cart would be necessary.
  10. Ryan posted an (license) update on this in August ๐Ÿ™‚
  11. I think that could work ๐Ÿ™‚ Would it also be possible to make a "partial checkout" which only contains items from "category A" or "category B"? Although I think there would then be problems removing only the ordered items from the shopping cart
  12. Hehe ๐Ÿ™‚ Here you realize again how versatile Processwire can be used ๐Ÿ™‚ This is relatively easy to explain. I am currently using a self-developed system in our company intranet, which is ok (the usability is not perfect), but doesn't have as many functions as RockCommerce. We have individual โ€œself-serviceโ€ stores that run separately from each other. Examples: Company clothing, office equipment, hardware The Products should not be mixed, even if they could theoretically be filtered individually afterwards. The orders are processed by different departments.
  13. Wow that looks great Bernhard! I have one question. Is it possible to have several stores with separate carts in one PW instance? I think I have to test the module soon (luckily I have a RockSuite license ๐Ÿ˜„ )
  14. You can create a custom PHP Configuration: https://ddev.readthedocs.io/en/stable/users/extend/customization-extendibility/#custom-php-configuration-phpini You can test something like this: File - .ddev/php/my-php.ini [PHP] display_errors = On; error_reporting = E_ALL;
  15. You can check the online status here: https://downforeveryoneorjustme.com/kuenstlerischepraxis.at As Gideon So wrote, you should contact your hoster to find out what's going on.
  16. zoeck

    PHP Hosting

    That's right ๐Ÿ˜‰ Normally, every Internet connection should support IPv4
  17. zoeck

    PHP Hosting

    Just have a Look at https://all-inkl.com/en/ I have been there for many years and am extremely satisfied. The admin panel (โ€œKASโ€) looks a bit old-fashioned, but it does what it's supposed to. The only disadvantage (if there is one) is that there is only IPv4 and no IPv6. The support is extremely fast and competent if a problem occurs, even at night!
  18. Thanks Bernhard for your example, I'll have a look to see if I can implement it like this ๐Ÿ™‚
  19. The interesting part is actually steps 1 and 2. Step 3 is just a check by the user that all the data entered is correct Step 4 is the confirmation that the information has been saved. I have created a small mockup here, I think you can see what the form does.
  20. For example, I have a case where I select a period in days in step 1 of the form. In step 2, the user should then be shown 3 checkboxes for each day that they can select (morning, midday, evening). While I'm writing this text, I'm not sure whether I need the forms-multiplier plugin at all. Is it possible to display a dynamic number of checkboxes in groups in a 2nd step with RockForms with a MultiStepForm? If that would work, I could also use RockForms without the additional plugin ๐Ÿ˜‰
  21. Hello Bernhard, since I am currently revising some functions on a page, I would like to partially renew a few forms that currently run via their own scripts. I have encountered a problem where I don't know exactly how to implement this with RockForms. I have the possibility to add any entries in a form, I have also seen that there is a plugin for Nette Forms. Is it possible to use the forms-multiplier plugin in RockForms, or is there another way to implement this? Thanks ๐Ÿ™‚
  22. Hello Bernhard, I have a question about RockCommerce. I think I actually need exactly the possibilities that RockCommerce offers, i.e. ordering items and offering a price with information etc. But the customer should not pay for it. That sounds strange, but I would like to use the shop for an internal self-service portal ๐Ÿ˜‰ Is that possible?
  23. With the new version everything works again, thank you @bernhard ๐Ÿ™‚
  24. Hi @bernhard, I think i have found the cause of the error, i changed the Line 184 in RockFrontend.module.php to: require_once __DIR__ . "/vendor/autoload.php"; Just checked "$this->path" and it's null?
ร—
ร—
  • Create New...