php控制iis設置默認文檔,我們前面講過了用php 的new com接口來設置iis的默認文檔。
php控制iis設置默認文檔,我們前面講過了用php 的new com接口來設置iis的默認文檔。
<?
# PHP控制站點程序
#
# 編寫人:韓湘子
#
# 郵箱:[email protected]
#
# MSN:[email protected]
#
# QQ:220670
#
# 歡迎大家互相聯系討論
?>
<link href="image/css.css" rel="stylesheet" type="text/css" />
<style type="text/css">
<!--
body {
background-color: #D4D0C8;
}
-->
</style>
<?php
$Site = New Com("IIS://Localhost/w3svc/".$ServerID);
iF($Submit){
$Site->DefaultDoc = $DefaultDocList;
$Site->SetInfo();
}
?>
<table width="100%" border="0" cellspacing="0" cellpadding="3">
<tr>
<td><a href="3.php"><strong>返回主機列表</strong></a></td>
</tr>
</table>
<table width="100%" border="0" cellspacing="0" cellpadding="3">
<tr>
<td><a href="33.php?ServerID=<?php echo $ServerID;?>">返回主機管理</a></td>
</tr>
<tr>
<td> </td>
</tr>
</table>
<form action="?ServerID=<?php echo $ServerID;?>" method="POST">
請輸入默認文檔,以英文符號,隔開 <input type=input value="<?php echo $Site->DefaultDoc;?>" size=80 name="DefaultDocList"><input type="Submit" name="Submit" value="提交">
</form>