-
Posts
355 -
Joined
-
Last visited
-
Days Won
2
Everything posted by Mats
-
Published date not set and unable to perform update #12
Mats replied to Mats's topic in General Support
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 -
Published date not set and unable to perform update #12
Mats replied to Mats's topic in General Support
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. -
Published date not set and unable to perform update #12
Mats replied to Mats's topic in General Support
I changed the host so that error is gone. -
Published date not set and unable to perform update #12
Mats replied to Mats's topic in General Support
Still no luck with this code. Why is the published filed a datetime field and created and modified timestamps? -
Published date not set and unable to perform update #12
Mats replied to Mats's topic in General Support
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) -
Published date not set and unable to perform update #12
Mats replied to Mats's topic in General Support
Thanks @BitPoet! I'll try that. -
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.
-
+1 Bug report: https://github.com/processwire/processwire-issues/issues/452
-
Interesting read and a very nice PW site: https://www.ancientworldmagazine.com/dev/blog/built-using-processwire/
-
http://eizocolour.com/ https://processwire.com/about/sites/list/eizo-coloredge-living-breathing-colour/ https://www.kairosfuture.com/
-
Thanks!
- 41 replies
-
- photoswipe
- module
-
(and 1 more)
Tagged with:
-
Great module @blynx! Thanks for coding it. Would you consider making a caption option? I can't seem to find any at the moment.
- 41 replies
-
- 1
-
-
- photoswipe
- module
-
(and 1 more)
Tagged with:
-
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.
- 32 replies
-
- 11
-
-
Great News indeed!
-
Beautiful! Great work @bernhard
-
@hellomoto Hi! Do you get any console errors?
-
You're right the module set the dimensions.
-
Have you set width and height of the map? I always forget that.
-
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
- 3 replies
-
- 2
-
-
- reservation
- booking
-
(and 1 more)
Tagged with:
-
That sounds like a good solution. Thanks @BitPoet !
-
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.
-
[SOLVED] Images only appear when logged in as admin
Mats replied to Troost's topic in General Support
Could you share the complete template code? -
@pwFoo You can change markup and classes: https://github.com/processwire/processwire/blob/master/wire/core/InputfieldWrapper.php#L41
-
How do show full path of image on template plus different sizes
Mats replied to OpenBayou's topic in API & Templates
Hi! If you have an array of images, try this: $child->image->first()->url $child->image->first()->size(200,200)->url