stuart99 Posted April 14, 2003 Share Posted April 14, 2003 Using IIS (internet information service) I made a php code and set a reference to directory E:\inetpub\wwwroot\teste Now I'm tranfering the code to Lycos server and I wanna know: how should I change the reference? Remember: Lycos server uses Linux system... Link to comment Share on other sites More sharing options...
0 Tim Dorr Veteran Posted April 14, 2003 Veteran Share Posted April 14, 2003 you used something like include( 'E:\inetpub\wwwroot\teste' ); ? You should just use relative references. For example: You have index.php, and includes/header.php You would use include( './includes/header.php' ); to include the header file in the index.php page. Link to comment Share on other sites More sharing options...
Question
stuart99
Using IIS (internet information service) I made a php code and set a reference to directory E:\inetpub\wwwroot\teste
Now I'm tranfering the code to Lycos server and I wanna know: how should I change the reference?
Remember: Lycos server uses Linux system...
Link to comment
Share on other sites
1 answer to this question
Recommended Posts