iPhone interface for MediaPortal (iPiMP) - original thread (now closed) (1 Viewer)

Status
Not open for further replies.

safcsat

Portal Pro
March 1, 2008
74
2
Home Country
United Kingdom United Kingdom
Yo!

First of all thanks this looks fantastic!!

I cant seem to get it workin tho with latest svn's of tv-server & media portal on vista ultimate.

I have changed default port to 8080 to avoid conflicts and I just cant seem to connect with my ifone. I get to login screen and try login with admin/admin or guest/guest - but neither login. They just eventually timeout. I noticed on the pc with this installed that http.exe goes to about 80% cpu (core2duo 3ghz) - so seems there is something not right.

I tried disabling firewall too.

Any ideas?
 

cheezey

Community Plugin Dev
August 26, 2004
1,560
312
55
West Yorks, UK
Home Country
United Kingdom United Kingdom
  • Thread starter
  • Moderator
  • #22
Yo!

First of all thanks this looks fantastic!!

I cant seem to get it workin tho with latest svn's of tv-server & media portal on vista ultimate.

I have changed default port to 8080 to avoid conflicts and I just cant seem to connect with my ifone. I get to login screen and try login with admin/admin or guest/guest - but neither login. They just eventually timeout. I noticed on the pc with this installed that http.exe goes to about 80% cpu (core2duo 3ghz) - so seems there is something not right.

I tried disabling firewall too.

Any ideas?

Can you post your error.log from the logs folder.
 

safcsat

Portal Pro
March 1, 2008
74
2
Home Country
United Kingdom United Kingdom
Yo!

First of all thanks this looks fantastic!!

I cant seem to get it workin tho with latest svn's of tv-server & media portal on vista ultimate.

I have changed default port to 8080 to avoid conflicts and I just cant seem to connect with my ifone. I get to login screen and try login with admin/admin or guest/guest - but neither login. They just eventually timeout. I noticed on the pc with this installed that http.exe goes to about 80% cpu (core2duo 3ghz) - so seems there is something not right.

I tried disabling firewall too.

Any ideas?

Can you post your error.log from the logs folder.


Starting the iPiMPweb service
The iPiMPweb service is running.
e] mod_aspdotnet: CorBindToRuntimeEx has loaded version v2.0.50727 of the .NET CLR engine.
[Wed Nov 05 20:49:46 2008] [notice] Apache/2.2.9 (Win32) mod_aspdotnet/2.2 configured -- resuming normal operations
[Wed Nov 05 20:49:46 2008] [notice] Server built: Jun 13 2008 04:04:59
[Wed Nov 05 20:49:46 2008] [notice] Parent: Created child process 4852
[Wed Nov 05 20:49:46 2008] [notice] mod_aspdotnet: CorBindToRuntimeEx has loaded version v2.0.50727 of the .NET CLR engine.
[Wed Nov 05 20:49:46 2008] [notice] Child 4852: Child process is running
[Wed Nov 05 20:49:46 2008] [notice] Child 4852: Acquired the start mutex.
[Wed Nov 05 20:49:46 2008] [notice] Child 4852: Starting 64 worker threads.
[Wed Nov 05 20:49:46 2008] [notice] Child 4852: Starting thread to listen on port 8080.
[Wed Nov 05 21:10:22 2008] [notice] Parent: Received shutdown signal -- Shutting down the server.
[Wed Nov 05 21:10:22 2008] [notice] Child 4852: Exit event signaled. Child process is ending.
[Wed Nov 05 21:10:23 2008] [notice] Child 4852: Released the start mutex
[Wed Nov 05 21:10:24 2008] [notice] Child 4852: All worker threads have exited.
[Wed Nov 05 21:10:24 2008] [notice] Child 4852: Child process is exiting
[Wed Nov 05 21:10:24 2008] [notice] Parent: Child process exited successfully.
Starting the iPiMPweb service
The iPiMPweb service is running.
e] mod_aspdotnet: CorBindToRuntimeEx has loaded version v2.0.50727 of the .NET CLR engine.
[Wed Nov 05 21:10:33 2008] [notice] Apache/2.2.9 (Win32) mod_aspdotnet/2.2 configured -- resuming normal operations
[Wed Nov 05 21:10:33 2008] [notice] Server built: Jun 13 2008 04:04:59
[Wed Nov 05 21:10:33 2008] [notice] Parent: Created child process 5740
[Wed Nov 05 21:10:33 2008] [notice] mod_aspdotnet: CorBindToRuntimeEx has loaded version v2.0.50727 of the .NET CLR engine.
[Wed Nov 05 21:10:33 2008] [notice] Child 5740: Child process is running
[Wed Nov 05 21:10:33 2008] [notice] Child 5740: Acquired the start mutex.
[Wed Nov 05 21:10:33 2008] [notice] Child 5740: Starting 64 worker threads.
[Wed Nov 05 21:10:33 2008] [notice] Child 5740: Starting thread to listen on port 8080.


There doesnt appear to be anything written to this log recently though. CPU has now gone high after i tried to login again and httpd.exe process is causing it,
 

allanp81

Portal Pro
October 24, 2006
917
41
Quick update, I now have mine working by putting the thumbs in a single directory within the ipimp directory and changing the conf file accordingly.
 

cheezey

Community Plugin Dev
August 26, 2004
1,560
312
55
West Yorks, UK
Home Country
United Kingdom United Kingdom
  • Thread starter
  • Moderator
  • #25
There doesnt appear to be anything written to this log recently though. CPU has now gone high after i tried to login again and httpd.exe process is causing it,

I think you're being authenticated but then fails when it then tries to load the default page which makes calls to the tv server.

Can you try this:

1. Edit aspx\web.config line 27 from
HTML:
<deny users="?"/>
to
HTML:
<deny users="-"/>
(turns off authentication requirement)
2. Copy the code below to a file named Test.aspx and save in the aspx folder
3. Restart the webserver
4. Navigate to Test.aspx - you should get "Hello World"
5. Navigate to Default.aspx - I suspect this will hang

Also, please confirm how many channels/groups you have.

I'll load up RC3 & the latest SVN in the next couple of days and see what happens here.

HTML:
<%@ Page Language="VB" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<script runat="server">

    Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs)
        Response.Write("Hello World")
    End Sub
    
</script>

<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
    <title>iPiMP test page</title>
</head>
<body>
    <form id="form1" runat="server">
    <div>
    
    </div>
    </form>
</body>
</html>
 
Status
Not open for further replies.

Users who are viewing this thread

Top Bottom