-
Posts
404 -
Joined
-
Last visited
-
Days Won
2
Everything posted by zoeck
-
That's another report from 2015
-
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
-
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...
-
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/
-
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
-
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
-
Hehe sure but i think it‘s good for Processwire but the 5th Place was already before my post here...
-
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)
-
Theres a conflict Its to separate different values of the selector... https://processwire.com/api/selectors/#values
-
Getting tab label in different languages on frontend fails
zoeck replied to Juergen's topic in API & Templates
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); -
Getting tab label in different languages on frontend fails
zoeck replied to Juergen's topic in API & Templates
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 -
Getting tab label in different languages on frontend fails
zoeck replied to Juergen's topic in API & Templates
i think theres a missing comma $tablabel = $page->template->getTabLabel('tab1', $user->language->id); -
Posting to a php folder without creating a page
zoeck replied to nickngqs's topic in General Support
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... -
To add 3 url-link field to same template
zoeck replied to franciccio-ITALIANO's topic in Getting Started
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 -
To add 3 url-link field to same template
zoeck replied to franciccio-ITALIANO's topic in Getting Started
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: -
To add 3 url-link field to same template
zoeck replied to franciccio-ITALIANO's topic in Getting Started
I think you need "Multipliers": https://processwire.com/api/modules/profields/multiplier/ But this is a "ProFields" Module, it costs $129: -
Database connection problem - create database if not exists
zoeck replied to answersmode's topic in General Support
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"... -
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
-
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....