Skip to content

Commit

Permalink
Version 2.0.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
vickzkater committed Oct 5, 2020
1 parent 37b0da3 commit 3722e83
Show file tree
Hide file tree
Showing 3 changed files with 245 additions and 748 deletions.
18 changes: 16 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ Developed by [@vickzkater](https://github.com/vickzkater/) (Powered by [KINIDI T

## Version

***Current Version: 2.0.3.1 (Laravel 7.28.2)**
***Current Version: 2.0.3.2 (Laravel 7.28.3)**

Laravel | Lara-S-CMS
:---------|:----------
Expand All @@ -88,7 +88,7 @@ Developed by [@vickzkater](https://github.com/vickzkater/) (Powered by [KINIDI T

## Requirements

- PHP >= 7.3
- PHP >= 7.2
- [Laravel 7.x Requirements](https://laravel.com/docs/7.x/installation#server-requirements)

## Installing Lara-S-CMS
Expand Down Expand Up @@ -220,6 +220,20 @@ And with additionally configure the permission for directory `public/uploads/`.
chmod o+w -R public/uploads/
```

***If after setup all configs, but still display error "500 Internal Server Error"**

Comment first line in `.htaccess` for fix this issue
```
#Header always set Content-Security-Policy: upgrade-insecure-requests
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteRule ^(.*)$ public/$1 [L]
</IfModule>
```

_*) This issue is reported only occur on some hosting servers, e.g. AWS (Amazon Web Service)_

**Somethings that maybe you must know**

- `CustomFunction.php` in `app\Libraries\` that automatically called in the load of web because it has been set in `composer.json`
Expand Down
8 changes: 7 additions & 1 deletion VERSION.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
## Version 2.0.3.2
### Changelog
- Rollback `composer.lock` (using from v2.0.2) for support PHP >= 7.2
- Update the packages (Laravel Framework 7.18.0 > 7.28.3)
- Add solution for issue "500 Internal Server Error" (please check `README`)

## Version 2.0.3.1
### Changelog
- Update README (require PHP >= 7.3)
- Update `README` (require PHP >= 7.3)

## Version 2.0.3
### Changelog
Expand Down
Loading

0 comments on commit 3722e83

Please sign in to comment.