Is there a .sql-script available, so that I can manually update TL 1.7.0 -> 1.7.1?
Due to some other apps running on the same webserver, I can't change the php.ini (register globals), so I would like to manually update the database.
manual update 1.7.0 -> 1.7.1
Moderators: Amaradana, TurboPT, TL Developers
You can do it but it's a lot of work. We made significant changes in core tables (for example nodes). It's not only run sql scripts.
I suggest to try set required php settings in script or directory (if allowed by server configuration). Otherwise disable this blocking checking to go ahead in automatic installation.
I suggest to try set required php settings in script or directory (if allowed by server configuration). Otherwise disable this blocking checking to go ahead in automatic installation.
Dear sdm,
I wondered what you meant by 'disabled the check'
Here is the tip to do it (is it what you meant ?)
With Testlink 1.7.0 (cf [1])
edit the file testlink_170/install/newInstallStart_TL.php
and change line 104
before change
if($errors>0)
after change
if($errors>1)
Then, the script allows you to continue the installation even if there is one error.
Hope it can help !
Reference :
[1] : http://downloads.sourceforge.net/testli ... g_mirror=0
I wondered what you meant by 'disabled the check'
Here is the tip to do it (is it what you meant ?)
With Testlink 1.7.0 (cf [1])
edit the file testlink_170/install/newInstallStart_TL.php
and change line 104
before change
if($errors>0)
after change
if($errors>1)
Then, the script allows you to continue the installation even if there is one error.
Hope it can help !
Reference :
[1] : http://downloads.sourceforge.net/testli ... g_mirror=0