diff --git a/.github/workflows/deployment.yml b/.github/workflows/deployment.yml
index e9bb29fef..eb60bea96 100644
--- a/.github/workflows/deployment.yml
+++ b/.github/workflows/deployment.yml
@@ -39,7 +39,7 @@ jobs:
         run: |
           git clone https://${{ secrets.GH_PAT }}@github.com/roadmapsh/web-draw.git .temp/web-draw --depth 1
           npm run generate-renderer
-          npm run compress:images
+          # npm run compress:images
           npm run build
 
       # --------------------
diff --git a/src/data/roadmaps/php/content/reading-files@S9wTlkbv9-R6dohhZ47hs.md b/src/data/roadmaps/php/content/reading-files@S9wTlkbv9-R6dohhZ47hs.md
index 3cf1c45e7..a582df481 100644
--- a/src/data/roadmaps/php/content/reading-files@S9wTlkbv9-R6dohhZ47hs.md
+++ b/src/data/roadmaps/php/content/reading-files@S9wTlkbv9-R6dohhZ47hs.md
@@ -4,7 +4,7 @@ Reading files is a common task in PHP and it provides a range of functions for t
 
 Here's a small example using `fgets()`:
 
-```PHP
+```php
 $file = fopen("example.txt", "r"); 
 if ($file) {
     while (($line = fgets($file)) !== false) {