[已解决-参见以下解决方案]
请协助,我正在将文件写入applicationdir/uploads/
文件夹中。
通过wamp64 host
将文件写到我的本地主机上时,文件生成完美。
但是,当我在自己的IIS 8.0 server
上尝试执行此操作时,该表单将提交,不会引发任何错误,但不会创建文件...
我正在使用File_Put_Contents
命令来创建文件。
我已经阅读了其他帖子,并且正如其他人所指出的,我将applicationpool\MYAppPool
的名称更改为类似于应用程序的名称(无济于事)。我还允许iis_iusrs
权限写入该目录。
有什么想法吗? PHP以下:
<?php
if( $_SERVER['REQUEST_METHOD']=='POST' && !empty( $_POST['xml'] ) ){
$Counter = date("Y-m-d") . ' ' . Time();
$file = 'uploads/' . $Counter . ' - Export.xml';
$bytes = file_put_contents( $file, $_POST['xml'] );
exit( sprintf('%d bytes written to %s',$bytes,realpath($file) ) );
}
?>
屏幕截图:
我不知道这会有什么不同,但这是将xml数据传递到服务器的javascript代码。 Javascript:
<script>
var template = [
'<?xml version="1.0"?>',
'<unattend xmlns="urn:schemas-microsoft-com:unattend">',
'<Data>',
' <SubmitBy><?SubmitBy?></SubmitBy>',
' <Level10><?Level10?></Level10>',
' <Level1><?Level1?></Level1>',
' <Level2><?Level2?></Level2>',
' <Level3><?Level3?></Level3>',
' <Level4><?Level4?></Level4>',
' <Title><?Title?></Title>',
' <Subject><?Subject?></Subject>',
' <Author><?Author?></Author>',
' <Keywords1><?Keywords1?></Keywords1>',
' <Keywords2><?Keywords2?></Keywords2>',
' <Destroy_Date><?Destroy_Date?></Destroy_Date>',
'</Data>',
'</unattend>'
].join('\r\n');
const ajax=function( params ){
with( new XMLHttpRequest() ){
onreadystatechange=function(e){
if( this.status==200 && this.readyState==4 ){
alert( this.response )
}
}
open( 'POST', location.href, true );
setRequestHeader('Content-Type','application/x-www-form-urlencoded');
send( params );
}
}
document.addEventListener('DOMContentLoaded', ()=>{
document.querySelector('input[ type="button" ]').addEventListener('click', e=>{
let vars={};
Array.prototype.slice.call( document.querySelectorAll('form > input[ type="text" ]') ).forEach( field =>{
vars[ field.name ]=field.value
});
Array.prototype.slice.call( document.querySelectorAll('select') ).forEach( field =>{
vars[ field.name ]=field.value
});
Array.prototype.slice.call( document.querySelectorAll('form > input[ type="date" ]') ).forEach( field =>{
vars[ field.name ]=field.value
});
let xml=template.replace(/<\?(\w+)\?>/ig, (match,name)=>{
return vars[name];
});
ajax.call( this, 'xml='+xml);
})
});
</script>
此问题已通过将“ Index.php”条目移至第一个 在IIS中我网站的“默认文档”选项中的位置。
IIS>Sites>Website>Default Document