You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+15Lines changed: 15 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -139,3 +139,18 @@ print "<pre>";
139
139
print_r($upload->uploadedData);
140
140
print "</pre>";
141
141
```
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