dourao1877 2017-06-09 12:01
浏览 71
已采纳

Web程序如何更改Linux应用程序? [关闭]

How this web programming works?

For example, we have a Linux application running on a server i.e “bind”.

How do we create a Web GUI to manage that bind server?

For example, if we add a zone through the GUI, that zone should be registered in the bind’s config file. I just want to how stuff works. How connection works, How an apache server can make modifications to application’s config file?

Any hints would be really appreciated.

  • 写回答

1条回答 默认 最新

  • dongzanghua8422 2017-06-09 12:08
    关注

    php can natively work with files on the file system so long as the user running service thread has permissions to the file you want to change. It's pretty easy to do.

    $myFile = "/var/config.txt";
    $fh = fopen($myFile,'w');
    

    A better way for two applications to interact is through a database though. Having the web application writing to a config table that the console app reads and uses.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥20 机器学习能否像多层线性模型一样处理嵌套数据
  • ¥20 西门子S7-Graph,S7-300,梯形图
  • ¥50 用易语言http 访问不了网页
  • ¥50 safari浏览器fetch提交数据后数据丢失问题
  • ¥15 matlab不知道怎么改,求解答!!
  • ¥15 永磁直线电机的电流环pi调不出来
  • ¥15 用stata实现聚类的代码
  • ¥15 请问paddlehub能支持移动端开发吗?在Android studio上该如何部署?
  • ¥20 docker里部署springboot项目,访问不到扬声器
  • ¥15 netty整合springboot之后自动重连失效