Jump to content

LostKobrakai

PW-Moderators
  • Posts

    4,956
  • Joined

  • Last visited

  • Days Won

    100

Everything posted by LostKobrakai

  1. Hi there, I'm currently starting out with some already quite big projects in cooperation with a partner agency in Munich. There are different scopes of work from rather simple-in-structure content websites to a quite complex SaaS webapp in the pipeline. Therefore I'm looking for possible partnerships with at least one freelancer to assist in these projects, possibly as long-term collaboration. Some proximity to our office in munich would be preferable, but is not required, as is knowledge of the german language. Please drop me a line on the forum if you're interested, so we can get into the details. Greetings, Benjamin
  2. About the off topic issue. I'd just message Ryan. I'm sure he'll add multiple users under a single license as well if needed.
  3. That's not true. $page->render() is not new at all, just rendering a single field was added.
  4. There isn't currently. But as soon as ProDrafts is a thing this should really change.
  5. An easy way could also be using pjax, which does simply replace some container element of the dom instead of the whole page.
  6. It might even be, that parts of the docs are created at a time, where the render() method didn't even have any (useful) options.
  7. RT @gisugosu: Auf fast 160 Mitglieder sind wir angestiegen und suchen immer noch. #help #slack #webhttps://t.co/074GuBYNk2 https://t.co/yT…

  8. RT @bfncs: „Over the past few years I’ve seen client expectations rise considerably, but digital budgets remained unchanged.“ https://t.co/…

  9. I'm wasn't talking about it as replacement of php, but using it with nginx cache or varnish (which rather uses ESI).
  10. Does someone have experience with server side includes? I've not used them by now, but would be glad if anyone could provide experiences especially in combination with processwire.
  11. Yeah. Saving a few keystrokes is almost never a worthy trade to code clarity
  12. $pa1 = $pages->find("something"); $a2 = array(); foreach(){…} $pa2 = (new PageArray())->import($a2); foreach($pa1->import($pa2)->unique() as $p){ if($pa2->has($p)) … else … }
  13. The property sort is nothing magic. It's just a simple integer storing the order of pages in the page tree. But as one can imagine this does only work for sibling pages, because each branches sort values are started from 0 again. You could even use 'sort=sort' to force returned pages to be in the sort order of the admin.
  14. You want to sort by '-parent.sort, -created', but I'm not sure if this is even supported currently.
  15. It's usable (e.g. processwire.com is using it already) but it's still in heavy development, so there aren't any guarantees. You'd make up you own mind if you want to use it. You could always give it a try locally.
  16. So the name isn't actually the trigger of the issue. Are there any hooks attached to this page, which aren't on the others?
  17. Could you temporarily rename this very page and see if it does save?
  18. Exactly. You would even get $settings in template context.
  19. Thanks for implementing my feature suggestions just a week after I posted about it. This will certainly make working with the page tree much more friendly especially to beginners/editors.
  20. You could also add a custom api variable like that. $this->wire('variableName', $obj); In your case it's both config, but if you're adding something different this might even be more appropriate.
  21. Export a site profile of it and post it here or at github. Ryan can then concentrate on fixing it instead of searching for the issue.
  22. Probably was the space after the url. Does work now.
  23. Could you please take a look at this one: https://processwire.com/docs/tutorials/troubleshooting-guide/
  24. The config module does store it's values in a json file somewhere in assets/cache iirc.
  25. I just wanted to add my approach of using a static method on my extended multisite module together with a cached list of domain names: https://github.com/LostKobrakai/MultisiteExtended/blob/master/MultisiteExtended.module#L341-L364
×
×
  • Create New...