Page 2 of 2 FirstFirst 12
Results 11 to 13 of 13

Thread: echo vs print

  1. #11
    Join Date
    Apr 2012
    Location
    Chester, Cheshire
    Posts
    329
    Thanks
    7
    Thanked 35 Times in 35 Posts

    Default

    What's wrong with it Traq? UpdatePanels are the easiest way I've known so far to use AJAX and to have that ease with the scripting power of PHP...

    One other small thing with Phalanger... if you add the mod_mono module to your Apache server, you can run a .aspx.php site on a Linux server. You don't even need IIS.

  2. #12
    Join Date
    Apr 2008
    Location
    So.Cal
    Posts
    3,643
    Thanks
    63
    Thanked 516 Times in 502 Posts
    Blog Entries
    5

    Default

    Quote Originally Posted by ApacheTech View Post
    What's wrong with it Traq?
    nothing; I'm sure. just teasing.

    (Although, I didn't realize you could use Phalanger without IIS. interesting.)

  3. #13
    Join Date
    Apr 2012
    Location
    Chester, Cheshire
    Posts
    329
    Thanks
    7
    Thanked 35 Times in 35 Posts

    Default

    http://www.mono-project.com/Mod_mono

    Mod_Mono is an Apache 2.0/2.2 module that provides ASP.NET support for the web's favorite server, Apache.

    The module passes off requests for ASP.NET pages to an external program, mod-mono-server, which actually handles the requests. The communication between the Apache module and mod-mono-server is established using a Unix socket or a TCP socket.

    Mod_mono is an Apache module that is hosted inside Apache. Depending on your configuration the Apache box could be one or a dozen of separate processes, all of these process will send their ASP.NET requests to the mod-mono-server process. The mod-mono-server process in turn can host multiple independent applications. It does this by using Application Domains to isolate the applications from each other, while using a single Mono virtual machine.

    Although AppDomains provide an adequate level of isolation, mod_mono can also be configured to route different urls to different mod-mono-server processes. You can use this to:
    • As an ISP, isolate different customers to different processes
    • Allow experimental code to run in one server, independent of production code.
    • Allow the kernel to enforce different isolation rules for different processes (for example with AppArmor or SELinux)
    • Setup different CPU, Disk and memory quotas to different processes


    This page shows you the current compatibility checklist for all .NET Frameworks:
    http://www.mono-project.com/Compatibility

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
  •