我遇到了一個問題,我正在構建一個應用程序,允許用戶更改通常只能在管理面板中更改的數據。我的應用程序過濾掉所有易受攻擊的數但是,當我更改應用程序中的數據時,還必須在原始管理面板中進行更新。爲此,我必須將一個xml文件上傳到管理面板。目前這是手動操作,但它必須是自動的。但是,我必須通過管理面板上傳它,否則數據將不會在此面板中更新。用file_put_contents
直接更新它並不可悲。php在不同的網站上運行操作
這段代碼位於mydomain.com/system_backup.php
。這是在管理面板中,它需要您使用用戶名登錄並通過才能使用它。
//The html on this page. system_backup.php
<form action="system_backup.php" method="post" enctype="multipart/form-data">
//Downloads the current xml-file from the server
<input name="Download" type="submit" class="formbtn" id="download" value="Download configuration">
//select the xml file from your local system.
<input name="conffile" type="file" class="formfld" id="conffile" size="40">
//restore/update the xml-file.
<input name="Restore" type="submit" class="formbtn" id="restore" value="Restore configuration">
</form>
這看起來像這樣。
當您在瀏覽器中打開頁面時,以javascript/jquery提供以下登錄提示。
那麼有沒有辦法用php創建一個自動化腳本,用這個管理面板登錄並更新這個文件?如果用php不可能,那麼它是否可以使用不同的語言?我將不得不每天晚上用cron-job來運行它。
據我所知,這是不可能在PHP中。我認爲可能的語言(因爲您可以使用'webcontrol')是C#... – Mathlight
登錄提示不會使用JavaScript顯示,但它是HTTP基本訪問身份驗證。在請求資源時,您需要發送適當的標題。你可以使用AJAX或者服務器端,使用cURL。 –
@SergiuParaschiv是的我可以使用'file_get_contents(http:// user:[email protected]/system_backup.php);' – kpp