View Single Post
  #40  
Old 9th July 2008, 09:55
ANDiTKO's Avatar
ANDiTKO ANDiTKO is offline
Senior Member
 
Join Date: Mar 2008
Greece
Posts: 47
Default re: YSE v2.0 PRE7 by BoLaMN
I get these errors when i try to accsess the admin panel (@ localhost).

Code:
Notice: Undefined variable: rootpath in h:\www\easyphp1-8\www\ysetest\settings.php on line 8
Code:
Warning: Cannot modify header information - headers already sent by (output started at h:\www\easyphp1-8\www\ysetest\settings.php:8) in h:\www\easyphp1-8\www\ysetest\include\functions.php on line 705
Code:
Warning: Cannot modify header information - headers already sent by (output started at h:\www\easyphp1-8\www\ysetest\settings.php:8) in h:\www\easyphp1-8\www\ysetest\include\functions.php on line 706
Code:
Warning: Cannot modify header information - headers already sent by (output started at h:\www\easyphp1-8\www\ysetest\settings.php:8) in h:\www\easyphp1-8\www\ysetest\include\functions.php on line 707
Code:
Warning: Cannot modify header information - headers already sent by (output started at h:\www\easyphp1-8\www\ysetest\settings.php:8) in h:\www\easyphp1-8\www\ysetest\include\functions.php on line 708
Code:
Warning: Cannot modify header information - headers already sent by (output started at h:\www\easyphp1-8\www\ysetest\settings.php:8) in h:\www\easyphp1-8\www\ysetest\include\functions.php on line 709
Line 8 in settings.php is this
Code:
include($rootpath . 'include/bittorrent.php');
To fix the error change the line to
Code:
include('include/bittorrent.php');
I think its because it request a variable witch is not yet loaded.So just remove it. ;-)
Reply With Quote