Hi,
I just upgraded to PHP5 from PHP4 and now I can't import test cases using csv files. I am able to do that before the upgrade. Nothing had been modified on the testlink code.
Can anyone help on this? Greatly appreciated.
Test Case import issue with PHP5
I have now got this fixed. I found this by looking through the bugs on http://testlink.org/mantis.
You need to set the following in your php.ini file and restart apache.
register_long_arrays = On
You need to set the following in your php.ini file and restart apache.
register_long_arrays = On
Thanks Timbo!
I checked in Mantis and found this:
add this line into tcImport.php and reqimport.php
Afterwhich I can import the test cases 
I checked in Mantis and found this:
add this line into tcImport.php and reqimport.php
Code: Select all
$HTTP_POST_FILES = isset($_FILES) ? $_FILES : $HTTP_POST_FILES;

import test cases
Both of the above solutions worked for importing requirements, but importing test cases still doesn't work.
Is there anything else I can try?
I know the real answer is to upgrade to 1.7, but I don't have time for that at the moment.
Any help is greatly appreciated.
Thanks!
Is there anything else I can try?
I know the real answer is to upgrade to 1.7, but I don't have time for that at the moment.
Any help is greatly appreciated.
Thanks!