This topic is locked

Force File Upload Compatibility Mode For New Phprunner Projects

4/19/2013 12:01:18 PM
PHPRunner Tips and Tricks
Sergey Kornilov admin

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:

  1. Create a new project in PHPRunner, save it, close PHPRunner.
  2. 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.