Romain Weeger
Romain Weeger
Hi @sensorii Thanks for this solution but don't you have to synchronize your data folder again later if you want to have your data realy persistent ? What the usage...
Have the same issue, is it important to mount this folder as a volume ? What does it contains ?
Created a repository for the JS client : https://github.com/assemblee-virtuelle/semantic_forms_client_js
http://sf-client.wexample.com/
XMLHttpRequest cannot load http://163.172.179.125:9111/authenticate?userid=sf_client&password=sf_client&confirmPassword=sf_client. Redirect from 'http://163.172.179.125:9111/authenticate?userid=sf_client&password=sf_client&confirmPassword=sf_client' to 'http://163.172.179.125:9111/' has been blocked by CORS policy: No 'Access-Control-Allow-Origin' header is present on the requested resource. Origin 'http://127.0.0.1:8080' is therefore not allowed...
http://stackoverflow.com/questions/2870371/why-is-jquerys-ajax-method-not-sending-my-session-cookie
WTF? Seriously?
Same problem, just tested in Javascript : ``` // Import the diff-match-patch library const DiffMatchPatch = require('diff-match-patch'); const dmp = new DiffMatchPatch(); // Original JSON string const originalJson = `{...
This is the text color wrapper I use : ```php public static function asciiColorWrap( string $string, string $color ): string { return "\033[1;".$color.'m'.$string."\033[0m"; } }