Re: [Mono-aspnet-list] System.ArgumentException: Key duplication when adding: httpModules

2012-06-01 Thread Daniel J. Summers
in any of those. -- *Daniel J. Summers* *Owner, DJS Consulting* E-mail daniel.summers.2...@gmail.com • Website http://djs-consulting.com • Support http://support.djs-consulting.com • Tech Bloghttp://techblog.djs-consulting.com GEEKCODE 3.12 GCS/IT d s-:+ a C++ P--- L++ E--- W++ N++ o? K- w !O M

Re: [Mono-aspnet-list] How to host(Deploy) a Web application from Monodevelop Ide to Linux OS machine-reg

2012-05-08 Thread Daniel J. Summers
. Is there any option? It's been a while, but I think you can set up file copy deploy to any directory; then, you can zip/move/deploy that tree to your webserver. That's how I would deploy developing on Windows and hosting under Linux. -- *Daniel J. Summers* *Owner, DJS Consulting* E-mail

[Mono-aspnet-list] Apache2/mod_mono compiling on every request

2012-03-31 Thread Daniel J. Summers
with it behaving like this, in case it's not just a configuration parameter I have wrong on the server. (The virtual host/mod_mono config is the same between servers, except for the server name.) I'd appreciate any help anyone could provide. -- *Daniel J. Summers* *Owner, DJS Consulting* E-mail

[Mono-aspnet-list] Fwd: How to backup PostgreSql database from browser in MVC2 application on Mono in Linux

2012-03-24 Thread Daniel J. Summers
Forgot to cc: list... -- Forwarded message -- From: Daniel J. Summers daniel.summers.2...@gmail.com Date: Sat, Mar 24, 2012 at 9:06 AM Subject: Re: [Mono-aspnet-list] How to backup PostgreSql database from browser in MVC2 application on Mono in Linux To: Andrus kobrule...@hot.ee

Re: [Mono-aspnet-list] How to backup PostgreSql database from browser in MVC2 application on Mono in Linux

2012-03-24 Thread Daniel J. Summers
I'm not at home, so it's tough to look up - can you specify the response output stream as the target for the standard output redirection for the process? If so, that would connect the two, and you'd likely not even need to read from the process and write to the output. You might need to fiddle

Re: [Mono-aspnet-list] Fwd: Re: CKEditor

2012-02-01 Thread Daniel J. Summers
and linked to it in the HTML. -- *Daniel J. Summers* *Owner, DJS Consulting* E-mail daniel.summers.2...@gmail.com • Website http://djs-consulting.com • Support http://support.djs-consulting.com • Tech Bloghttp://techblog.djs-consulting.com GEEKCODE 3.12 GCS/IT d s-:+ a C++ P--- L++ E--- W++ N++ o? K- w

Re: [Mono-aspnet-list] url rewrite module ~/ path

2012-01-31 Thread Daniel J. Summers
The tilde-slash combo is only replaced in runat=server elements; not sure why it worked with xsp... On Jan 29, 2012 5:11 PM, tsadigov tsadi...@yahoo.com wrote: Hi Im developing a eshop in mono and want to use url rewrite it works with xps but when moving to apache it didn't work for me so I

[Mono-aspnet-list] Fwd: Re: CKEditor

2012-01-31 Thread Daniel J. Summers
Forgot to cc the list... -- Forwarded message -- From: Daniel J. Summers daniel.summers.2...@gmail.com Date: Jan 31, 2012 10:14 AM Subject: Re: [Mono-aspnet-list] CKEditor To: jparker jpar...@farcomm.com You might check case-sensitivity. For Mono, set MONO_IOMAP to all

Re: [Mono-aspnet-list] Mono and IHttpHandler

2011-11-18 Thread Daniel J. Summers
be writing bytes instead of result? -- *Daniel J. Summers* *Owner, DJS Consulting* E-mail daniel.summers.2...@gmail.com • Website http://djs-consulting.com • Support http://support.djs-consulting.com • Tech Bloghttp://techblog.djs-consulting.com GEEKCODE 3.12 GCS/IT d s-:+ a C++ P--- L++ E--- W++ N

Re: [Mono-aspnet-list] Handling php in the same asp.net web site/application

2011-05-17 Thread Daniel J. Summers
. For Apache2, look at the AddHandler and SetHandler directives; with LigHTTPD and nginx, set the FastCGI configuration based on file type. (Disclaimer: I haven't actually done this myself; this answer is based on my knowledge of configuring LigHTTPD, nginx, and Apache.) -- *Daniel J. Summers

Re: [Mono-aspnet-list] Cannot find MySQL Namespace

2011-04-16 Thread Daniel J. Summers
What's worked for me is... 1. Copy the file to /bin of the project. 2. Add the reference to that file to your project. 3. In the reference part of your project, set Copy Local to true (if it isn't already). From here, Build and Publish should copy the DLL to the output /bin directory (AKA

Re: [Mono-aspnet-list] MVC 3 - Error on first site hit

2011-04-08 Thread Daniel J. Summers
OK - when I remove MWI DLL, now it can't find System.Web.WebPages.Deployment. I remember running into that one earlier in my attempts to get this going, before I found Scott's blog post. Should that be in the GAC? -- *Daniel J. Summers* *Owner, DJS Consulting* E-mail daniel.summers.2

Re: [Mono-aspnet-list] MVC 3 - Error on first site hit

2011-04-08 Thread Daniel J. Summers
On Fri, Apr 8, 2011 at 2:09 PM, Marek Habersack gren...@twistedcode.netwrote: On Fri, 8 Apr 2011 14:03:40 + Daniel J. Summers daniel.summers.2...@gmail.com wrote: OK - when I remove MWI DLL, now it can't find System.Web.WebPages.Deployment. I remember running into that one earlier

Re: [Mono-aspnet-list] How to remove MVC EditorForModel() entity framework dependency

2011-04-02 Thread Daniel J. Summers
, and it should copy over when you deploy the project. -- *Daniel J. Summers* *Owner, DJS Consulting* E-mail daniel.summers.2...@gmail.com • Website http://djs-consulting.com • Support http://support.djs-consulting.com • Tech Bloghttp://techblog.djs-consulting.com GEEKCODE 3.12 GCS/IT d s-:+ a C++ P--- L++ E

Re: [Mono-aspnet-list] Where to start with Mono ASP.NET?

2011-03-30 Thread Daniel J. Summers
Hanselman's blog at http://www.hanselman.com/blog/ and Scott Guthrie's blog at http://weblogs.asp.net/scottgu/ - both these guys are developers on the .NET project at Microsoft. -- *Daniel J. Summers* *Owner, DJS Consulting* E-mail daniel.summers.2...@gmail.com • Website http://djs-consulting.com

Re: [Mono-aspnet-list] Problems configuring apache2 + mono

2011-03-29 Thread Daniel J. Summers
work, but for now, I've found that the latter config meets my needs, and it's the same complexity as the FastCGI config I used to run, so at least it's no more complex. :) -- *Daniel J. Summers* *Owner, DJS Consulting* E-mail daniel.summers.2...@gmail.com • Website http://djs-consulting.com

Re: [Mono-aspnet-list] MVC 3 App Cannot Find Template

2011-03-29 Thread Daniel J. Summers
On Mon, Mar 14, 2011 at 5:33 AM, Daniel J. Summers daniel.summers.2...@gmail.com wrote: But, when it tries to render the home page, the following error occurs: System.InvalidOperationException: The view 'Index' or its master was not found or no view engine supports the searched locations

Re: [Mono-aspnet-list] MVC 3 App Cannot Find Template

2011-03-15 Thread Daniel J. Summers
, but deploy on Linux; is there a quick way to make this smart so that it only replaces the view engine if it's running under Mono? Or should that work in both environments? -- *Daniel J. Summers* *Owner, DJS Consulting* E-mail daniel.summers.2...@gmail.com • Website http://djs-consulting.com • Support

Re: [Mono-aspnet-list] MVC 3 App Cannot Find Template

2011-03-15 Thread Daniel J. Summers
); } } } -- *Daniel J. Summers* *Owner, DJS Consulting* E-mail daniel.summers.2...@gmail.com • Website http://djs-consulting.com • Support http://support.djs-consulting.com • Tech Bloghttp://techblog.djs-consulting.com GEEKCODE 3.12 GCS/IT d s-:+ a C++ P--- L++ E--- W++ N++ o? K- w !O M-- V PS+ PE++ Y? PGP- t+ 5

Re: [Mono-aspnet-list] Why the LogOn action does not work correct?

2011-03-01 Thread Daniel J. Summers
. -- *Daniel J. Summers* *Owner, DJS Consulting* E-mail daniel.summers.2...@gmail.com • Website http://djs-consulting.com • Support http://support.djs-consulting.com • Tech Bloghttp://techblog.djs-consulting.com GEEKCODE 3.12 GCS/IT d s-:+ a C++ P--- L++ E--- W++ N++ o? K- w !O M-- V PS+ PE++ Y? PGP- t+ 5

Re: [Mono-aspnet-list] Error getting response stream (Trustfailure) for HTTP (NOT https) Request?

2011-03-01 Thread Daniel J. Summers
I'm pretty sure that Google is redirecting mail and docs to https, partly in response to Firesheep. Try that URL in a browser and see if you get redirected. (I'd try it, but I'm using my phone to type this.) Daniel -Original Message- From: lars l...@larsknox.com Sender:

Re: [Mono-aspnet-list] Why the LogOn action does not work correct?

2011-02-28 Thread Daniel J. Summers
just in VS2010 for now; however, it will eventually run in Mono. -- *Daniel J. Summers* *Owner, DJS Consulting* E-mail daniel.summers.2...@gmail.com • Website http://djs-consulting.com • Support http://support.djs-consulting.com • Tech Bloghttp://techblog.djs-consulting.com GEEKCODE 3.12 GCS/IT d s

Re: [Mono-aspnet-list] Could not find type:MySql.Web.Security.MySQLRoleProvider

2011-02-28 Thread Daniel J. Summers
Unless it's changed (which it could - it's been years since I worked with it), the MySql driver doesn't include the role provider. Daniel -Original Message- From: ajwtech ajwt...@gmail.com Sender: mono-aspnet-list-boun...@lists.ximian.com Date: Mon, 28 Feb 2011 15:40:37 To:

Re: [Mono-aspnet-list] Mono on Nginx

2011-02-14 Thread Daniel J. Summers
roadblock, that's the route I'm heading towards. I'm planning on writing up how I made it work (once I have made it work), and posting the URL to that to this list. -- *Daniel J. Summers* *Owner, DJS Consulting* E-mail daniel.summers.2...@gmail.com • Website http://djs-consulting.com • Support

Re: [Mono-aspnet-list] Issues with Mono, nginx, xsp2, FastCGI, etc.

2011-01-30 Thread Daniel J. Summers
laptop as well (manual entries in /etc/hosts!), so the configs I write should be able to be dropped right into the server after changing the ServerName line. -- *Daniel J. Summers* *Owner, DJS Consulting* E-mail daniel.summers.2...@gmail.com • Website http://djs-consulting.com • Support http

[Mono-aspnet-list] Issues with Mono, nginx, xsp2, FastCGI, etc.

2011-01-22 Thread Daniel J. Summers
the second issue? Is there some way, when proxying to xsp2, to tell it the port on which it's actually seen vs. the one on which it's listening? -- Daniel J. Summers Owner, DJS Consulting daniel.summers.2...@gmail.com • http://djs-consulting.com GEEKCODE 3.12 GCS/IT d s-:+ a C++ P--- L++ E--- W++ N