Skip to content

Commit 06d2ae7

Browse files
authored
Update README.md
1 parent 9a9ad85 commit 06d2ae7

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

README.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -139,3 +139,18 @@ print "<pre>";
139139
print_r($upload->uploadedData);
140140
print "</pre>";
141141
```
142+
143+
## Upload file size change on server
144+
145+
There is a possibility the upload file size is not set on a server, default 2MB value is set on a server. If you face this type of issue just find the right path of your **php.ini** file and change the bleow two parameters.
146+
147+
**upload_max_filesize** = 2M
148+
**post_max_size** = 8M
149+
150+
Change to below.
151+
152+
**upload_max_filesize** = 100M
153+
**post_max_size** = 150M
154+
155+
### Remember:
156+
post max size should be grater than upload max filesize.

0 commit comments

Comments
 (0)