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.
Search doesn't work
I just downloaded the latest 2.0.3 and the search doesn't seem to be working. It returns 0 results when I search for the keyword in the title. Am I missing something?
0
Comments
Edit /vanilla/conf/config.php
to reflect
$Configuration['Garden']['RewriteUrls'] = TRUE;
the second part is to make sure that you have the htaccess file in the root of your directory. This does come with the download of vanilla but sometimes does not make it into the actual directory, if it is there great, if not create a new file called .htaccess it will make an invisible file put this content in it.
<IfModule mod_rewrite.c> RewriteEngine On # Certain hosts may require the following line. # If vanilla is going to be in a subfolder change this to /foldername # RewriteBase / RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME} !-f RewriteRule ^(.*)$ index.php\?p=$1 [QSA,L] </IfModule>
Once I did this, I was able to use the search functionality, worked for me let me know how it goes!
Vanilla Forums COO [GitHub, Twitter, About.me]
Look in the default.conf.php file, and copy settings over to your own config.php, and try adjusting them from there. The one line that immediately stuck out to me was:
$Configuration['Garden']['Cookie']['Path'] = '/';