Closed GoogleCodeExporter closed 9 years ago
Problem also exists with the Thread Safe version of PHP.
Original comment by czarek.t...@gmail.com
on 15 Jan 2013 at 5:48
One of the options is to embed embed a web-server like Mongoose, which
is written in C,only 140 KB, with CGI support, it is cross-platform and
MIT licensed, this is the only option for Internet Explorer engine:
http://en.wikipedia.org/wiki/Mongoose_(web_server)
Wich Chrome we can implement a custom scheme handler, thus making web-server
an optional thing, we could go with direct PHP API calls to execute scripts,
but this would have to be done in a multi-threaded manner, CEF would need to
have a multi-threaded message loop.
Original comment by czarek.t...@gmail.com
on 15 Jan 2013 at 6:03
Mongoose official website is at:
http://code.google.com/p/mongoose/
Original comment by czarek.t...@gmail.com
on 15 Jan 2013 at 6:11
Mongoose PHP example (available in Downloads) comes with a Thread Safe
version of PHP, as I see "php5ts.dll".
Original comment by czarek.t...@gmail.com
on 15 Jan 2013 at 6:17
I've tested test1.php and test2.php with Mongoose and it works great.
Original comment by czarek.t...@gmail.com
on 15 Jan 2013 at 6:19
The question is whether we should embed Mongoose directly in our application,
or distribute "Mongoose.exe" along with "mongoose.conf" & "php-cgi.exe". When
running Mongoose.exe I don't see php-cgi.exe in the processes, maybe if we
embed through the C API we won't have any additional processes except the
"phpdesktop-msie.exe", that would be great, if anything hangs up there won't
be any gargage still running in the background.
Original comment by czarek.t...@gmail.com
on 15 Jan 2013 at 6:25
"php-cgi.exe" appears in processes only while php script is running.
Original comment by czarek.t...@gmail.com
on 15 Jan 2013 at 7:11
Original comment by czarek.t...@gmail.com
on 16 Jan 2013 at 5:54
PHP web-server is not reliable, it sometimes doesn't start for
unknown reason.
Original comment by czarek.t...@gmail.com
on 19 Jan 2013 at 4:35
Mongoose allows us to log the coming http requests directly to application's
debugging console.
Original comment by czarek.t...@gmail.com
on 19 Jan 2013 at 2:58
Mongoose options:
https://github.com/valenok/mongoose/wiki/Manual
We might consider adding these to settings.json:
access_log_file
enable_directory_listing
error_log_file
extra_mime_types
num_threads
url_rewrite_patterns
Create a separate issue for adding this options.
Original comment by czarek.t...@gmail.com
on 19 Jan 2013 at 4:02
This feature was added in revision 302ce0d6e6e3.
Original comment by czarek.t...@gmail.com
on 19 Jan 2013 at 5:58
Original issue reported on code.google.com by
czarek.t...@gmail.com
on 15 Jan 2013 at 5:26