0

在本地主机上工作时,我正在使用exec()调用从 php 文件执行 C++ 目标文件。然后目标文件向守护进程发送请求,这也是一个可执行文件;作为服务器工作(我需要手动执行它,以便它保持在侦听模式,即./server)。

现在我想把我的 php 文件作为一个网站放在互联网上。我是否需要任何特定的托管计划或一般计划,例如在此处输入链接描述就足够了?

我的需求是 php、mysql、ajax、jquery、JS、执行 c、c++ 文件!

4

1 回答 1

1

This isn't really a c++ question.

Make sure you have the right permissions to execute the file. Remember, php executes as the
www-data user.

chmod a+x to grand everyone execution permissions.

Then add the location of ./server in your path and simply exec() it.

于 2013-08-14T16:51:29.640 回答