> > this is what i do not understand... > > You need to make sure that you configure xsp2 or apache to host the > application at the same path as the virtual path you specify when you > precompile the site. > > i precompile like this..aspnet_compiler -v \venangotest c:\stage0430 > > now i get my files in the stage0430 folder and i move them to > linux...i am working with someone else on the linux server side...how > do i tell him to host the application at the same path as the virtual > path...
Assuming this is apache, they need to configure the server to host the application at http://yourservername.com/venangotest Alternatively, if you can't control this, and your application is hosted at a different URL, for instance: http://yourservername.com/awesomeapp You need to precompile your application to that virtual path: aspnet_compiler -v /awesomeapp c:\stage0430 (Also, note the direction of the slash ( / ) in the virtual path, I haven't tried backslash, so I don't know if it makes a difference, but forward slash is the correct path separator. --Joseph >> You need to make sure that you configure xsp2 or apache to host the >> application at the same path as the virtual path you specify when you >> precompile the site. > > > _______________________________________________ Mono-aspnet-list mailing list [email protected] http://lists.ximian.com/mailman/listinfo/mono-aspnet-list
