Ask Question Forum:
Model Library:2025-02-08:A.I. model is online auto reply
C
O
M
P
U
T
E
R
2
8
Show
#
ASK
RECENT
←
- Underline
- Bold
- Italic
- Indent
- Step
- Bullet
- Quote
- Cut
- Copy
- Paste
- Table
- Spelling
- Find & Replace
- Undo
- Redo
- Link
- Attach
- Clear
- Code
Below area will not be traslated by Google,you can input code or other languages
Hint:If find spelling error, You need to correct it,1 by 1 or ignore it (code area won't be checked).
X-position of the mouse cursor
Y-position of the mouse cursor
Y-position of the mouse cursor
Testcursor
caretPos
Attachment:===
Asked by duncanb7
at 2024-07-30 20:06:58
Point:500 Replies:7 POST_ID:829178USER_ID:11059
Topic:
Microsoft IIS Web Server;Apache Web Server;Windows 7
After installed XAMPP on window, I can run web server, for example, on browser address bar,type "localhost", xampp index page will come out.
Today, I installed IIS for asp, now I also work when I type "localhost" , it will go to IIS index page.
But now, xampp is not enabled even I type its port such as localhost:8080
Any issue ? I believe IIS may be not at 8080 so that it should be okay to run two web server
on the same computer if the ports are different , right ?
Duncan
Today, I installed IIS for asp, now I also work when I type "localhost" , it will go to IIS index page.
But now, xampp is not enabled even I type its port such as localhost:8080
Any issue ? I believe IIS may be not at 8080 so that it should be okay to run two web server
on the same computer if the ports are different , right ?
Duncan
Expert: Gary replied at 2024-07-31 06:47:31
Download virtual box and install a linux GUI like Centos
Author: duncanb7 replied at 2024-07-30 20:50:02
it is good link and answer and the points has been graded before your post
Thanks, ambatihp
Duncan
Thanks, ambatihp
Duncan
Expert: ambatihp replied at 2024-07-30 20:47:30
yes it does.
http://windows.php.net/
http://windows.php.net/
Author: duncanb7 replied at 2024-07-30 20:43:15
Great work and fast,thanks for your reply
IIS is using 80 and I set 80 also for xampp so now it is fixed to 80 and 8001
Last question,php script can run on IIS web server on window, right ?
Duncan
IIS is using 80 and I set 80 also for xampp so now it is fixed to 80 and 8001
Last question,php script can run on IIS web server on window, right ?
Duncan
Author: duncanb7 replied at 2024-07-30 20:39:08
since I need to answer some classic asp and xampp question in EE, any alternative suggested ?
you mean php script can run on IIS on window, right ?
Duncan
you mean php script can run on IIS on window, right ?
Duncan
Accepted Solution
Expert: Gary replied at 2024-07-30 20:24:26
500 points EXCELLENT
In httpd.conf search for 80 and replace with 8080 which will be the listening and the virtual host lines then you can use http://localhost:8080
But why run IIS and XAMPP - if you need PHP then just install in IIS and remove XAMPP
But why run IIS and XAMPP - if you need PHP then just install in IIS and remove XAMPP
Expert: ambatihp replied at 2024-07-30 20:23:07
Yes its 100% okay as long as they run on different ports.
Try this out
stop IIS,
start xampp
open command prompt with elevated permissions and type netstat -ab look for the ports its running, if its 80, then your configs are not correct.
If you see it on 80 then
Stop the XAMPP server, if it is running already.
Open the file [XAMPP Installation Folder]/apache/conf/httpd.conf.
Now search for the string Listen 80 (I'm assuming that your XAMPP was using the port 80. Otherwise, just search for the string 'Listen'). This is the port number which XAMPP uses. Change this 80 to any other number which you prefer
Then search for the string ServerName and update the port number there also.
Now save and re-start XAMPP server and you are done.
Try this out
stop IIS,
start xampp
open command prompt with elevated permissions and type netstat -ab look for the ports its running, if its 80, then your configs are not correct.
If you see it on 80 then
Stop the XAMPP server, if it is running already.
Open the file [XAMPP Installation Folder]/apache/conf/httpd.conf.
Now search for the string Listen 80 (I'm assuming that your XAMPP was using the port 80. Otherwise, just search for the string 'Listen'). This is the port number which XAMPP uses. Change this 80 to any other number which you prefer
Then search for the string ServerName and update the port number there also.
Now save and re-start XAMPP server and you are done.