Jump to content

entschleunigung

Members
  • Posts

    67
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by entschleunigung

  1. hi teppo, thanks for this module! i have tried something with your module but unfortunately i have not found out how to map the following structure. ul > li.dropdown > ul.dropdown-menu any idea how I can do this?
  2. hello, i have a strange behaviour in this matter. on one page there are two page reference fields which are dependent on each other. the selector string for this is template=foo, refClients=page.refClients, sort=title if i save the page in admin, the selection works, but not via ajax if i stay on the page in admin. as soon as i change source page reference field, it looks like the selector is not working anymore and everything is displayed in target page reference field. maybe someone has an idea what i can do better. thanks a lot
  3. ryan had helped me a few weeks ago via PN. sorry that i didn't write the solution in the forum before. i hope it's no problem that i write the private message here.
  4. grid layout would still be the better option, but there is another way. the following example has a background image and the boxes work similar to masks. you would have to refine it, but it could work like this or similar. https://codepen.io/entschleunigung/pen/rNBqyNj
  5. I think with css grid layout, you can do it.
  6. thank you very much for your reply. I don't think it was apparent from my previous post. in the meantime i read that this version does not supports a multilanguage setup. is that still correct? thx
  7. Thank you so much for the module. i'm just trying to get it to work and wonder if i missed something. i want to redirect pages from an existing installation (windows server, jumplinks 1.5.53) that have been moved in the tree. example: old url: /en/product/teabag/ new url: /en/brand/teabag/ (for the new url I chose the page id) if i now create these jumplinks, i always end up on the home page. isn't that possible? sorry, if the question has already been answered, i didn't find anything on the fast one. thx
  8. all well, don't stress yourself. probably you are faster with your download and the installation than i learned github ?
  9. thank you for your encouraging words, thx.
  10. i have unfortunately not yet dealt with github, so far i have been able to ignore it successfully. if someone wants to do that, i would be very grateful. thx
  11. because I can't get any further here, maybe @ryan has some other idea what to do here to make the search work?
  12. hi flydev, Error: Exception: SQLSTATE[HY000]: General error: 3696 The regular expression contains an unclosed bracket expression. (in D:\inetpub\wwwroot\default\wire\core\PageFinder.php line 416) #0 D:\inetpub\wwwroot\default\wire\core\Wire.php(386): ProcessWire\PageFinder->___find(Object(ProcessWire\Selectors), Array) #1 D:\inetpub\wwwroot\default\wire\core\WireHooks.php(723): ProcessWire\Wire->_callMethod('___find', Array) #2 D:\inetpub\wwwroot\default\wire\core\Wire.php(442): ProcessWire\WireHooks->runHooks(Object(ProcessWire\PageFinder), 'find', Array) #3 D:\inetpub\wwwroot\default\wire\core\PagesLoader.php(248): ProcessWire\Wire->__call('find', Array) #4 D:\inetpub\wwwroot\default\wire\core\Pages.php(238): ProcessWire\PagesLoader->find('has_parent=1, t...', Array) #5 D:\inetpub\wwwroot\default\wire\core\Wire.php(386): ProcessWire\Pages->___find('has_parent=1, t...', Array) #6 D:\inetpub\wwwroot\default\wire\core\WireHooks.php(723): ProcessWire\Wire->_callMethod('___find', Array) #7 D:\inetpub\wwwroot\default\wire\core\Wi This error message was shown because: you are logged in as a Superuser. Error has been logged. thanks for the moment.
  13. apparently i am alone with the problem. doesn't anyone else have a problem with mysql on windows? thank you
  14. hi, i have a strange problem with the search since we had to move to a windows server. what worked fine before, now throws out the following error message: Error: Exception: SQLSTATE[HY000]: General error: 3696 The regular expression contains an unclosed bracket expression. the whole thing runs under Windows Server 2016 (x64) EN MySQL 8.0.15 PHP 7.2 it is the normal search.php of PW 3.0.213. i googled a bit but couldn't find anything to help me. has anyone experienced anything like this? greetings
  15. hello, is there a possibility to define exceptions in a selector? this is my selector: $selector = "template=expertsItem, location=$location, department=$department, sort=expertSurname"; i would like this selector to give me everything from $ department but not the department with id 2131, for example. i have tried the following, unfortunately without success $selector = "template=expertsItem, location=$location, department=$department, department!=2131, sort=expertSurname"; do you have any idea for me how to solve this? thank you
  16. yes, that's the case with me. i have now installed the last update and everything works fine. existing backups now appear in the overview. thank you
  17. hi, at first sight the archives look good: about 500 MB. i was able to unpack the archive, everything seems to be in the right place ?
  18. thank you fly, thank you. now it works, but only with one exception. the package manager doesn't show the backups on the overview page, but you can find them under /site/assets/backups. i also tested different browsers, always with the same result. i also deleted the compiled files under module, no changes. and the logs: 14.05.2019 12:55:29: - package build failed. 14.05.2019 12:55:29: - package build failed, doesn't exist no stress, for me this is a small beauty error, i can live with it as long as the backups are made. but i don't mind if the overview page would work ? thx
  19. hi fly, I use the following environment: Windows Server 2016 Version 1.2.9 PHP Version 7.2.7 Duplicator Log: 13.05.2019 14:29:20: - job finished in 1.102115sec 13.05.2019 14:29:20: - package saved in local folder: 2019-05-13_14-29-19-xyz.package.zip 13.05.2019 14:29:20: - package built successfully in 1.097146sec as I said before, the database archive works perfectly, the rest unfortunately doesn't. thank you
  20. hello, maybe the topic has already been discussed, but unfortunately I didn't find anything to it. i have the problem that my site has to run under windows and iis, but Duplicator doesn't create a complete archive. the database can be archived, that seems to be complete, but the files don't. the archive always has only 1 KB. does anyone have an idea?
  21. hi teppo, muchas gracias, i will try it on monday in office, but i think i could work. of course ?
  22. hi dragan, i tried page->save() but i ran always in "internal server error". i think page->save() and this hook addHookAfter('save', $this, 'checkStateAndHide') looped everytime. i can't solved it.
  23. Hello, i'm writing my first module to learn and i would give my editors a handy way to unpublish pages. (i know this is possible with the settings-tab, but i want to solve it this way) on a page i have a checkbox "not active". if a editor check the box, pw should unpublish the page. for this i modified the helloworld-module like this but nothing changing on the page. how should i do this? thx public function init() { $this->pages->addHookAfter('save', $this, 'checkStateAndHide'); } public function checkStateAndHide($event) { $page = $event->arguments[0]; if(!$page->active){ $this->message("{$page->title} now hidden"); $this->page->addStatus(Page::statusUnpublished); } }
×
×
  • Create New...