clight77 ignore it showing you on mobile it will detect if you are or not and remove if need be.









Code: Select all
[phpBB Debug] PHP Notice: in file [ROOT]/ext/sniper/mobiledevice/event/listener.php on line 561: Undefined index: DESKTOP
[phpBB Debug] PHP Warning: in file [ROOT]/ext/sniper/mobiledevice/event/listener.php on line 565: Cannot modify header information - headers already sent by (output started at [ROOT]/includes/functions.php:3262)
[phpBB Debug] PHP Warning: in file [ROOT]/ext/sniper/mobiledevice/event/listener.php on line 566: Cannot modify header information - headers already sent by (output started at [ROOT]/includes/functions.php:3262)
[phpBB Debug] PHP Notice: in file [ROOT]/ext/sniper/mobiledevice/event/listener.php on line 561: Undefined index: DESKTOP
[phpBB Debug] PHP Warning: in file [ROOT]/ext/sniper/mobiledevice/event/listener.php on line 565: Cannot modify header information - headers already sent by (output started at [ROOT]/includes/functions.php:3262)
[phpBB Debug] PHP Warning: in file [ROOT]/ext/sniper/mobiledevice/event/listener.php on line 566: Cannot modify header information - headers already sent by (output started at [ROOT]/includes/functions.php:3262)
[phpBB Debug] PHP Warning: in file [ROOT]/includes/functions.php on line 4516: Cannot modify header information - headers already sent by (output started at [ROOT]/includes/functions.php:3262)
[phpBB Debug] PHP Warning: in file [ROOT]/includes/functions.php on line 4516: Cannot modify header information - headers already sent by (output started at [ROOT]/includes/functions.php:3262)
[phpBB Debug] PHP Warning: in file [ROOT]/includes/functions.php on line 4516: Cannot modify header information - headers already sent by (output started at [ROOT]/includes/functions.php:3262)

$status = $this->user->lang['DESKTOP']; is not defined hence the error.maco8024 wrote: 28 Sep 2017, 03:54 Hay all!
MOBILEDEVICE_1.0.5, phpbb 3.2.1, PHP: 7.0.21
Tell me what to do?Code: Select all
[phpBB Debug] PHP Notice: in file [ROOT]/ext/sniper/mobiledevice/event/listener.php on line 561: Undefined index: DESKTOP [phpBB Debug] PHP Warning: in file [ROOT]/ext/sniper/mobiledevice/event/listener.php on line 565: Cannot modify header information - headers already sent by (output started at [ROOT]/includes/functions.php:3262) [phpBB Debug] PHP Warning: in file [ROOT]/ext/sniper/mobiledevice/event/listener.php on line 566: Cannot modify header information - headers already sent by (output started at [ROOT]/includes/functions.php:3262) [phpBB Debug] PHP Notice: in file [ROOT]/ext/sniper/mobiledevice/event/listener.php on line 561: Undefined index: DESKTOP [phpBB Debug] PHP Warning: in file [ROOT]/ext/sniper/mobiledevice/event/listener.php on line 565: Cannot modify header information - headers already sent by (output started at [ROOT]/includes/functions.php:3262) [phpBB Debug] PHP Warning: in file [ROOT]/ext/sniper/mobiledevice/event/listener.php on line 566: Cannot modify header information - headers already sent by (output started at [ROOT]/includes/functions.php:3262) [phpBB Debug] PHP Warning: in file [ROOT]/includes/functions.php on line 4516: Cannot modify header information - headers already sent by (output started at [ROOT]/includes/functions.php:3262) [phpBB Debug] PHP Warning: in file [ROOT]/includes/functions.php on line 4516: Cannot modify header information - headers already sent by (output started at [ROOT]/includes/functions.php:3262) [phpBB Debug] PHP Warning: in file [ROOT]/includes/functions.php on line 4516: Cannot modify header information - headers already sent by (output started at [ROOT]/includes/functions.php:3262)![]()
Code: Select all
$status = $this->user->lang['DESKTOP'];Code: Select all
//$status = $this->user->lang['DESKTOP'];
Code: Select all
[phpBB Debug] PHP Notice: in file [ROOT]/ext/sniper/mobiledevice/event/listener.php on line 561: Undefined index: DESKTOP
Code: Select all
'DESKTOP' => 'Desktop',
Many thanks, everything works.martin wrote: 30 Sep 2017, 19:08 Undo the code change in the listener.php (remove the // we added)
now open ext/sniper/mobiledevice/language/en/common.php
replace the bottom line with thisNow the error is gone for good.Code: Select all
'DESKTOP' => 'Desktop',



