theo
Members-
Posts
299 -
Joined
-
Last visited
-
Days Won
1
Everything posted by theo
-
Hello In Debug Mode i am getting this notice: $stmt->bind_param("sssssssssssiis", $input->whitelist->Anrede, $input->whitelist->Vorname, $input->whitelist->Name, $input->whitelist->Firma, $input->whitelist->Adresse, $input->whitelist->Adresse_Zusatz, $input->whitelist->PLZ, ....) It's working afaics, but showing this notice. What can I do about it (Except turn Debug Mode off)? Thank you.
-
@adrian Thanks, reopened: https://github.com/processwire/processwire-issues/issues/817 Thank you also @szabesz It is good to have a workaround, but I think it should be fixed (if possible) in the "trash for all" code.
-
But still, I'm not happy. I've closed the bug report, but afterwards I have found out, that it is not only a problem if I move 404 under admin, but also, if I hide it like this. $wire->addHookAfter('Page::listable', function(HookEvent $event) { if($this->wire('user')->isSuperuser()) return; $page = $event->object; if($page->id === 27) $event->return = false; }); So there seems to be no way the let the "editor" see the trashcan AND not see the 404 page in the backend. What do you think? Shall I reopen the bug report? Thank you!
-
For the record: According to Ryan, it is not good to move the 404 Page under "admin". https://github.com/processwire/processwire-issues/issues/817
-
For the record: According to Ryan, it is not good to move the 404 Page under "admin". https://github.com/processwire/processwire-issues/issues/817
-
Thank you all. Bug report is here: https://github.com/processwire/processwire-issues/issues/817
-
Now I see. It does not show, because I have moved the 404 page under "admin", as suggested by kongondo. If I reparent the 404 Page under "home" again the trashcan is showing for my "editor". Strange. Would you say it's a bug? Shall I report it? Thank you.
-
@Robin S Thank you. Did you do anything "special" to make it work? I really don't know what else I can do. Here it looks like:
-
Hello I am trying to enable "Trash for all", but it doesn't seem to work: https://processwire.com/blog/posts/processwire-3.0.107-core-updates/#trash-for-all I enabled it in "Modules > Configure > ProcessPageList" and the "editor" user has "page-delete" permission. But I can't see anything like "Trash" in the page lister? What am I missing? Thank you.
-
Don't hold your breath! ? It's always "work in progress". I have no idea when It will reach the next "stable" point. I'm swiss and I move within the city of lucerne.
-
Yes I know, but afaik, this has not much in common with the way bootstrap works, so I don't think my "Gridbuilder" is a good starting point for implementing this. I don't know if it will ever be a single module. I'd call it a "setup" because it consists of several modules, plus a basic bootstrap setup using webpack (for front and backend) plus several templates etc. Release date? Not sure, I'm moving soon, so I have a lot to do.. ?
-
Thank you. ? I've changed that completely. Now, only a placeholder icon is moved around, not the bootstrap column (which had strange visual effects). Like this, you can also move columns in or out of containers. See new video here: http://theowp.bplaced.net/upload/novtest.html Not sure if possible without a complete rewrite. This is very bootstrap-centric. I know that everyone wants a different CSS framework, but bootstrap is not just any product, it is "the most used open-source framework in the world." https://www.keycdn.com/blog/front-end-frameworks So I don't feel that bad, with my decision. ?
-
-
I'm seeing this too with some fonts. It think it depends on actual font widths. Try to set some zoom (e.g 125%) in your Browser and you will probably see it too.
-
Yes, Webp is impressive. This is my dinner from the day before yesterday. The JPEG (2394 x 1671 px) has 1.8 MiB, the Webp has 150.9 KiB wizardl.webp
-
Very!!!! strange PHP (PHP 7.2.11 ) error which appears only when using Opera Browser (so far) (Opera Version:56.0.3051.52) No Problem on Firefox or Chromium. The message disappears, when I set "$config->debug = false;" I know this is probably not worth investigating, but I wonder if anybody has seen this before and if it may have to do with PW. Thank you. P.S.
-
I'm sorry @bernhard. Didn't mean to hijack your thread. But comparisons already started in the first answer (npmtrends). I was just wondering why bootstrap was not included there. Ok, back to topic...
-
No, it doesn't. But thanks anyway. ? Just wondering why nobody is talking about the "elephant in the room".
-
Why is everybody here ignoring bootstrap? is it "too popuar" and thus not "cool" enough? ? https://www.npmtrends.com/bootstrap-vs-bulma-vs-foundation-vs-uikit
-
bug after updating, ProcessWire dev 3.0.116 -> 3.0.117
theo replied to slave's topic in General Support
Which PHP version? No problems here so far with PHP 7.2.11 -
Apparently he is feeling better. https://github.com/processwire/processwire-issues/issues/716 ?
-
IP geolocation and redirect user to their language
theo replied to Marco Ro's topic in Multi-Language Support
Imo language and country are different things. In Switzerland we have four official languages. Use the Browser's HTTP Accept-Language, if you want a language preset. Geolocation may be the right thing for country specific products or terms of conditions. -
I am not sure what you mean. I'm using bootstrap table and some PHP for the database operations. I can copy most parts from code had written before. I know how it works, so it is easy for me. That's all. It has nothing to do with Processwire. P.S. See also http://issues.wenzhixin.net.cn/bootstrap-table/#extensions/select2-filter.html http://issues.wenzhixin.net.cn/bootstrap-table/#extensions/editable.html
-
@bernhard Thanks a lot. I will try this tonight. Yes, "Set filter" is what I would need. This is critical. Since I don't have enough time for experiments atm., I think I'll go with bootstrap table working on normal MySQL Table this time. I have everything at hand with this system, it just takes a few changes. So that's my best bet to get the job done as fast as possible. But I'll come back to RockGrid. Thank you.
-
@jmartsch Thank you! I will try it this evening. Btw. do you know if something like this (see image below which shows a bootstrap table by wenzhixin) is possible with RockGrid? (with reasonable effort). I would like to use "Select Options" field types, which show their value instead of the key and which can be filtered with a Select Box (see "Status" in the image below). Thank you.