Hi,
I installed testlink 1.8.4 with xampp 1.7.2 to my local windows xp.
I followed the lines of the installation guide.
after the steps of http://localhost/testlink/install/index.php
I tried to login, and I got
"Deprecated: Function ereg_replace() is deprecated in C:\bin\xampp\xampp\htdocs\testlink\lib\functions\lang_api.php on line 173"
in a lot of lines.
Install problem with lang_api.php
Moderators: Amaradana, TurboPT, TL Developers
-
- TestLink user
- Posts: 4
- Joined: Tue Feb 26, 2008 6:03 pm
change line 173
simple, change this line:
$t_lang_var = ereg_replace( '^TLS_', '', $t_var );
to:
$t_lang_var = preg_replace( '/^TLS_/', '', $t_var );
