Please upgrade here. These earlier versions are no longer being updated and have security issues.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
Vanilla ProxyConnect - how to correctly set up response format
Hi, i've installed Vanilla ProxyConnect plugin (no Wordpress). I think he works fine and it is very useful.
My response text is:
echo '
UniqueID=1290\n
Name=Test\n
Email=test@test.it\n
TransientKey=027test\n
DateOfBirth=1970-01-01\n
Gender=Male';
So, at the Forum frontend , the name displayed is not 'Test' but 'Testn' . It seems that Vanilla doesn't match correctly the record separator, is it possible ? Any solution ?
My response text is:
echo '
UniqueID=1290\n
Name=Test\n
Email=test@test.it\n
TransientKey=027test\n
DateOfBirth=1970-01-01\n
Gender=Male';
So, at the Forum frontend , the name displayed is not 'Test' but 'Testn' . It seems that Vanilla doesn't match correctly the record separator, is it possible ? Any solution ?
Tagged:
0
Best Answer
-
Linc AdminUse double quotes to echo, not single quotes. PHP won't evaluate \n as a new line unless you use double quotes.0
Answers