Vanilla 1 is no longer supported or maintained. If you need a copy, you can get it here.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
XML stops page render? (huh?)
First off, I'm really looking forward to using Vanilla on my site.
Second, I've got an issue which I'm 99% sure is related to my server. Right now, once I copy all files to the server I'm unable to view the README.HTML file until I remove the following line:
<?xml version="1.0" encoding="utf-8"?>
Once that line is removed, everything renders just fine in readme.
Problem is, this line is all over the app, as well. I did a manual install, removed that XML line from various places in the PHP, but had no luck.
Since Vanilla works for everyone else, I'm assuming my server (which I don't control) is doing something odd because of the XML line? But I've no idea what...
Any suggestions would be appreciated.
0
This discussion has been closed.
Comments
print '<'; print '?xml version="1.0" encoding="utf-8"'; print '?'; print '>';
it's not pretty, but it should work if it's within the php.
echo('<'.'?blablabla?'.'>');
EDIT: Nevermind, didn't see the other replies.