Jump to content

horst

PW-Moderators
  • Posts

    4,090
  • Joined

  • Last visited

  • Days Won

    88

horst last won the day on March 29

horst had the most liked content!

About horst

  • Birthday 11/05/1955

Contact Methods

  • Website URL
    https://nogajski.de/

Profile Information

  • Gender
    Male
  • Location
    Aachen, Germany
  • Interests
    Photography; PHP, HTML, SCSS, CSS;

Recent Profile Visitors

45,456 profile views

horst's Achievements

Hero Member

Hero Member (6/6)

5.9k

Reputation

53

Community Answers

  1. horst

    A brand new day

    πŸ˜„ If I could, I would turn it off for ever, but haven`t found a way. So I use a very low gliw and 80% is white light. I found this in a local media store for under 50% of the regular price, maybe between 5 - 7 years ago.
  2. horst

    A brand new day

    Since back in 1996 I'm a big fan and user of the smallest Cherry Keyboards, with and without NumPads. But mainly the types without NumPads, CHERRY G84-4100: But on my primary Desktop working place I use a Razer Huntsman Elite RZ03-0187 :
  3. Exactly. That's the reason. πŸ™‚
  4. 1) 37 2) 31 3) 21 (but regularly there are not more then 8 - 12 templates in my websites)
  5. horst

    I'm back

    Hey, welcome back @Soma! Great to see you here (again). So, I'm my self are away from PW since around 2022-08. I only followed a bit by reading some of Ryan's blog posts and @teppo's ProcessWire Weekly. Well, maybe this summer I'll be able to work more with PW again and participate here in the forum. πŸ’¬
  6. horst

    Fontawesome brand icon

    Hi Andreas, @AndZyk please can you open a new discussion (and maybe drop the URL here)? πŸ™ πŸ’™ πŸ™ Regards, Horst πŸ™‹β€β™‚οΈ
  7. Hey, today a got this: https://github.com/FortAwesome/Font-Awesome/issues/9028 They closed all open brand icon requests and provide a link to new github discussions for new requests re-requests. So, should we do this, also when the first request is over 9 years old without any action(s) from their side? ???
  8. Many thanks for this useful tipp, ... ... & congrats to this "lucky number post"! 😁
  9. @adrian - thanks! Another question arrived. And sorry if it sounds a bit stupid. πŸ™‚ I opened a GitHub-Issue and wanted to add the label "AdminThemeUikit" to it, but could not find out how to add labels at all?!? πŸ˜… The last two or three years I only use Git on CLI, (together with the gh.exe), not the online GUI. Can we self add labels there, and if yes: how? Or is it left to @netcarver as issue-repo-admin? (greetings! πŸ‘‹πŸ™‚) https://github.com/processwire/processwire-issues/issues/2154
  10. ... I'm a bit late to it! πŸ™‚ Used it first time now, and found some style errors on configurable module pages, when changing between "Light mode" and "Dark mode". Into which thread can / should I send this? Or have I to post it on Github? ...
  11. Hey, hey! πŸ™‹β€β™‚οΈ I remember that there is somewhere & somehow the possibility to define / change the loading priority of modules during the PW start procedure. (Something from default 0 up to +100 or down -100, if I remember right?) But where is it or how can we do this? Please help me! πŸ˜‡πŸ˜„
  12. I think, you only need to change to CAI4, to get this work. I will search for the correct link here in the forum with instructions for the change from CAI3 to CAI4. EDIT: here is the link: https://processwire.com/talk/topic/23294-croppableimage-with-webp-support/ ...
  13. Do you use CroppAbleImage 3 or 4 ??
  14. Deprecation warnings say, that it potentially may not be ready for 8.4.2 or 8.4.3 or any other further version. But in my understanding, it is ready for PHP 8.4.0 and 8.4.1. πŸ™‚ If the deprecation warnings bother you, you can disable showing only those messages with a call of PHPs set_error_handler(): /** OWN ERROR HANDLER FOR DEPRECATION NOTES ************************************/ function myLocalDevDeprecationErrorHandler($errno, $errstr, $errfile, $errline) { return true; // true | false = suppress further processing } // preceed the callback function name with the PW namespace, // and define the error types that should passed to the function set_error_handler('ProcessWire\myLocalDevDeprecationErrorHandler', E_DEPRECATED); /** OWN ERROR HANDLER FOR DEPRECATION NOTES ************************************/ I often use this directly in site/config-dev.php, when I want to collect them, but only show them collected at the end of pages in dev local. /** OWN ERROR HANDLER FOR DEPRECATION NOTES ************************************/ function myLocalDevDeprecationErrorHandler($errno, $errstr, $errfile, $errline) { // CHECK / CREATE COLLECTION CONTAINER if (!isset($GLOBALS['DEPRECATION_WARNINGS_BAG'])) { $GLOBALS['DEPRECATION_WARNINGS_BAG'] = []; } if (!is_array($GLOBALS['DEPRECATION_WARNINGS_BAG'])) { $GLOBALS['DEPRECATION_WARNINGS_BAG'] = []; } // DO NOT SHOW THIS KNOWN THIRD PARTY ONES : $hideThisOnes = [ //'FileCompiler', 'Duplicator', 'ProcessCustomUploadNames', ]; foreach($hideThisOnes as $item) { if (preg_match("/{$item}/", $errfile)) return true; } // ADD IT TO THE COLLECTION $GLOBALS['DEPRECATION_WARNINGS_BAG'][] = [$errfile, $errline, $errstr]; return true; // true | false = suppress further processing } // preceed the callback function name with the PW namespace, // and define the error types that should passed to the function set_error_handler('ProcessWire\myLocalDevDeprecationErrorHandler', E_DEPRECATED); /** OWN ERROR HANDLER FOR DEPRECATION NOTES ************************************/
Γ—
Γ—
  • Create New...