|
Please follow the steps below to overcome the error For Component
Please make the following change in the player.php file. Player.php file will located at root/joomla folder/components/com_hdflvplayer/models/player.php
Please search for the code on player.php
$baseurl=str_replace(':','%3A',JURI::base()); $baseurl=str_replace('/','%2F',$baseurl);
Just replace the above code with the following
$baseurl=str_replace(':','%3A',JURI::base()); $baseurl=substr_replace($baseurl ,"",-1); $baseurl=str_replace('/','%2F',$baseurl);
For Module
Make the following change in the default.php file. default.php file will located at root/joomla folder/modules/mod_hdflvplayer/tmpl
Please search for the code on default.php $baseurl=JURI::base();
Just replace the above code with the following $baseurl=JURI::base(); $baseurl=substr_replace($baseurl ,"",-1);
For plugin
Make the following change in the contusvideo.php(or)hdflvplayer.php file. contusvideo.php(or)hdflvplayer.php file will located at root/joomla folder/plugins/content/contusvideo.php(or)hdflvplayer.php
Please search for the code on contusvideo.php(or)hdflvplayer.php $baseurl=JURI::base();
Just replace the above code with the following $baseurl=JURI::base(); $baseurl1=substr_replace($baseurl ,"",-1);
and
Find: baserefJ='.$baseurl.' (it will be in two places)
Replace it by
baserefJ='.$baseurl1.' (in both the places)
If still the problem exists,please do let us know...
Thanks
|