sebastiaan
Members-
Posts
19 -
Joined
-
Last visited
Everything posted by sebastiaan
-
-
-
no none of the other actions work either, made a hard reload, also refreshed all modules to try to fix it that way but nope.. made a bd("test") but none of the logs seem to do anything
-
Hi Adrian, thanks for the advice, unfortunately that didnt fixed it since that is what i had to do to get 1.1.3 listerpro working i downloaded the latest dev processwire version and still didnt fixed it:(
-
expected result(on old server still works with old processwire version: what happens with the latest processwire version with processlisterpro version 1.1.3: ___executeActions() seems to not be activated?
-
upgraded processwire from version: 3.0.42 to version: ProcessWire 3.0.123 now listerPro actions execute function wont trigger anymore. ___executeActions() listerPro version: 1.1.0
-
cant get image to display from child page
sebastiaan replied to sebastiaan's topic in General Support
yes that was it. thank you very much:) -
<?php foreach($page->children as $child) echo " <li><a href='$child->url'> <img class='photo' src='{$child->project_logo->url}' alt='{$child->project_logo->description}' width='200' height='200' /> $child->title, omschrijving:<br> $child->project_summary </a> </li>"; ?> </ul> trying to display all child pages with logo, but when i try to display it it shows a 403 forbidden error,:
-
i managed to get it al working from bitbucket master branch but now none of my modules are installed0--0 and if i go to setup my old modules are still there but when i go to modules all the correct ones that i expect are there
-
yeah i was trying to do it other way around we have a development and production only i wanted a local installation and i have all the files but even when i change the config i keep getting errors so i thought maybe i can use this to get it to work locally
-
yeah but you would think that around 5 milion bytes would be able to handle 4096 bytes...
-
im trying to export a live (development)site so i can set it up locally, but when i try to export it i get this error
-
thanks for all your reply's and helpfull tips
-
Module Profile Export module (also upgrade PW 2.0 to 2.1)
sebastiaan replied to ryan's topic in Modules/Plugins
im trying to export a live site so i can set it up locally, but when i try to export it i get this error -
yeah i saw that page but didnt realise it could have been a empty selector, thanks thanks this worked for what i wanted, and will install one of those
-
How do you get all roles in a module? (i want to create a migration to set the permissions of templates and fields) i tried : $rolles = wire('roles'); var_dump($rolles); var_dump($roles); var_dump($this->roles); but all 3 return 0 while i have 3 different roles(guest, superuser, test)
-
I wanna create a migration script that creates fields and being able to set those field's permission but i cant seem to find a way to set a fields permission programmatically
-
thanks it worked
-
Good afternoon, i have made a module that gets child pages from my contact form, now i am trying to make it so you select checkboxes and then be able to delete them. since i wasnt able to make event listener on the .module i created a .js file where i handle al the logic but now i am stuck on the delete part since you cant reference $pages in the .js file how would i go about deleting pages commentManager.js commentManager.module