Jump to content

itsberni

Members
  • Posts

    141
  • Joined

  • Last visited

Everything posted by itsberni

  1. Hi Guys, i use the embed-method "D" in Formbuilder. In the form i use some checkboxes for calculating. To achieve this i set the value of the checkbox like this: <input name="myCheckbox" type="checkbox" value="<?= $someValue ?>" /> When i send the Form, the value changes into the entry, i made in formbuilder in the Detail-Section of the checkbox-field. does anybody know, how to accomplish, that the Form sends my specific value? many thanks!
  2. Hi all, tried several things.....changed the php-version on the Server (down to 7.0). Updating pw to the latest master (123). Uninstalling and installing the module again. the result is the same. could there be any problem with the server (mittwald) to handle pdf-files in terms of security? any thoughts or suggestions? SOLUTION: The PHP-Version has to be 7.0.32 CGI - now it works!!
  3. Hy adrian, i installed the module over the pw-backend as Admin. it‘s all curios, because in my dev-enviroment with pw 3.0.123 and php7.0 it works. The difference between both cases is the Server-enviroment....
  4. Hi @Richard Jedlička thanks a lot for this useful modul!! Unfortunately i am running into following issue. When trying to upload a PDF i get this error and the upload fails. Failed to read the file (in /wire/modules/Inputfield/InputfieldFile/InputfieldFile.module line 790) I´m using PW 3.0.95 - and the FieldtypePDF 1.1.5. PHP Version: 7.2.4 ImageMagick: ImageMagick 6.9.4-6 Q16 i686 2016-06-03 Do you know anything about this? Thanks!
  5. @joshuag please take a look. The special characters are represented correctly in the remaining website. Could you please take a closer look at this issue?! Many Thanks! UPDATE @joshuag Found a dirty solution for this issue. Changes in the MarkupRecurme.module ( utf8_encode ) will do the trick. Lines 543 + 1248 543 'month' => utf8_encode($this->wire('datetime')->formatDate($event->start_date, trim($options['renderEvent']['monthFormat']))), 1248 $monthTitle = utf8_encode($this->wire('datetime')->formatDate($startTime, trim($options['monthFormat']))); Perhaps you will find a cleaner suloution and add it into your next update. Happy new Year to all you guys!!
  6. Hi, my html is already set to UTF-8. This effect only concerns the recurme calender rendering
  7. Hi, i noticed some problem with rendereing german umlauts. My definition: 'monthFormat' => '%B %Y', Is there something to keep in mind? Thanks
  8. Hi @joshuag is it possible to have 2 or more Timeperiods within 1 recurme-field? For example: Course1 ( template: Event with one recurme-field) takes place on two Times Thu 9:30 - 11am Wed 05:00 - 6:30pm How could i solve this? Many Thanks!!
  9. hi, I'm stucking with outputting some events.? in my project i use one page to show all available events as an overview. the pagestructure is as follows: - courses - course1 - course2 - course3 How can i get the course - dates/times while looping throw the course pages My code: $courses = $pages->find("template=event"); foreach($courses as $course) { $outEventList .= "$course->title"; $outEventList .= "$course->courseData"; // the recurme-field within the course - template } i also tried this within the foreach without results: $optionsCourse = array( 'selector' => 'id='.$course->id ); $eventDate = $recurme->find($optionsCourse); Any ideas how to access to the specific data for any course? Many thanks!
  10. Could be - but i don´t know, where to put the selector. do you have any code example?
  11. @joshuag perhaps, i could take at least a quick look at it, to go further with this....many thanks!
  12. Hi, ...run into another topic and didn´t found anything about it in the docu. My Site-structur is as follows: - events - Course1 - Course2 a.s.o. every course ( template=event ) has its own recurme field for events-dates. so far so good. on every specific course-site i want to show a calendar only with the dates of this specific course. For this i run into an issue and one question: Issue: The course-link looks like this: mysite/events/course1. If i klick on the calendar, to step one month further, it will end up with an empty calendar. The reason is, that the link, provided from the calenders arrows, look like this: mysite/events/?c=1&m=06&y=2018 The part course1 is missing before ?c=1&m=06&y=2018. Therefore the link has to be mysite/events/course1?c=1&m=06&y=2018 Question: Is it possible to show a calender ( $recume->renderCalendar ) only with the events from a specific course ( selector could be id=$page->id ) ? In my case: - Calendar with date of course1 on site course1 - Calendar with date of course2 on site course2 Thanks a bunch!
  13. ok - got it....many thanks and where can i manipulate this in die recurme-Inputfield in the Backend?
  14. Hi folks, is there any chance to set the date/time - format to german? e.g. 1:45pm should be shown as 13:45Uhr. May should bei shown as Mai a.s.o. is this possible to achive this over the array "renderEvent=>dateFormat"? I've played with it, but without any positive result.... Many Thanks!
  15. hi all, i've got some trouble submitting the form. in the logs i've got a "Date difference is out of range" - notification, every time a form has been submitted. i double checked all available and required fields. Do you have any idea? Thanks CF: 0.1.0 PW: 2.6.10
  16. Hi Wanze, very great module, very useful - thanks for making this. I think i'm doing some things wrong here because I couldn't get any ouput on the pdf. Only the header an footer - line is printed out. /xxx/xxx/site/templates/pages2pdf/_header.php /xxx/xxx/site/templates/pages2pdf/_footer.php I created a corresponding template in the pages2pdf-folder and defined it in the module configuration. But the only thing what i get is an empty page with this 2 lines above in the footer and the header. I've got a template/page where the content is only generated by the api. After the closing php-tag i tried the print out only the headline of this page with <?php $header = "Überschrift"; ?> <h1><?= $header ?></h1> No results at all. Even if i do <h1>Überschrift</h1> will give me an empty page. Where is my fault? Could you please give me an advice? Thanks a lot!!!
  17. Hi all! i've got a question using the optionsfield. is it possible to create a Textfield in a parentpage with comma seperated values. out of this values i will get selectable Option in the Child of this parent? i hope you could verify what i mean.... Thanks! For Example: ParentPage: textField: opt1, opt2, opt3, opt4 ChildPage selectOptionsField: 1=opt1, 2=op2, 3=opt3, 4=opt4
  18. Hi! a loggedin user has access to ony specific page. this page has th following structure: - Part 1 ( template part ) - subpart 1a ( template subpart ) - subpart 1b ( template subpart ) - subpart 1c ( template subpart ) - Part 2 ( template part ) - subpart 2a ( template subpart ) - subpart 2b ( template subpart ) - subpart 2c ( template subpart ) - Part 3 ( template part ) - subpart 3a ( template subpart ) - subpart 3b ( template subpart ) - subpart 3c ( template subpart ) the comments - field is implemted in the template "subpart". Now i want to have the possibility to make specific comments to each subpart - entry. It would be just perfect to store every specific comment-threat that belongs to it's subpart-entry! The field name & e-mail address should be already filled with the data from the logged in user ( users name / users mail address ). is this possible to manage?! Many Thanks!
  19. Hi adrian! i Could do that, of course. But i thought it would be easier to assign a spezific Page to a user. i solved it now with a different approach. I added a page reference field to the User Template. In the template.php i check for the User and simultaneously if the visited page = the referenced page in the users entry. That works for me. nevertheless thank you!
  20. Hi adrian, very usefull - thank you!! Is it possible to have "allowed users" additionally to "Allowed Roles"? I would like to give a specific user access to one specific page. With a role-access i couldn´t achieve that, because then many of the users with this role would have access to this page - and this is not desired.
  21. elabx, many thanks! Your solution does it. Works perfectly! Many thanks to all of you! Happy new year!
  22. Unfortunately, no... As part of pageReferenz i think i have to write "has_parent=parent, template=subitem-template, switched=1". But even this attempt failed - no results in that case....thanks anyway
×
×
  • Create New...