Quantcast
Channel: Kaltura - Latest posts
Viewing all articles
Browse latest Browse all 7410

Old Kaltura HTML5 Player V2.11 > PHP Warning: Invalid UTF-8 sequence in argument PHP

$
0
0

We have solved the issue by replacing the content of html5.php from new Kaltura release.

<?php /** * This file store all of mwEmbed local configuration ( in a default svn check out this file is empty ) * See includes/DefaultSettings.php for a configuration options */ // Old kConf path $kConfPath = '/opt/kaltura/app/alpha/config/kConf.php'; if( ! file_exists( $kConfPath ) ) { // New kConf path $kConfPath = '/opt/kaltura/app/infra/kConf.php'; if( ! file_exists( $kConfPath ) ) { die('Error: Unable to find kConf.php at ' . $kConfPath); } } // Load kaltura configuration file require_once( $kConfPath ); $kConf = new kConf(); // Kaltura HTML5lib Version $wgKalturaVersion = basename(getcwd()); // Gets the version by the folder name // The default Kaltura service url: $wgKalturaServiceUrl = wgGetUrl('cdn_api_host'); // Default Kaltura CDN url: $wgKalturaCDNUrl = wgGetUrl('cdn_host'); // Default Stats URL $wgKalturaStatsServiceUrl = wgGetUrl('stats_host'); // Default Live Stats URL $wgKalturaLiveStatsServiceUrl = wgGetUrl('live_stats_host'); // Default Kaltura Analytics URL $wgKalturaAnalyticsServiceUrl = wgGetUrl('analytics_host');

Viewing all articles
Browse latest Browse all 7410

Trending Articles