Page 1 of 1

blank page after login to link_tracker

Posted: Wed May 06, 2015 10:53 am
by martinius
Hi
I wanted to install link_tracker, but could not manage it.
I've tested 3 Domains - 2 different Servers (my own - full access).
a) setup database ... and import sql ... OK
b) upload files ... OK
c) edit config.inc.php to my needs/setting...
Login via browser with admin - admin
-> no error, BUT on all tested Domains or Servers...
BLANK PAGE.

Did I miss something???
Regards from Austria

Martin

Re: blank page after login to link_tracker

Posted: Tue May 26, 2015 8:40 pm
by jacek
Hey, sorry for the delay.

A blank page normally means there is an error that's being hidden.

Try setting
display_errors = On
and
error_reporting = E_ALL & ~E_STRICT
in your PHP config and see if it shows anything up.

Re: blank page after login to link_tracker

Posted: Sun May 31, 2015 9:06 am
by martinius
hi,
I get that error message:
Fatal error: Call to undefined function password_verify() in /var/www/webxxxx/html/linktracker/core/include/user.inc.php on line 87
of course, the login would be like in doc... admin/admin, BUT doesn't work
I testet with a "fresh" user setup in mysql table -- users, but that didn't help...

...line 87 in user.inc.php is:
public function check_password($password){
		return password_verify($password, $this->password_hash);
	}
..............by the way:
My php Version is:

PHP Version 5.3.3-7+squeeze14

Re: blank page after login to link_tracker

Posted: Wed Jun 17, 2015 8:08 pm
by jacek
Ah, password_verify was only added in php 5.5.0 so the only thing you can do is update.
The version you have is not supported any more so it's probably a good idea anyway.