Jump to content

Soma

Moderators
  • Posts

    6,798
  • Joined

  • Last visited

  • Days Won

    158

Everything posted by Soma

  1. Thanks Michael for picking this up. We could try to meet us in Zurich. Wanze and I met couple months ago for some chatting and eating "after work chilling" . I work in Zurich but live in Schaffhausen. I think it's also a good location. So is Basel or maybe even Schaffhausen all are fine and the more north the better for our german pals. I agree with mademyday though. For a more broad meeting we maybe need longer timeframe. Apart from that I think Wanze and me would love to meet anyone in Zurich anytime just call.
  2. I have a car loaded with 23 tons of rocks. Now the.car is slow.. PW doesn't load stuff in PageArray except autoload fields. You don't want to load that much pages in memory anyway so you should use limits.
  3. Password is encrypted for a reason. You can't read/decrypt it.
  4. Yeah sure it's an "old" thread... I created it. Whatever that means Maybe could've pick it up instead of creating new one It was also to see if any interest and I hadn't time to look for something to organize.
  5. See for yourself http://processwire.com/talk/topic/2577-processwire-conference-switzerland-central-europe/
  6. Look for my thread about same subject from some time ago.
  7. Thanks, yeah I'll look into this soon.
  8. Shortest is to just echo $page->field. If empty it will not output anything.
  9. The security issue in PW would Be The devloper.
  10. You forgot you can do your own html form.
  11. It is validated and sanitized and throwing error.. But I think its not good if you create own registration and sanitize it before storing as you would end up with different password if you don't take care of showing a error to the user.
  12. Wow first time I see it! Looks great there!
  13. RT @processwire: We're building a directory of ProcessWire sites. If you've built any, please add them at: http://t.co/XqHkNmlmta – click "…

  14. You know we get older. Sometimes I find myself asking "hey was that me?"
  15. You just get the textformatter module and use the formatValue(). It accepts Page, Field, String but you can also pass an empty page and field as most textformatters also don't use it except HannaCode I think. $str = $page->textfield; $modules->TextformatterModuleName->formatValue(new Page(), new Field(), $str); echo $str; This is deprecated, but should work for most textformatters still $str = $page->textfield; $modules->TextformatterModuleName->format($str); echo $str;
  16. There was some change to labels and it is hidden via css so you also need to add a hidden class I think InputfieldLabelHidden. One of some changes in core affecting your site after update which is not documented...
  17. Guess the replacing takes happen before your's, and when it's replace in js it isn't there anymore so you can't overwrite it. There's no way around other than changing the core js, or trying hook (js) into input blur somehow before page name js does its work.
  18. Ok again for the record. This hook just changes the page url and not the request of loading the page with that url. You need url segments to do that and there's no problem with underscores. Philipps solution is also good one.
  19. No need for site exporter. Just site folder and db. Done.
×
×
  • Create New...