Skip to content

Commit

Permalink
add instructions to locate log error files
Browse files Browse the repository at this point in the history
  • Loading branch information
arhimede committed Jul 2, 2024
1 parent af6a2be commit 16547c5
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 0 deletions.
19 changes: 19 additions & 0 deletions docs/book/v1/faq.md
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,25 @@ chmod -R 777 public/uploads
chmod -R 777 log
```

## Where are the error log files?

From time to time, you are encountering various errors which are not displayed. Or you can get errors 500 in browser.

In order to find the error messages, you need to read the error log files.

### Apache log files

```text
/var/log/httpd/error_log
```

### PHP-FPM log files

```text
/var/log/php-fpm/error.log
/var/log/php-fpm/www-error.log
```

## How do I create command aliases?

From either your terminal or file explorer, navigate to your home directory (`/home/<your-username>/`).
Expand Down
19 changes: 19 additions & 0 deletions wsl/os/almalinux9/FAQ.md
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,25 @@ chmod -R 777 public/uploads
chmod -R 777 log
```

## Where are the error log files?

From time to time, you are encountering various errors which are not displayed. Or you can get errors 500 in browser.

In order to find the error messages, you need to read the error log files.

### Apache log files

```text
/var/log/httpd/error_log
```

### PHP-FPM log files

```text
/var/log/php-fpm/error.log
/var/log/php-fpm/www-error.log
```

## How do I create command aliases?

From either your terminal or file explorer, navigate to your home directory (`/home/<your-username>/`).
Expand Down

0 comments on commit 16547c5

Please sign in to comment.