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.
New installation woes
dave_stewart
New
I've got a few things which don't really appear to be working straight off the bat, so I'll just list them here, rather than clogging up the forum with posts for everything:
#1 - What is the config setting to tell Vanilla what the root folder is?
At the moment, if I delete a conversation, Vanilla redirects to vanilla/discussions.
Unfortunately, my Vanilla install is at forum/ so it breaks.
I looked at the docs, honest Guv, but the page was missing: http://vanillaforums.org/docs/configuration-initialconfiguration?Title=Initial+Configuration
#2 - My Category List is only displaying the total number of discussions, but is not displaying the number of discussions per Category, as I've seen on other Vanilla forums. Is something not working as it should?
Cheers,
Dave
#1 - What is the config setting to tell Vanilla what the root folder is?
At the moment, if I delete a conversation, Vanilla redirects to vanilla/discussions.
Unfortunately, my Vanilla install is at forum/ so it breaks.
I looked at the docs, honest Guv, but the page was missing: http://vanillaforums.org/docs/configuration-initialconfiguration?Title=Initial+Configuration
#2 - My Category List is only displaying the total number of discussions, but is not displaying the number of discussions per Category, as I've seen on other Vanilla forums. Is something not working as it should?
Cheers,
Dave
0
Comments
There was an error rendering this rich post.
https://github.com/vanillaforums/Garden/issues
Are issues 1 or 2 easy to solve in the meantime?
2. I think what you are asking about is a theme issue, but it may be an import issue. Are you saying it's only showing one count of discussions or what?
@Todd I know, but I don't know if it's a bug yet. As soon as bugs are definately bugs I'll be happy to report them in the proper place.
As long as we don't know whether it's a bug or not, what should we do then? (time for a split / discussion)
There was an error rendering this rich post.
This is how it looks now, but it still redirects to /vanilla
$Configuration['Garden']['RewriteUrls'] = TRUE;
Should already be in your config, but set to FALSE. Change it to TRUE.
Vanilla Forums COO [GitHub, Twitter, About.me]
I find that new installations, and new users especially, are great for finding cases when things don't work as expected.
A few other things I've found during getting my own forum up and running have been:
1 - Bonk page, due to wrong password configuration in config
2 - HeadModule not found error, due to local cache-files replacing server cache files
Might I suggest an improvement for Vanilla with regards to local and server differences?
1 - If the cache files were instead stored in a subfolder per server configuration, this would stop weird caching errors where for example local files overwrote server files.
2 - If a further set of (optional) config files were stored per server configuration, these could be edited, then loaded last (if found) to overwrite a few select config settings, such as database usernames and passwords, file locations, etc. Cheers,
Dave
So I wanted to load an additional config file per server, so I added a new folder in conf/ called server/ then two files named after the $_SERVER['hostname'] for my local and remote configurations: In each of the files I added the server-specific database login details.
Then, I added the file conf/bootstrap.after.php, and in it, the following code: For caching, I added a subfolders in cache/ for each of my server locations: Then, I added the file conf/bootstrap.before.php, and in it, the following code: It's all running pretty well now, and no issues with data being overwritten between locations.