Jump to content

Soma

Moderators
  • Posts

    6,798
  • Joined

  • Last visited

  • Days Won

    158

Everything posted by Soma

  1. Your post always read like this: You should not make line breaks.
  2. We at @update_ag recently relaunched the new http://t.co/XZeNioZ2nq using the great @processwire CMS/CMF #webdevelopment

  3. Hello there Yesterday we at update AG relaunched the new 1815.ch news portal of Mengis Medien AG. It's a big new portal of a local newspapers here in Wallis Switzerland. That's where the Matterhorn is also It was a thrill to work on this project using ProcessWire. We're still working out some details and adding more stuff in future. There's a lot going on and it has quite lot of traffic. 60k+ pages at the moment. Currently it serves 18k+ articles plus a lot of other data that are just pages. But will grow a lot. The portal has currently around 7k+ user registered. Lots of imports and exports are going on in the background. That mostly are XML feeds or data being uploaded to server. Some news are imported and automated. While they have different teams creating articles apart from the imports of their newspaper also via XML. http://www.1815.ch
  4. I for now filed an issue https://github.com/ryancramerdesign/ProcessWire/issues/1011 It's not fixed for dev version. After upgrading to latest dev the issues pop up again.
  5. A coworker just installed the 2.5.3 with language profile, and we have the exact same issue. LanguageTabs just disappears. Commenting out the "requires" in the LanguageSupportTabs module and doing a refresh fixes the issue. After that uncommenting the line it keeps works again. After doing a upgrade to latest dev via Ryans updater, the issue pops up again. I noticed a similar issue on a project where ProcessLoginHistoryHooks module disappears sometimes when installing new modules. The thread starts here https://processwire.com/talk/topic/2082-module-process-login-history/?p=88573 It also has a requires dependency, that when commenting out it fixed the problem and the module appears again. This issue should be tracked down and fixed ASAP.
  6. Looks like it happened again. I installed a module via url. After that the Login History module had the same issue as I mentioned. Edit: I have a local install (not same as the project) where I try to reproduce it but can't. Driving me crazy.
  7. @diogo it was but not everyone has flattr.
  8. I setup a little demo here to see using https://lightning.pw http://titanium-x77.lightningpw.com/ You see it one single on home sidebar and on the PollinoPolls page you see two. The expire time is set to 1 minute. via cookies
  9. Just checked in a first beta version of a new module I'm working on. Feel free to test out and see what's up with it. Pollino (beta) A simple poll module for ProcessWire This module makes it simple to setup polls for your website. It is based on a simple page setup to create the polls. So each poll is a page, and its children are the answers. Pollino will create the templates and a PollinoPolls page in the root to start with. You can add fields to the templates as you wish and later use hooks to modify the output of the poll. This can be useful, for example, to use images as options or just some custom markup etc. It provides some API to render the poll form and the result. These methods are hookable and it's easy to customize the output if needed. It can be rendered on any page and even multiple on the same page. Pollino takes care of saving the votes and preventing multiple votes. It comes with some configuration settings to choose what method to use to prevent from multiple votings: using cookie and an expire time or by IP and optionally also the UserAgent with and expire time or by logged in User Pollino isn't 100% plug'n'play but it provides a solid foundation and comes with some premade theme and output for you to start. It takes care of the boring stuff and lets you concentrate on the front-end stuff and styling. That's what matters after all. It does support multilanguage, as all strings are translatable in the module. Also since it's using simple pages and templates you're free to add or change fields to make its output multilanguage without much hassle. ----- Read more and download https://github.com/somatonic/Pollino Online Demo I setup a little demo here to see using https://lightning.pw http://titanium-x77.lightningpw.com/ Have fun.
  10. RT @owzim: Woohoo, @processwire featured in big German computer magazine @ctmagazin http://t.co/gYVeEiXtbh #cms #webdev

  11. $userData = $event->arguments(0);
  12. I'm not sure I understand what the problem with first method is. Are you speaking about your Inputfield's default (in module) ? Look at InputfieldText how it set defaults public function __construct() { parent::__construct(); $this->setAttribute('type', 'text'); $this->setAttribute('size', 0); $this->setAttribute('maxlength', self::defaultMaxlength); $this->setAttribute('placeholder', ''); $this->setAttribute('pattern', ''); $this->set('initValue', ''); // optional initial value $this->set('stripTags', false); // strip tags from input? }
  13. You know what? It doesn't matter. We all been there and even seasoned programmers sometimes tap into it. Our mind is ignoring things, otherwise we would go crazy
  14. I can't reproduce this. I have basic-page without trailing slash and a page field to select pages. The url of those don't have a trailing slash.
  15. Got to Modules->Refresh.
  16. How is your setup? Looks like there's maybe this issue with newline in the config textarea for domain If you change $this->subdomainsArray = explode("\r\n", strtolower($this->subdomains)); To $this->subdomainsArray = explode("\n", strtolower($this->subdomains)); Does it work? This is the code that should do a redirect when a real url containing the domain is found. https://github.com/somatonic/Multisite/blob/master/Multisite.module#L120 But even then even if the redirect isn't working the page should still show fine. Nothing there in the module that would do a 404. The 404 seems to be an issue that the domain isn't found. But that wouldn't come from updating PW after all.
  17. Well the obvious would be that it's minlength and not minLength.
  18. When I change it to extend InputfieldText it's the same result. B4 LOAD __construct init 6 AFTER LOAD 6 AFTER SET 6 ___render 6 Have you refreshed modules? What PW Version? It doesn't show up under fields since it's a Inputfield with no Fieldtype. Fields are Fieldtypes that can have one or multiple Inputfields for their "input".
×
×
  • Create New...