Hi!
I'm trying to use PHP Desktop to create a web service server that our customers can install on their computer. The main window just has a few options, shows that it's running, and minimizes to the system tray. Elsewhere in the project I have a RESTful web service in a PHP doc.
In other words, I'm trying to create a way for our customers to install something on their computer, run it, and they've got a web server up with a php web service ready to consume. They don't have to have any knowledge of setting anything up other than installing and running the program. The web server then interacts with a database that a different software package we sell puts on their PC. I've always loved PHP Desktop and was hoping to use it for this task.
So far it seems promising. I can access the database and the web service all locally. The problem I'm having is it seems that Mongoose is locked down to only allow local connections. Is there a way to open up the Mongoose server to allow the app to be accessed from the outside world?
And while I'm at it, does anyone see any other problems I might run into?