PHPRunner 6.2 adds a new feature - multi-upload. It allows you to use a single field to store multiple uploaded files information. However in some circumstances you need to keep the old functionality (one file per field). This is what we call compatibility mode. Compatibility mode will be turned on automatically when you open PHPRunner 6.1 or older projects.
In some cases you might need to use file upload 'compatibility' mode in new projects. Here is how you can do that:
- Create a new project in PHPRunner, save it, close PHPRunner.
- Open .phpr project file in any text editor, find the following line:
<m_bPre72Project>0</m_bPre72Project>
and change it to
<m_bPre72Project>1</m_bPre72Project>
This is it.