64位 win7 为iis7 配置 php 环境
安装完成后,浏览器中输入http://127.0.0.1,如果不出意外,会出现一个IIS7的欢迎界面。
转贴:http://apps.hi.baidu.com/share/detail/10406992
(1)、采用理由:
优点:最大化的桌面图形化操作系统,可维护性优秀。基于IIS v6.0/v7.0(2008),可以支持的脚本相当完整,不仅支持Linux无法支持的asp/asp.net,还可以安装php、mysql、zend实现php环境。同时,利用Serv-U可以实现ftp管理。操作简单,无需键入任何命令就可实现全能型主机。
一生爱你千百回!献给未来的女朋友!!
...
为什么相爱的人不能在一起!!!!
...2005年度曾在网络流行被转载千万次的校园情感作品!
IIS6架设网站常见问题及症状答疑
关键词: iis6
The server has encountered an error while loading an application during the processing of your request. Please refer to the event log for more detail information. Please contact the server administrator for assistance.
...
<style>
.xlsText{mso-style-parent:style0;mso-number-format:”\@”;} /* 设置单元格类型为文本*/
</style>
<%
response.ContentType=”application/vnd.ms-excel” ‘设置网页输出类型为:Excel
%>
目录下新建counter.txt
<?php
$fp = fopen("counter.txt","r+");
$counter = fgets($fp,80);
$counter = doubleval($counter) + 1;
fseek ($fp,0);
fputs($fp,$counter);
fclose($fp);
?>
<?= $counter ?>