I have tried to run a test active server pages script -from public html/cgi-bin folder- but it only gives me a blank screen, no errror message. ???
thanks,HTML Code:<html> <body> <% response.write("Hello World!") %> </body> </html>
matt
I have tried to run a test active server pages script -from public html/cgi-bin folder- but it only gives me a blank screen, no errror message. ???
thanks,HTML Code:<html> <body> <% response.write("Hello World!") %> </body> </html>
matt
The ASP Framework needs a Windows powered server. X10 uses Linux and as such... not Windows
Are you really getting a blank page? Check the source. I suspect you'll find it output exactly what you told it to, considering that the code isn't parsed.
If anyone can see it, my post was meant for anyone who reads it. Don't take it personally or think I'm being condescending... :nuts:
Uh huh, Scoochi2,
When I run it from the cgi-bin folder I get an error message:
Internal server error
The server encountered an internal error or misconfiguration and was unable to complete your request.
etc, etc, etc....
If I run it from the public html folder I get a blank page.
So there is no way to run asp on .x10 hosting because we use a platform type that doesn't support it.
What are you using instead of asp?
Moooochas gracias,
sif
Maybe I got that wrong..?
In your user CP, go to the CGI center. I'm not sure I can help you further with this one![]()
If anyone can see it, my post was meant for anyone who reads it. Don't take it personally or think I'm being condescending... :nuts:
Scoochi2,
Don't sweat it. You were a help. I might let this thread close. I'll work on it later....![]()
Only ASPX is currently supported. To enable that, you have to override your mime type to parse it, run from your CGI-BIN folder. Something I can get if you want it. Schooch2 is right, it is only commonly run on Microsoft servers (IIS).
Last edited by Twinkie; 12-04-2008 at 10:01 PM.
To further Twinkie's response, I found this help topic:
http://support.x10hosting.com/index....&kbarticleid=9
- You need to login cPanel and go to MIME Types under Advanced.
- Add the following MIME Type:
Application: application/mono
Extensions: .aspx .ascx .asax .ashx .config .cs .asmx .axd
- You should now be able to use ASP.NET on your site.
If anyone can see it, my post was meant for anyone who reads it. Don't take it personally or think I'm being condescending... :nuts:
ah, so they use mono to power asp... that makes sense, since it's a cross-platform .net framework. Now I know how to answer the "is asp enabled" questions
LINK: http://www.mono-project.com/Main_Page
I still can't find a category "MIME types" in the "Advanced" area at the bottom of my C-panel. Is the mime types configuration somewhere else?
Thanks again,
sif
Create ".htaccess" in root directory of your website (/public_html/) and write in it:
(If this helps I'll add it as a comment to KB article)Code:AddType application/mono aspx ascx asax ashx config cs asmx axd
Last edited by t2t2t; 12-29-2008 at 03:09 PM.