Singleseat without TVServer (1 Viewer)

Dragy

Portal Pro
April 27, 2009
778
333
33
Home Country
Netherlands Netherlands
I went from TVServer to ForTheRecord.. now I still want to use iPIMP for remote control.
I choose iPIMP 5.00 installation > Advanced > Here I can only choose the last option! All the others are greyed out. I only want to select the last and third option..

How? I want to use iPIMP on the existing Cassini webserver (from 4TR).
 

cheezey

Community Plugin Dev
August 26, 2004
1,559
312
57
West Yorks, UK
Home Country
United Kingdom United Kingdom
The installer checks for TV Server versions / MP clients versions in the registry and decides what is/isn't greyed out. Look in Initialisation.nsh - ipimp - Project Hosting on Google Code to see the reg keys used.

You could set those reg keys to enable the checkboxes.

Cassini though has limitations which is why iPiMP didn't ship with it.

There are some posts in the original iPiMP thread about setting up iPiMP with IIS, you could try and look at that.
 

Dragy

Portal Pro
April 27, 2009
778
333
33
Home Country
Netherlands Netherlands
I'm going to use Apache for FTR instead :) And I installed iPIMP and copied the Aspx folder. Now it works on custom Apache server
thanks

//edit
Yes it works now :D iPIMP and FTR webservice are both reachable..
iPIMP on root and ForTheRecord on localhost/ForTheRecord

Here is my httpd.conf file:
Code:
ServerRoot "C:/Program Files (x86)/Apache Software Foundation/Apache2.2"
Listen *:80

LoadModule alias_module modules/mod_alias.so
LoadModule auth_basic_module modules/mod_auth_basic.so
LoadModule authz_host_module modules/mod_authz_host.so
LoadModule dir_module modules/mod_dir.so
LoadModule mime_module modules/mod_mime.so

ServerName www:80
ServerAdmin admin@htpc.com
DocumentRoot "D:/iPiMP"

<Directory />
        Options FollowSymLinks
        AllowOverride None
        Order deny,allow
        Deny from all
</Directory>


<FilesMatch "^\.ht">
        Order allow,deny
        Deny from all
        Satisfy All
</FilesMatch>

DefaultType text/plain

<IfModule mime_module>
        TypesConfig conf/mime.types
        AddType application/x-compress .Z
        AddType application/x-gzip .gz .tgz
</IfModule>

#asp.net 
LoadModule aspdotnet_module modules/mod_aspdotnet.so

AddHandler asp.net asax ascx ashx asmx aspx axd config cs csproj licx rem resources resx soap vb vbproj vsdisco webinfo 

<IfModule mod_aspdotnet.cpp> 
    AspNetVersion v2.0.50727
    AspNetMount / "D:/iPiMP" 
    Alias /iPiMP "D:/iPiMP" 
    Alias /TVLogos "C:/ProgramData/Team MediaPortal/MediaPortal/thumbs/tv/logos"
    Alias /MP4 "DummyDir"
    AspNetMount /ForTheRecord "C:/Program Files (x86)/For The Record/Web Access" 
    Alias /ForTheRecord "C:/Program Files (x86)/For The Record/Web Access"

    <Directory "D:/iPiMP"> 
        Options FollowSymlinks ExecCGI 
        Order allow,deny 
        Allow from all 
        DirectoryIndex Default.aspx 
    </Directory>

    <Directory "C:/ProgramData/Team MediaPortal/MediaPortal/thumbs/tv/logos"> 
        Options FollowSymlinks ExecCGI 
        Order allow,deny 
        Allow from all 
    </Directory>
    
    <Directory "C:/Program Files (x86)/For The Record/Web Access">
        Options FollowSymlinks ExecCGI 
        Order allow,deny 
        Allow from all 
        DirectoryIndex Default.aspx 
    </Directory>

    <Directory "DummyDir"> 
        Options FollowSymlinks ExecCGI 
        Order allow,deny 
        Allow from all 
    </Directory>
    
    AliasMatch /aspnet_client/system_web/(\d+)_(\d+)_(\d+)_(\d+)/(.*) "C:/Windows/Microsoft.NET/Framework/v$1.$2.$3/ASP.NETClientFiles/$4" 
    <Directory "C:/Windows/Microsoft.NET/Framework/v*/ASP.NETClientFiles"> 
        Options FollowSymlinks 
        Order allow,deny 
        Allow from all 
    </Directory> 
</IfModule> 
#asp.net

#smooth streaming
#LoadModule rewrite_module modules/mod_rewrite.so
#LoadModule smooth_streaming_module modules/mod_smooth_streaming.so
#AddHandler smooth-streaming.extensions .ism
#
#RewriteEngine On
#RewriteCond %{DOCUMENT_ROOT}/$1$2.$3sm$4/$2.ismc -f
#RewriteRule ^(.*/)?(.*)\.([is])sm([l])?/[Mm]anifest$ $1$2.$3sm$4/$2.ismc [PT]
#RewriteRule ^(.*/)?(.*)\.([is])sm([l])?/[Mm]anifest$ $1$2.$3sm$4/$2.ism?manifest=live [PT]
#RewriteRule ^(.*/)?(.*)\.([is])sm([l])?/QualityLevels\(([0-9]+)\)/Fragments\((.*)=([0-9]+)\)(.*)$ $1$2.$3sm$4/$2.ism?bitrate=$5&$6=$7 [PT]
#smooth streaming
 

Dragy

Portal Pro
April 27, 2009
778
333
33
Home Country
Netherlands Netherlands
Well, FTR does not have an option to use Apache.. I deinstalled the Cassini web server and changed the httpd.conf to link to the FTR folder :) And it works :D

//edit
Can't browse video, pictures, now playing etc...
At now playing is says something about mysql, but I use MSSql... ???
 

Users who are viewing this thread

Top Bottom