tires
Members-
Posts
253 -
Joined
-
Last visited
Profile Information
-
Location
Germany
Recent Profile Visitors
4,315 profile views
tires's Achievements
Sr. Member (5/6)
64
Reputation
-
Thank you very much! It was really quite easy with ProcessAdminCustomPages and a foreach loop! $logentries = $log->getEntries("my-email-log", ["limit"=>"20"]); echo "<ul>"; foreach ($logentries as $logentry) { echo "<li>"; echo $logentry["user"]; echo " <br> "; echo $logentry["date"]; echo " <br> "; echo $logentry["url"]; echo " <br> "; echo $logentry["text"]; echo "</li>"; } echo "</ul>"; With chart.js, I was even able to implement a diagram.
-
I have a log file for sent emails. The log file is structured as follows: 2025-11-24 18:00:37 guest /contact/ Email request sent Is it possible to display this log in the backend on a separate page and perhaps even as a diagram? Or is there a module for this? I would be grateful for any advice!
-
Is there a solution in the meantime for ckeditor and manual wordbreak like: <wbr> ­ I have the feeling that things always get complicated when it comes to CKEditor and special configurations.
-
@virtualgadjo Thank you very much for your reply. The “select” fields you mentioned do not appear in my image field when I add them as custom fields. Apparently, not all fields can be used.
-
How can I use a radio button with multiple options (as shown below in the image under “license”) in an image field? Is this also possible with a select field? Which fields can I use?
-
I need a simple htpasswd protection for my website
tires replied to tires's topic in General Support
Thank you!!! So you just have to put the code at the end of the htaccess file? Is that the only trick? -
In my backend the following error is displayed: Error upgrading module (SeoMaestro): SQLSTATE[42S02]: Base table or view not found: 1146 Table 'db123456_1.field_SEO' doesn't exist Is this a known issue or is there a problem in my templates or fields?
-
I need a simple htpasswd protection for my website
tires replied to tires's topic in General Support
Thank you for your answer. I had already seen the module. Nevertheless, I would prefer a simple solution directly via the htaccess file. If there is a solution? -
I need a very simple htpasswd protection for my staging installation. So I inserted these lines into the processwire .htaccess at the very beginning: AuthType Basic AuthName "protected" AuthUserFile /usr/home/dev/.htpasswd Require valid-user The file .htpasswd contains the following code (i.e. admin / admin): admin:$2y$10$yuBaR6xKApq7F1BmOXyzbeEz3kQBpuI5p4TJCvRD4VXP2MRmIoBFy For some reason i get a 404 after login.
-
module PrivacyWire - Cookie Management & async external asset loading
tires replied to joshua's topic in Modules/Plugins
Ok, I have now found out that you can create a Consent banner with button, with the attributes: class="require-consent" data-src="https://www.youtube-nocookie.com/embed/abcd" data-category="external_media" data-ask-consent="1". This also works wonderfully, BUT only for 1 element. I have a YouTube video (iframe) and a google map (div) on my website. Unfortunately, a banner with a consent button is only displayed for the first element. Only when I comment out the iframe, the banner for the div #standortmap is displayed. echo '<iframe class="require-consent" data-src="https://www.youtube-nocookie.com/embed/123" data-category="external_media" data-ask-consent="1" data-ask-consent-message="Externere Inhalte von google.com und youtube.com werden aus Datenschutz­gründen erst nach expliziter Zustimmung geladen." data-ask-consent-button-label="Video laden" id="youtube-video" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen width="100%" height="100%" ></iframe> <br><br>'; echo '<div id="standortmap" data-lat="11.123" data-lng="1.123" data-zoom="12" data-category="external_media" data-ask-consent="1" data-ask-consent-message="Externere Inhalte von google.com und youtube.com werden aus Datenschutz­gründen erst nach expliziter Zustimmung geladen." data-ask-consent-button-label="Karte laden" style="height: 300px;"></div>'; Is this an error? Or can the module only display one banner at a time? -
module PrivacyWire - Cookie Management & async external asset loading
tires replied to joshua's topic in Modules/Plugins
I embed youtube videos and google maps into my site in various ways. To make the site privacy compliant, I would like to display an overlay above each video and map with a button “Load content” (loads the content once) and “Always load content” (sets the corresponding privacy wire cookie an loads the contents always). Is there already a solution for this? What is the best way to do this? -
Thanks a lot Gideon!
-
How can I make the trash in page tree visible for certain user roles and give them the option to restore pages from the trash?
-
Would you duplicate pages with matrix repeater content
tires replied to tires's topic in General Support
Thank you for your answer. I'll give it a try then.