Recently Updated Topics
Showing topics posted in for the last 7 days.
- Today
-
Thank you @Stefanowitsch I didn't know there was documentation existing for this! I knew there had to be something I was missing. I know RockDevTools is running now because I see the sse request in the browser console. but it gets a 404. any ideas the next place i can look at? @bernhard, it may be helpful for others who find your module in the Modules Directory if there was a more direct reference to the docs on baumrock.com? Right now, the RockDevTools Module page just says "see docs folder", at which point I just think to go to github and look at the docs folder, which also has no reference to the baumrock documentation.
-
Thanks Ivan 🙂 Have just released version 0.0.3 which 🤞is good to go. Available at https://github.com/clipmagic/LoginPassKey/tree/main This latest version also adds support for AppApi as well as passkey login for admin and LoginRegisterPro Will definitely add some screenshots/videos. In the meantime... Logging into admin: Logging in with LoginRegisterPro on the frontend: and when a user passkey login fails:
-
Module: Video embed for YouTube/Vimeo (TextformatterVideoEmbed)
PWaddict replied to ryan's topic in Modules/Plugins
@ryan will you consider to add an option to populate the loading="lazy" attribute to iframe tags? Although with a simple hook like below we can get the job done but it would be great if we can have it available on the module. $wire->addHookAfter('Page::render', function(HookEvent $event) { if ($this->wire('page')->template->name != "my-content") return; $event->return = str_replace("<iframe ", "<iframe loading='lazy' ", $event->return); }); - Last week
-
This issue is solved with the latest update (>= 2.2.70).
-
The group block has a link option now, which wraps it's content inside an <a> element. (Marked as Solved)
-
☁️ Duplicator: Backup and move sites
herr rilke replied to flydev's topic in Module/Plugin Development
@BigRed - same problem here. did you find a way to handle? can't find anything in the logs, working on 1256 MB memory, 120 sek execution time, set FLUSH to 500MB, pw 3.0.240, duplicator v1.5.4 -
How do I restrict viewing custom admin pages. I followed this tutorial and added a new page. It's also visible in the header in the backend. This is my code and I also created the permission and added to a role. As superuser I'm able to view this custom admin page, but as non-superuser with the permission eventbrite-import you don't see it in the backend header menu <?php namespace ProcessWire; class EventBriteImport extends Process { public static function getModuleinfo() { return [ 'title' => 'Eventbrite', 'summary' => 'Triggers eventbrite import and display an overview', 'author' => 'me', 'version' => '0.1', 'permission' => 'eventbrite-import', 'page' => [ 'name' => 'eventbrite', 'title' => 'Eventbrite', ], ]; } …
-
Larger files uploads are not compleating
Mark_invisu replied to Mark_invisu's topic in General Support
Hello FireWire, I set allowExceptions to true the developer tools after the timeout returns the following error: JQMIGRATE: Migrate is installed, version 1.4.1 InputfieldFile.min.js?v=129-3.0.246:1 POST https://poeshappyplace.co.uk/control/page/edit/?id=1&InputfieldFileAjax=1 504 (Gateway Timeout) uploadFile @ InputfieldFile.min.js?v=129-3.0.246:1 traverseFiles @ InputfieldFile.min.js?v=129-3.0.246:1 (anonymous) @ InputfieldFile.min.js?v=129-3.0.246:1Understand this error VM220:1 Uncaught SyntaxError: Unexpected token '<', "<html> <h"... is not valid JSON at JSON.parse (<anonymous>) at XMLHttpRequest.<anonymous> (InputfieldFile.min.js?v=129-3.0.246:1:6460) (anonymous) @ InputfieldFile.min.js?v=129-3.0.246:1 XMLHttpRequest.send uploadFile @ InputfieldFile.min.js?v=129-3.0.246:1 traverseFiles @ InputfieldFile.min.js?v=129-3.0.246:1 (anonymous) @ InputfieldFile.min.js?v=129-3.0.246:1Understand this error Thanks, Mark -
How to add Excerpt or truncate a textarea in search page result
psy replied to Edward Ver's topic in General Support
There are several ways to truncate text. In CSS, see https://developer.mozilla.org/en-US/docs/Web/CSS/text-overflow In PHP, https://www.php.net/manual/en/function.substr.php In ProcessWire, https://processwire.com/api/ref/sanitizer/truncate/ Number 3 is my choice -
Thank you all for clarification. I am doing some tests atm with phpDocumentor to see if it can give decent results. Guess the PWDOC parser is custom magic inside https://processwire.com/store/pro-dev-tools/api-explorer/ Let's see if we can do without or reengineer it...
-
Correct. You have to test everything with your setup, workflow, and everything. Even between projects I have to tweak lots of things. I guess in total about 5 different variations of setup are in that repo. Test it. Tweak it. Even feel free to raise a PR.
-
Existing Processwire website. I am in need of a Processwire genius with assistance in updating and making changes on an ongoing basis market changes in lead development and social media specifically the Automotive Industry. I am located just outside Vancouver BC Canada, PST and would like to find someone local I can colab with that understands the company needs, loves Processwire platform and can make it work to the best of its ability. This is an existing website and its functioning pretty good but would love to find the right person to help make it better. Feel free to message me back here with your experience, availability and where your from with your contact info and I will reach out to you. Alternatively I can be reached at taniamheighton@gmail.com TY in advance, Tania
-
I just wanted to add something for anyone who searches and lands here. With the host I'm on, even if the PHP timezone is set to (in my case) 'Australia/Sydney' and the PW installer matches that, the dates are still out. The only way for me to install PW without modding the config each and every time is to set the PW installer to UTC. I don't know if this is the right or wrong way to go about it but it seems to work.
-
[SOLVED] Define blocks once, share across RPB fields
FireWire replied to FireWire's topic in RockPageBuilder
@bernhard I saw that but didn't click. I wasn't sure if that would clone everything and I should have tried it out. -
I need to set up monitoring on my servers to detect this. I didn't realize DigitalOcean has a metrics tool. Going to set that up now. I will look into MariaDB using too much memory in general though. Thanks for the tip.
-
Answer: set this in site/config.php as PHP 7.4 doesn't support it and PHP 8.3 respects it and the default is false which will lead to different responses than what is expected. $config->dbOptions = [ \PDO::ATTR_STRINGIFY_FETCHES => true ];
- 1 reply
-
- 3
-