mono und ASP.NET support unter Confixx

Plesk, Confixx, Froxlor, SysCP, SeCoTo, IspCP, etc.
Post Reply
Anonymous
 

mono und ASP.NET support unter Confixx

Post by Anonymous »

hi,
ich hab mono-XSP installiert und will asp.net unterstuetzung bei manchen kunden aktivieren, ist das moeglich ueberhaupt? oder wird nur fuer alle kunden gleich aktiviert? welche einstellung soll in apache oder confixx vhost vorgenommen werden?
ehrlich gesagt fehlt mir infos : :?:
Debian Etch server
Confixx 3.3.6
EdRoxter
Posts: 483
Joined: 2006-01-06 03:23
Location: Neben Bonn
 

Re: mono und ASP.NET support unter Confixx

Post by EdRoxter »

Meines Wissens ist die Aktivierung und Verwaltung von asp.net unter Confixx nicht ootb möglich. Du könntest höchstens mod_asp.net bzw. mod_mono installieren und händisch per httpd spezial für die einzelnen Webs aktivieren.
Anonymous
 

Re: mono und ASP.NET support unter Confixx

Post by Anonymous »

danke EdRoxter,
EdRoxter wrote:händisch per httpd spezial für die einzelnen Webs aktivieren.
und genau das wollte ich wiessen, welche eintrag soll eingefuegt werden?
EdRoxter
Posts: 483
Joined: 2006-01-06 03:23
Location: Neben Bonn
 

Re: mono und ASP.NET support unter Confixx

Post by EdRoxter »

Welchen Apache-Mod nutzt du denn? mod_mono oder mod_asp.net?
Anonymous
 

Re: mono und ASP.NET support unter Confixx

Post by Anonymous »

EdRoxter wrote:Welchen Apache-Mod nutzt du denn? mod_mono oder mod_asp.net?
mod_mono
EdRoxter
Posts: 483
Joined: 2006-01-06 03:23
Location: Neben Bonn
 

Re: mono und ASP.NET support unter Confixx

Post by EdRoxter »

Dann schau auf der mod_mono-Seite, das ist sehr ausführlich dokumentiert.

Grob wäre das, ohne es getestet zu haben:

Code: Select all

MonoApplications AnwendungsName "/:/var/www/##user###/"
SetHandler mono
Anonymous
 

Re: mono und ASP.NET support unter Confixx

Post by Anonymous »

Obwohl ich alles richtig eingestellt habe wie hier:
https://help.ubuntu.com/community/ModMono
oder hier
http://www.mono-project.com/Mod_mono
aber wenn ich *.aspx rufe, kann ich nur downloaden und nachdem adding "SetHandler mono" in vhost werden .php seiten auch nicht mehr ausgefuehrt!!
Aber ohne SetHandler mono in vhost wird die inhalte gezeigt und nichts als ASPX website ausgefuehrt.

Code: Select all

<%@ Page Language="C#" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>
  <head>
    <title>ASP Test Page</title>
  </head>
  <body>
        <form id="form1" runat="server">
          <asp:label id="lbl1" runat="server">ASP Test Page</asp:label>
        </form>
  </body>
</html>
und apache log sagt gar nichts darueber!?
Danke im Voraus
Anonymous
 

Re: mono und ASP.NET support unter Confixx

Post by Anonymous »

Hat jemand sowas gemacht vorher?
User avatar
Joe User
Project Manager
Project Manager
Posts: 11191
Joined: 2003-02-27 01:00
Location: Hamburg
Contact:
 

Re: mono und ASP.NET support unter Confixx

Post by Joe User »

Lies die Apache-Dokumentation zu SetHandler und AddHandler, dann findest Du die Lösung für Dein ASP<->PHP Problem.
PayPal.Me/JoeUserFreeBSD Remote Installation
Wings for LifeWings for Life World Run

„If there’s more than one possible outcome of a job or task, and one
of those outcomes will result in disaster or an undesirable consequence,
then somebody will do it that way.“ -- Edward Aloysius Murphy Jr.
Anonymous
 

Re: mono und ASP.NET support unter Confixx

Post by Anonymous »

Habe ich alle variante probiert und richtig apache docu gelesen und nachgemacht, ist dasselbe und error log sagt gar nichts darueber.
User avatar
Joe User
Project Manager
Project Manager
Posts: 11191
Joined: 2003-02-27 01:00
Location: Hamburg
Contact:
 

Re: mono und ASP.NET support unter Confixx

Post by Joe User »

Zeige bitte Deine vollständige mod_mono.conf und den kompletten VHost-Container.
PayPal.Me/JoeUserFreeBSD Remote Installation
Wings for LifeWings for Life World Run

„If there’s more than one possible outcome of a job or task, and one
of those outcomes will result in disaster or an undesirable consequence,
then somebody will do it that way.“ -- Edward Aloysius Murphy Jr.
Anonymous
 

Re: mono und ASP.NET support unter Confixx

Post by Anonymous »

Joe User wrote:Zeige bitte Deine vollständige mod_mono.conf und den kompletten VHost-Container.
fixed:
1. eintrag in Vhost war nichts correct.
2. mod_mono_auto fuer AutoHosting war nichts aktiviert.
3. mono-devel purged und von Backports geholt.

danke fuer alles.
Post Reply