Posts

Remove Gallery from File Explorer navigation pane in Windows 11

 Delete Computer\HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Desktop\NameSpace\{e88865ea-0e1c-4e20-9aa6-edcd0212c87c}   Credit: https://superuser.com/questions/1829494/how-to-remove-home-and-gallery-from-windows-11-file-explorer

How to fix "A newer version of OneDrive is installed"

Press the Windows key + R to open a Run window. Type regedit and click OK. Paste this path into the navigation bar at the top of the Registry Editor: Computer\HKEY_CURRENT_USER\Software\Microsoft\OneDrive Right-click the OneDrive folder and select Delete.   Credit: https://support.microsoft.com/en-us/office/how-to-fix-a-newer-version-of-onedrive-is-installed-f3d9a1d2-c8c2-426d-9332-dfc8a4af59fa

Remove icons in Navigation Pane in File Explorer Windows 11

 Computer\HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Desktop\NameSpace   Check the  Data value to confirm which icon. Backup the key in case you deleting the wrong icon (Delete the key but the icon does not disappear)

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

Find column in MSSql

    SELECT col.name AS 'ColumnName', tab.name AS 'TableName'     FROM sys.columns col     JOIN sys.tables tab ON col.object_id = tab.object_id     WHERE col.name like '%column_name_to_find%'     ORDER BY TableName,ColumnName;   Credit: https://intellipaat.com/community/6615/find-all-tables-containing-column-with-specified-name-ms-sql-server