Posts

Showing posts from August, 2024

File cannot open in append mode in Laravel in Rocky Linux

 After changing permission: sudo setenforce 0   Credit: https://stackoverflow.com/questions/63203144/file-could-not-be-opened-in-append-mode-failed-to-open-stream-permission-denie 

How to open the old System Properties on Windows 11

 run sysdm.cpl   Credit: https://www.c-sharpcorner.com/article/how-to-addedit-path-environment-variable-in-windows-11/

Determine the PHP version, thread safety and architecture on Windows

Determine the PHP version: php -i|find "PHP Version" Determine the thread safety php -i|find "Thread Safety" You’ll have enabled for thread safe or disabled for not thread safe Determine the architecture php -i|find "Architecture" You’ll have x86 for 32 bits and x64 for 64 bits Credit: https://mlocati.github.io/articles/php-windows-imagick.html