-
Posts
1,328 -
Joined
-
Last visited
-
Days Won
16
Everything posted by elabx
-
Yes! Either in the TinyMCE module settings, or in each field there are options for overriding the json config of the TinyMCE instance, and you can do sth like: site/templates/assets/tiny.css is my custom css file. In all fairness, I have only tested this in the global module config, not in the individual field context.
-
Very exciting news! Thanks for letting us know! Can't wait to see the result!
-
If its transactional I'd say SES, mailgun, etc. I've used mailgun for years and have proven worth the cost, very useful to debug deliverability issues too.
-
Options field allowed in custom image/file fields?
elabx replied to elabx's topic in General Support
Fantastic idea! Thank you! I forgot about this module and FieldtypeCustom felt too new. -
Hi everyone! I see in this post that introduced the custom field to ProcessWire a Radios field! BUT, in the source code of FieldtypeFile this is a fieldtype that doesn't seem to be allowed, I also don't see either where this could be updated 🤔 Thanks for further answers!
-
I asked this in the DDEV discord kinda betting there would be more interest or at least pointing to a resource, but didn't have much success. I haven't seen docker recommended for production db's and comments around web as to why this is not a good idea, can't remember details right now, just remember I have dived into this rabbit hole before. But I'd love to be proved wrong! The only tool I've taken a look at as a possible aid for using docker for production is Basecamp's Kamal and they seem to assume you will be using a managed db from a provider and mount volumes to the docker containers if you need filesystem in the application (which is mandatory in the case of ProcessWire?), but there's accessories thingy? Anyway, I'm really in the same spot as you are @TwoWheelDev 😞 Love the dev experience docker offers, would love to take that to deployment without it being too expensive hosting wise.
-
Not sure if this might be doable with hooking into something earlier, but figured it might be convenient to have this possibility. Example, to check for an authenticated user and escape any route that has this middleware setup. Maybe this just calls for its own implementation under a single /{whatever-path}/ hook?
-
Using different javascript for multilanguage website
elabx replied to Edward Ver's topic in General Support
Try maybe: if($user->language->name == "en"){ //Processwire magic } -
Might be easier to tell what I exclude which is: /site/assets /vendor multiple things like "site/modules/ComposerModule" , example of any module that I manage through composer rather than git. .env - I do this to be able to include config.php in version control. On my todo is to try: https://github.com/uiii/processwire to also handle PW core as a composer dependency.
-
I'd think if you want to bring updates from v1 further into v2, which could seem the case, then maybe a fork could be a good idea and have the possibility to update it from upstream. Although in my personal experience when my expectations where just like I mention, I have always ended up releasing the fork from its relationship with the upstream repo lol but alas, that's more of a me problem haha.
-
In recent ProcessWire versions (3.0.241+), has anyone encountered issues where certain fields are missing when searching in the admin interface? Example: I would have expected for the query to find another existing field named "tag" But this more specific query does find it.
-
No sure if you need backwards compat but maybe try ESM for the sake of moving on with your work? https://fullcalendar.io/docs/initialize-browser-esm
- 17 replies
-
- javascript
- js
-
(and 2 more)
Tagged with:
-
I am using TinyMCE to define UIkit buttons, but have come across the issue that editors end up with buttons that look like: "uk-button uk-button-primary uk-button-secondary" Because it merges all the added classes, when ideally i'd only want uk-button-primary OR uk-button-secondary I see it's discussed here what to do and didn't really understand so wanted to ask if someone knows the details on how to configure this in ProcessWire. https://github.com/tinymce/tinymce/issues/4035 Thanks in advance!
-
[Solved] How you work with pw on external server
elabx replied to olivetree's topic in Getting Started
Thanks for sharing! That's a nice setup I get it now! I Wouldn't these tools support ProcessWire? (I remember it being available on Softaculous) Or are some parts of these tools tightly integrated with Wordpress/Bludit? -
[Solved] How you work with pw on external server
elabx replied to olivetree's topic in Getting Started
How did you use to do it? I think most of our solutions should apply to any PHP based CMS. -
[Solved] How you work with pw on external server
elabx replied to olivetree's topic in Getting Started
Configure the repository cloud provider (gitlab, github, etc) to use pipelines to upload with rsync on commit of main branch. If it's content stuff, I assume I have to go do it manually or create a migration that adds new fields, templates, new pages, etc. -
Pro shop not working (I am blocked from all forums)
elabx replied to cpx3's topic in General Support
Ryan seems to be traveling at the moment judging from his last messages in the News & Announcements forums so he might take a bit to reply, I'd wait 'till the weekend which is when he seems to be more active regarding product support.- 1 reply
-
- 1
-
Interesting! Wouldn't hooking into PageFinder::find() work?
-
My internet persona was born in these sort of forums when I was a teen, and I think it'll die on this hill! I REALLY appreciate having a forum for ProcessWire! Wouldn't exaggerate to say it's one of the reasons I've found myself so comfortable in the community.
-
session variable randomly not set in multi instance context
elabx replied to elabx's topic in General Support
Yep, no success. -
Fantastic! Really appreciate this @jacmaes
-
I'd really appreaciate if I could see these! I'm thinking of using Ploi for server management but they only support nginx.
-
Developer environment for ProcessWire 3.x on Litespeed with MariaDB?
elabx replied to tinacious's topic in General Support
Runcloud manages servers with OLS: https://runcloud.io/ they also use MariaDB. Maybe you can spin it up for a month, a VPS for a few days and you should be good to go. -
Anyone using nginx in 2024?? Any updates on the available configs??