Jump to content

Mats

Members
  • Posts

    355
  • Joined

  • Last visited

  • Days Won

    2

Everything posted by Mats

  1. I cant find any errors but the "Update #12: Initializing" shows up in the system-updater log and in the SystemUpdaterModule every third second. If bypass the update (skip to update 13) the published date is saved but the existing pages doesn't seem to get any published date set: From a another PW-site: Update #12: Completed! Update #12: Populated values to 'published' for 86 pages Update #12: Added 'published' column to pages table Update #12: Initializing update
  2. Not sure on how to show sql_mode? sql_mode: NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION I'm on ProcessWire 3.0.89 and Maria DB now.
  3. Still no luck with this code. Why is the published filed a datetime field and created and modified timestamps?
  4. Now i get this error in the SystemUpdaterModule: 2018-01-26 19:30:40 ERROR: Update #12 ERROR: Failed to apply update 12 - SQLSTATE[HY000]: General error: 1 Can't create/write to file '/tmp/#sql_7b5f3_0.MYD' (Errcode: 28)
  5. One of my sites is unable to perform update #12 and therefore not able to set published date. I've found some similar issues but no solution has worked so far. Any ideas in how to get this working is highly appreciated.
  6. +1 Bug report: https://github.com/processwire/processwire-issues/issues/452
  7. Mats

    ProcessWire on the web

    Interesting read and a very nice PW site: https://www.ancientworldmagazine.com/dev/blog/built-using-processwire/
  8. http://eizocolour.com/ https://processwire.com/about/sites/list/eizo-coloredge-living-breathing-colour/ https://www.kairosfuture.com/
  9. Great module @blynx! Thanks for coding it. Would you consider making a caption option? I can't seem to find any at the moment.
  10. If Jquery is removed i'd like to see plain vanilla js and no framework in between. Just like like there is no PHP framework in PW.
  11. @hellomoto Hi! Do you get any console errors?
  12. You're right the module set the dimensions.
  13. Have you set width and height of the map? I always forget that.
  14. I did something similar (if i understand your question correctly) on a calendar on this site: http://eketorp.se/evenemang/?datum=2017-09-29#pickedDate Only dates with events or opening hours are selectable. Active dates are json used by flatpickr: https://github.com/chmln/flatpickr
  15. That sounds like a good solution. Thanks @BitPoet !
  16. I’m building a simple ticket booking system for our events. I’m considering two different solutions: The first approach is creating one page per ticket and a reference to a booking page with the contact info. This should be faster when checking for ticket availability by using $pages->count(). The other one is a one page per booking with an integer field holding the ticket quantity. Downside is having to use $pages->find() but only having to create one page per booking with the API. My biggest concern is listing the events and the ticket availability for each event, loading all bookings. At the most one event has 300 bookings. Any ideas are welcome.
  17. Could you share the complete template code?
  18. @pwFoo You can change markup and classes: https://github.com/processwire/processwire/blob/master/wire/core/InputfieldWrapper.php#L41
  19. Hi! If you have an array of images, try this: $child->image->first()->url $child->image->first()->size(200,200)->url
×
×
  • Create New...