Surely this is not Nuevoplayer SWF file.
I don't know if this is general issue, but I discovered that small change in 2 nuevoplayer files may help.
Files are "playlist.php" and "eplaylist.php"
Edit files and find this part of code:
- Code: Select all
$source = xml_utf8_encode($arow['url']);
if(isValidURL($source)) {
$link = xml_utf8_encode($arow['link']);
This code appears in 3 places.
Replace it with code:
- Code: Select all
$source = $arow['url'];
$link = $arow['link'];
if(isValidURL($source)) {
As you can see line "$link = xml_utf8_encode($arow['link']);" is moved 1 line up.
Issue may concern only random preroll ads, but better set changes for all 3 occurances.
Thanks.