
December 21st, 2003, 03:04 PM
|
|
Registered User
|
|
Join Date: Dec 2003
Posts: 26
Time spent in forums: 1 h 29 sec
Reputation Power: 0
|
|
|
Yes it can; however, there are a few items that will not work. For example IIS 6 no longer supports CDONTS so any code, such as email routines, will have to be re-written using CDOSYS.
Parent Paths is also disabled by default on IIS 6 and for security reasons should remain that way. Any "includes" statements that are using relative parent paths will have to be changed to use virtual paths. For example:
include file="../filename.ext" will generate an error.
Use include virtual="/virtual_path/filename.ext" instead
These are the 2 most likely problems you may encounter.
|