If you need help from our expert to fix this issue, just hire us here: Try our Web expert service
Or You can do following steps yourself:
# Open file: /module/video/include/service/grab.class.php
# Look for:
if (strpos($sUrl, 'youtube') || (preg_match('/http:\/\/youtu\.be\/(.*)/i', $sUrl, $aMatches) && isset($aMatches[1])))
{
$this->_aRegex = false;
$this->_aSites = $this->_aSiteCache;
if (isset($aMatches) && $aMatches[1])
{
$sUrl = 'http://www. youtube.com/watch?v=' . $aMatches[1];
}
}
# Replace with:
if (strpos($sUrl, 'youtube') || (preg_match('/(http|https):\/\/youtu\.be\/(.*)/i', $sUrl, $aMatches) && isset($aMatches[2])))
{
// $this->_aRegex = false;
$this->_aSites = $this->_aSiteCache;
if (isset($aMatches) && $aMatches[2])
{
$sUrl = 'http://www. youtube.com/watch?v=' . $aMatches[2];
}
}