![]() |
Sergey Kornilov admin 3/20/2015 |
This is how it works by default. PHPRunner adds a random string to each uploaded file name to prevent files from being overwritten. Normally you just don't need to do anything else. |
![]() |
lefty 3/21/2015 |
To avoid overwriting files use multiple file upload and set multiple to one ( if uploading one file ) . Do not use compatability mode as this will overwrite your file. Usethe new version multiple upload. If you have no encoding / decoding to change the name of the file on disk or database then just use multiple upload with setting to 1 and do not use events. This will just add random numbers to the end of the file name so theere is no collision on filenames / overwrite . Hope this helps. |
M
|
mrphp author 3/24/2015 |
This is how it works by default. PHPRunner adds a random string to each uploaded file name to prevent files from being overwritten. Normally you just don't need to do anything else.
|
M
|
mrphp author 3/24/2015 |
To avoid overwriting files use multiple file upload and set multiple to one ( if uploading one file ) . Do not use compatability mode as this will overwrite your file. Usethe new version multiple upload. If you have no encoding / decoding to change the name of the file on disk or database then just use multiple upload with setting to 1 and do not use events. This will just add random numbers to the end of the file name so theere is no collision on filenames / overwrite . Hope this helps.
|
![]() |
Sergey Kornilov admin 3/24/2015 |
'Compatibility mode' option will only appear if you use on of latest PHPRunner versions and open project created by older version. |
M
|
mrphp author 3/30/2015 |
'Compatibility mode' option will only appear if you use on of latest PHPRunner versions and open project created by older version.
|