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
{{ message }}
This repository was archived by the owner on Jan 30, 2020. It is now read-only.
- The `FileInput` will automatically prepend an [UploadFile validator](http://framework.zend.com/manual/current/en/modules/zend.validator.file.html#uploadfile)
- The `FileInput` will automatically prepend an [UploadFile validator](https://docs.zendframework.com/zend-validator/validators/file/upload-file/)
66
66
to securely validate that the file is actually an uploaded file, and to report
67
67
any upload errors to the user.
68
68
@@ -189,7 +189,7 @@ array(1) {
189
189
> }
190
190
> ```
191
191
>
192
-
> [`Zend\InputFilter\FileInput`](http://framework.zend.com/manual/current/en/modules/zend.input-filter.file-input.html) expects the file data be in this
192
+
> [`Zend\InputFilter\FileInput`](https://docs.zendframework.com/zend-inputfilter/file-input/) expects the file data be in this
193
193
> re-mapped array format.
194
194
>
195
195
> Note: [PSR-7](http://www.php-fig.org/psr/psr-7/) also remaps the `$_FILES`
@@ -208,7 +208,7 @@ One strategy to get around this is to split the form into multiple forms. One
208
208
form for the file upload inputs and another for the other standard inputs.
209
209
210
210
When you cannot separate the forms, the [File Post-Redirect-Get
211
-
Plugin](https://zendframework.github.io/zend-mvc-plugin-fileprg/) can be used to
211
+
Plugin](https://docs.zendframework.com/zend-mvc-plugin-fileprg/) can be used to
212
212
manage the file inputs and save off valid uploads until the entire form is
213
213
valid.
214
214
@@ -413,7 +413,7 @@ must use a server-side progress solution.
413
413
414
414
`Zend\ProgressBar\Upload` provides handlers that can give you the actual state
415
415
of a file upload in progress. To use this feature, you need to choose one of the
Copy file name to clipboardExpand all lines: doc/book/helper/form-file-apc-progress.md
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -13,7 +13,7 @@ An `id` attribute with a value of `"progress_key"` will automatically be added.
13
13
> The view helper **must** be rendered *before* the file input in the form, or
14
14
> upload progress will not work correctly.
15
15
16
-
Best used with the [Zend\ProgressBar\Upload\ApcProgress](http://framework.zend.com/manual/current/en/modules/zend.progress-bar.upload.html#apc-progress-handler)
16
+
Best used with the [Zend\ProgressBar\Upload\ApcProgress](https://docs.zendframework.com/zend-progressbar/upload/#apc-progress-handler)
17
17
handler.
18
18
19
19
See the `apc.rfc1867` ini setting in the [APC Configuration](http://php.net/apc.configuration)
Copy file name to clipboardExpand all lines: doc/book/helper/form-file-session-progress.md
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -12,7 +12,7 @@ An `id` attribute with a value of `"progress_key"` will automatically be added.
12
12
> The view helper **must** be rendered *before* the file input in the form, or
13
13
> upload progress will not work correctly.
14
14
15
-
Best used with the [Zend\ProgressBar\Upload\SessionProgress](http://framework.zend.com/manual/current/en/modules/zend.progress-bar.upload.html#session-progress-handler)
15
+
Best used with the [Zend\ProgressBar\Upload\SessionProgress](https://docs.zendframework.com/zend-progressbar/upload/#session-progress-handler)
16
16
handler.
17
17
18
18
See the [Session Upload Progress](http://php.net/session.upload-progress)
Copy file name to clipboardExpand all lines: doc/book/helper/form-file-upload-progress.md
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -12,7 +12,7 @@ An `id` attribute with a value of `progress_key` will automatically be added.
12
12
> The view helper **must** be rendered *before* the file input in the form, or
13
13
> upload progress will not work correctly.
14
14
15
-
This element should be used with the [Zend\ProgressBar\Upload\UploadProgress](http://framework.zend.com/manual/current/en/modules/zend.progress-bar.upload.html#upload-progress-handler)
15
+
This element should be used with the [Zend\ProgressBar\Upload\UploadProgress](https://docs.zendframework.com/zend-progressbar/upload/#upload-progress-handler)
16
16
handler.
17
17
18
18
See the [PECL uploadprogress extension](http://pecl.php.net/package/uploadprogress)
0 commit comments