Christopher Faulet

Results 325 comments of Christopher Faulet

Hi, Could you share your arg_rewrite module ? Because I cannot reproduce the problem. Here is the naive arg_rewrite module I used to do my tests: ``` erlang -module(add_query_param). -export([arg_rewrite/1])....

Ok, I understand. I think you call `yaws_api:getvar/2` or `yaws_api:queryvar/2`. These functions depend on `yaws_api:parse_query/1`. Query parsing is designed to be done in yaws scripts or appmod. But this is...

Of course, I will work on it. It's just a matter of time now :) I'm pretty busy at the moment.

@benoitc, no, of course not. @etnt, You close all opened issues. Is there any reason for that ?

Hi, This means "/usr/bin/php-cgi7.0" is not a regular file :) It is probably a symlink. The "terminating" part does not come from Yaws. The workaround is to use the regular...

@kklepper, the errors you have are about "/usr/bin/php5-cgi" and "/usr/bin/php7-cgi". In your listing, these files do not exist.

You're right, the whole message is from Yaws. But Yaws will not silently change anything. Here, in the code, we call ```file:read_file_info/1``` and we check it is a regular file....

This is a timing issue. By restarting the builds that failed, and not all builds, it works. A solution would be to rewrite tests that depend on a timer but...

Hi @slobo, You're right, the parser should be more permissive for this specific case (trailing spaces). I pushed a fix for that. Thanks!