Click here to Skip to main content
15,896,063 members
Home / Discussions / Linux, Apache, MySQL, PHP
   

Linux, Apache, MySQL, PHP

 
GeneralRe: Anyone aware to make Google Unicode (Tamil/Hindi) fonts appear in Ubuntu Linux Pin
N a v a n e e t h7-Oct-11 0:57
N a v a n e e t h7-Oct-11 0:57 
QuestionAny tips to prune down the unwanted services in Ubuntu 11.04 for a classic simple desktop Pin
Vasudevan Deepak Kumar9-Sep-11 5:47
Vasudevan Deepak Kumar9-Sep-11 5:47 
AnswerRe: Any tips to prune down the unwanted services in Ubuntu 11.04 for a classic simple desktop Pin
N a v a n e e t h7-Oct-11 0:59
N a v a n e e t h7-Oct-11 0:59 
AnswerRe: Any tips to prune down the unwanted services in Ubuntu 11.04 for a classic simple desktop Pin
LloydA1117-Nov-11 13:46
LloydA1117-Nov-11 13:46 
QuestionCalling ASP page in PHP page Pin
sarang_k8-Sep-11 3:23
sarang_k8-Sep-11 3:23 
AnswerRe: Calling ASP page in PHP page Pin
cjoki8-Sep-11 5:32
cjoki8-Sep-11 5:32 
AnswerRe: Calling ASP page in PHP page Pin
Vasudevan Deepak Kumar10-Sep-11 12:58
Vasudevan Deepak Kumar10-Sep-11 12:58 
AnswerRe: Calling ASP page in PHP page Pin
Shah Rizal13-Sep-11 21:19
Shah Rizal13-Sep-11 21:19 
Why not you call that asp page by using ? e.g: <iframe height="%100" width="%100" src="http://yourserver/yourfile.aspx">. But if really want to use your own method,you need to setup your http.conf and install asp extension for apache. Below are the step to run asp on your apache:

1.install Mod_AspDotNet

2.
XML
Add at the end of C:\Program Files\Apache Group\Apache2\conf\httpd.conf the following lines
#asp.net
LoadModule aspdotnet_module "modules/mod_aspdotnet.so"
AddHandler asp.net asax ascx ashx asmx aspx axd config cs csproj licx rem resources resx soap vb vbproj vsdisco webinfo

<IfModule mod_aspdotnet.cpp>
# Mount the ASP.NET /asp application
AspNetMount /SampleASP "c:/SampleASP"
#/SampleASP is the alias name for asp.net to execute
#"c:/SampleASP" is the actual execution of files/folders in that location
# Map all requests for /asp to the application files
Alias /SampleASP "c:/SampleASP"
#maps /SampleASP request to "c:/SampleASP"
#now to get to the /SampleASP type http://localhost/SampleASP
#It'll redirect http://localhost/SampleASP to "c:/SampleASP"
# Allow asp.net scripts to be executed in the /SampleASP example
<Directory "c:/SampleASP">
Options FollowSymlinks ExecCGI
Order allow,deny
Allow from all
DirectoryIndex index.htm index.aspx
#default the index page to .htm and .aspx
</Directory>
# For all virtual ASP.NET webs, we need the aspnet_client files
# to serve the client-side helper scripts.
AliasMatch /aspnet_client/system_web/(\d+)_(\d+)_(\d+)_(\d+)/(.*) "C:/Windows/Microsoft.NET/Framework/v$1.$2.$3/ASP.NETClientFiles/$4"
<Directory "C:/Windows/Microsoft.NET/Framework/v*/ASP.NETClientFiles">
Options FollowSymlinks
Order allow,deny
Allow from all
</Directory>
</IfModule>
#asp.net


3. Test it by create your index.aspx and restart apache.
AnswerRe: Calling ASP page in PHP page Pin
headspring16-Sep-11 21:51
headspring16-Sep-11 21:51 
QuestionLinux GUI Programming [modified] Pin
Iranian MM7-Sep-11 9:11
Iranian MM7-Sep-11 9:11 
AnswerRe: Linux GUI Programming Pin
hansoctantan9-Sep-11 21:57
professionalhansoctantan9-Sep-11 21:57 
GeneralRe: Linux GUI Programming Pin
Iranian MM9-Sep-11 23:13
Iranian MM9-Sep-11 23:13 
GeneralRe: Linux GUI Programming Pin
laniakea.development11-Oct-11 20:33
laniakea.development11-Oct-11 20:33 
GeneralRe: Linux GUI Programming Pin
laniakea.development11-Oct-11 20:37
laniakea.development11-Oct-11 20:37 
SuggestionRe: Linux GUI Programming Pin
ashkil26-Oct-11 7:36
ashkil26-Oct-11 7:36 
AnswerRe: Linux GUI Programming Pin
Richard MacCutchan9-Sep-11 23:04
mveRichard MacCutchan9-Sep-11 23:04 
AnswerRe: Linux GUI Programming Pin
Member 785193010-Sep-11 13:54
Member 785193010-Sep-11 13:54 
AnswerRe: Linux GUI Programming [modified] Pin
N a v a n e e t h7-Oct-11 1:00
N a v a n e e t h7-Oct-11 1:00 
AnswerRe: Linux GUI Programming [modified] Pin
elgaabeb12-Dec-11 22:03
elgaabeb12-Dec-11 22:03 
Questionhelp with php [modified] Pin
spawn20041-Sep-11 7:38
spawn20041-Sep-11 7:38 
AnswerRe: help with php Pin
Member 82165606-Sep-11 5:42
Member 82165606-Sep-11 5:42 
QuestionContact form Pin
starr00730-Aug-11 17:03
starr00730-Aug-11 17:03 
AnswerRe: Contact form Pin
Evan Gallup3-Sep-11 18:40
Evan Gallup3-Sep-11 18:40 
AnswerRe: Contact form Pin
Vasudevan Deepak Kumar10-Sep-11 12:59
Vasudevan Deepak Kumar10-Sep-11 12:59 
QuestionDebugging django ap with winge ide Pin
CodingYoshi30-Aug-11 12:09
CodingYoshi30-Aug-11 12:09 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.