Results 1 to 7 of 7

Thread: Error Converting. Please help?

Hybrid View

Previous Post Previous Post   Next Post Next Post
  1. #1

    Default

    Thank you for your reply.

    Here is the content of include/config.php:

    Code:
    <?php
    
    error_reporting(E_ALL & ~E_NOTICE & ~E_WARNING);
    
    session_start();
    
    $db_host     = "";
    $db_name     = "";
    $db_user     = "";
    $db_pass     = "";
    
    $language = "en";
    
    $config = array();
    $config['ffmpeg']          =  "/usr/bin/ffmpeg";
    $config['mplayer']          =  "/usr/bin/ffmpeg";
    $config['mencoder']          =  "/usr/bin/ffmpeg";
    $config['flvtool']          =  "/usr/bin/ffmpeg";
    $config['basedir']        =  "/home/valvideo/public_html";
    $config['baseurl']        =  "http://videos.val-emmich.net";
    
    include($config['basedir'] . "/include/vshare.php");
    Hmm, are the paths wrong?
    Last edited by bangnificent; 10-31-2009 at 10:12 AM.

  2. #2

    Default

    You need to change the path in include/config.php same as

    $config['ffmpeg'] = "/usr/bin/ffmpeg";

    $config['mplayer'] = "/usr/bin/mplayer";

    $config['mencoder'] = "/usr/bin/mencoder";

    $config['flvtool'] = "/usr/bin/flvtool";


    Upload a test video and check its working or not

  3. #3
    Join Date
    Sep 2007
    Posts
    906

    Default

    You need to disbale open_basedir. Now it is set.

    None of your php.ini settings are proper. Set it as per

    YouTube Clone Server Requirements

    Also update path to binary files in include/config.php

    Look like requirements are not properly installed on your server.
    vShare Hosting, vShare Installation, Server Setup, Lighttpd streaming, vShare Templates
    [email protected]

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •