Jump to content

zoeck

Members
  • Posts

    382
  • Joined

  • Last visited

  • Days Won

    2

Everything posted by zoeck

  1. Hello, i have one question. I created some templates to manage customers: - customerlist (Parent) -- customer (Child of customerlist)) --- customerlocation (Child of customer) This is working without problems, i can create multiple locations for the customers and also multple custumers... But now i have another Template "projects": - first i have to choose the customer, - then the location (there should be only the locations of the customer) But how can i create this? I know, theres a module for this: But i think this is too much to select the customer location (i just need it for this single field ) I hope somebody can help me Best Regards zoeck
  2. Its not exactly what you are looking for, but do you know the „Tracy Debugger“ Module from adrian? with this Module you can See all fields with names on the page (And many many other things) i think its a must have for processwire developers
  3. And if you have no user for this website, just use bugmenot http://bugmenot.com/view/packtpub.com
  4. That's another report from 2015
  5. Because it's a very very nice system First time i heard about processwire was in a german print magazine... (Summer 2017 ) "c't special Webdesign": https://shop.heise.de/katalog/c-t-special-webdesign
  6. You don't want to do this. You are overwriting $page which is a native ProcessWire variable. Same goes for $pages, $template, etc. You want to use different variable names (in general) I think this is not good when you use the $page Variable here... But why you dont use "$mypage" for example? you only have to use "$mypage" instead of "$page" inside of your Template...
  7. i think you are looking for this: if( $page->id == 1 ) { $yourpage = $pages->get("id=".$sanitizer->int($page->pageselect->id)); echo $yourpage->title; } It's a bad idea to replace/overwrite the existing "$page" variable like in your code! Info: $sanitizer->int This is only for security reasons i'm not sure if we need it here... but it works https://processwire.com/api/variables/sanitizer/
  8. Is the "page2use4homepage" field a repeater field? can you show us a screenshot of the repeater configuration (and template config)? That doesn't make sense, because a repeater has "no values", only the fields inside of the repeater
  9. When you check it with "isit.pw", it says its not pw: http://isit.pw/?url=http%3A%2F%2Fwp10757029.server-he.de%2Fkonfigurator%2Fpublic%2Findex.php%2Fkonfigurator%2Fkonfiguration
  10. Hehe sure but i think it‘s good for Processwire but the 5th Place was already before my post here...
  11. And here are the official results ~4,7% for Processwire (33,9% of the „Other“ results) 4th Place https://www.drweb.de/diese-cms-nutzen-leserinnen-dr-web-magazins-alltag/ (German)
  12. Theres a conflict Its to separate different values of the selector... https://processwire.com/api/selectors/#values
  13. Okay, same problem here with the FieldsetTabOpen Field... I just checked it with the default "content" tab of the template... /edit: okay, now i get the Label $tablabel = $page->fields->tab1->getLabel($user->language->id);
  14. Oh, okay When i use "$user->language->id" inside of the "getTabLabel", theres an error (tracy )... You can use it without "->id": $tablabel = $page->template->getTabLabel('tab1', $user->language); i checked it, and it works
  15. i think theres a missing comma $tablabel = $page->template->getTabLabel('tab1', $user->language->id);
  16. Why not post to the page that contains the form? Then just check if the user posted the form, and send the data to the database...
  17. Install the "Repeater" Module Create a new Field: Type - Repeater Change "Repeater item visibility in editor" to "Items always open" In this Field, Add one field (your url field) in the details tab and change the value of "minimum/maximum number of items" to 3 Add the repeater field to your template Now you have 3 identical fields in one template... this is the "free" version without the ProFields Module
  18. Oh, i checked it, and it's also possible to set the repeater to "min. and max. 3 Values"... then it looks like this: And the config:
  19. I think you need "Multipliers": https://processwire.com/api/modules/profields/multiplier/ But this is a "ProFields" Module, it costs $129:
  20. I think theres a Problem with your user rights. You have a Database "itinffcl_kwbdm" (Screenshot), and your backup create (or trys to create) a database with the name "lwteswm664_ltingesjfo_itbd". Your user have no rights to create a new database. I think you want to import the backup to the "itinffcl_kwbdm" database? If you just want to import the data, you have to delete the CREATE DATABASE command inside of your backup file. Or you can change the Database name inside of your backup from "lwteswm664_ltingesjfo_itbd" to "itinffcl_kwbdm"...
  21. Theres a CMS voting on a known german website: https://www.drweb.de/welches-cms-verwendest-web-projekte/ And the interesting part: 5th Place in the ranking is very nice and theres a planned test of processwire on drweb.de 1. WordPress 2. Typo3 3. Joomla 4. Contao 5. Processwire 6. Drupal
  22. Im looking for a nice UIKit 3 tutorial, can anybody help me ? Theres Nothing at udemy for example at the Moment i only use Bootstrap....
×
×
  • Create New...