Webinterface plugin (1 Viewer)

LordMessi

Retired Team Member
  • Premium Supporter
  • July 4, 2005
    449
    0
    45
    Ørsø, Dronninglund, Denmark
    Home Country
    Denmark Denmark
    Avalon111 said:
    i planed to try the web interface with 0.1.3 too bad that this isnt possible at the moment.
    i am looking forward to the next version of your great WebInterface thats working with 0.1.3

    cheers
    Avalon111

    Hopefully we will have it "finished" soon.

    //Thomas
     

    LordMessi

    Retired Team Member
  • Premium Supporter
  • July 4, 2005
    449
    0
    45
    Ørsø, Dronninglund, Denmark
    Home Country
    Denmark Denmark
    BETA - follow the work!

    Hi,

    You can follow the work on the next webinterface version, so you can see what is worked on.

    *!* - It'snt the fastest connection, so think of that, when accessing it.

    The URL

    http://then.mine.nu:82

    Login : mpuser
    Password : password

    Please do not change anything, just browse.

    //Thomas

    You are welcome to mail me, or contact me on MSN, with suggestions for the upcoming version(s)

    If the site is down, it's because my machine is shut down.
     

    LordMessi

    Retired Team Member
  • Premium Supporter
  • July 4, 2005
    449
    0
    45
    Ørsø, Dronninglund, Denmark
    Home Country
    Denmark Denmark
    cedriclocqueneux said:
    It's cool ! Is it possible to have the beta version ? Or are the final version finished soon ?
    (i need that this webinterface is ok before the next week, because i must leave for two week, and i want to program my record from my hollidays place :wink: )

    The beta version is still a beta version.....can't say if it will record the things you specify, but contact me @ MSN, and we could talk about it.

    //Thomas
     

    patrick

    Portal Pro
    April 20, 2005
    608
    45
    Southeast
    Home Country
    United States of America United States of America
    I had some questions about the External Control Plugin.

    Is the External Control Plugin available independently of the webinterface?
    Is the source available?

    If so, where can download?

    Thanks in advance,
    patrick
     

    gdekeijzer

    Portal Member
    July 22, 2005
    29
    0
    Assendelft
    Home Country
    Netherlands Netherlands
    Hi there...

    As a new MP user i'm closely looking at the development of this plugin.
    Is there a place to put requests/suggestions for your plugin?

    If it is here i have a suggestion:
    Put a onClick event in your <TD> This way it's also possible to click on the bar of the program instead of just the title.

    Greetings

    Gerwin
     
    C

    catch-22

    Guest
    I am new to Media Portal, but I'd like remote (web) access to the tv schedule. So I was playing around with apache/php/sqlite3 to gain access to the db.

    But I'm kinda lost right now since apache won't load the pdo modules. Apache gives a warning saying:

    "PHP Startup: Unable to load dynamic library 'c:\wamp\php5\ext\php_pdo.dll' - The specified procedure could not be found."

    and

    "PHP Startup: Unable to load dynamic library 'c:\wamp\php5\ext\php_pdo_sqlite.dll'- The specified procedure could not be found."

    The required dll's (php_pdo.dll and php_pdo_sqlite.dll) are to be found in the correct directory (c:\wamp\php5\ext). And I have no problem loading non-pdo modules (no extensive testing though).

    Apache: 2.0.44 (win32)
    PHP: 5.1.0b3 (win32)

    httpd.conf
    ---------
    LoadModule php5_module "c:/wamp/php5/php5apache2.dll"
    AddType application/x-httpd-php .php
    PHPIniDir "c:/wamp/php5"

    php.ini
    --------
    extension_dir = c:\wamp\php5\ext
    extension=php_pdo.dll
    extension=php_pdo_sqlite.dll

    Furthermore I've tried removing all access restrictions from relevant directories and changing "\" to "/" in various paths.

    Used script below to access the db:

    <?php
    //Check pdo drivers
    print_r(pdo_drivers());

    // Open database
    $db = sqlite_open("TVDatabaseV21.db3");

    // simple select
    $result = sqlite_query($db, "select strChannel from channel");

    // grab each row as an array
    while ($row = sqlite_fetch_array($result)) {
    print_r($row); }

    // close the database
    sqlite_close($db);
    ?>

    print_r(pdo_drivers()); returns "Array ( [0] => sqlite2 ) ". Using TVDatabaseV18.db from MP releae 1.2.0 works ok.

    Never meant this to be such an extensive post, but anybody out there who can point me in the right direction? Doesn't have to be apache + php, other websolutions are ok with me.
     

    Users who are viewing this thread


    Write your reply...
    Top Bottom