This discussion is related to the
Vanilla addon.
Vanilla 2.0.13 has been released!This is a bugfix release for the SaveToConfig() issue in 2.0.12.
v2.0.13 Changes
- Fixed bug with SaveToConfig() where plugins could not be enabled through the interface.
Vanilla 2.0.12 has been released!This is primarily a feature release for Mobile, but also includes some minor bugfixes for issues in 2.0.11.
v2.0.12 Changes
- Added default automatic support for Mobile themes for clients visiting from portable devices
- Fixed bug in Authentication where known authenticators could not be made default
- Fixed bug with deleted discussions where the page would not redirect after deletion
- Fixed bugs with embed vanilla
- Cleaned up HTML and CSS
- Added hooks for user registrations
- Imported some community pull requests
Keeping track of new releases
You can follow our releases by pointing your favorite RSS reader at:
http://www.vanillaforums.org/addon/vanilla-core/follow.rssThis feed will automatically update whenever we release a new version of Vanilla Core.
Troubleshooting the Vanilla 2 Installation
If you run into any issues during the installation, you may see the "Bonk" error screen. In order to get past this screen, you can remove the following line from your conf/config.php file:
$Configuration['Garden']['Errors']['MasterView'] = 'error.master.php';This will show you a more detailed screen of information about the actual problem you've encountered. Please include this information when reporting issues (copy & paste exact errors, please).
Upgrading Vanilla 2.0 Forums
- Sign into your existing forum with the user that was created when you FIRST INSTALLED Vanilla (the root admin user)
- Back up your database.
- Back up all of your existing files.
- Unarchive the new files and copy them over your existing files. Make sure that your hidden files (ie .htaccess) are copied to your server.
- Make sure the conf/config.php from your old version has been copied over to the new version.
- Delete all *.ini files in your cache/ folder
- Navigate to the page in your forum that updates your database (this will not work if you did not sign in as UserID = 1): www.yourforum.com/utility/structure
- Scroll to the bottom of the page and click the button to run the update scripts.
- Navigate to your forum and test away!
For more help with upgrading, check out the
Upgrading Tips and Tricks thread.
Reporting Issues
DO NOT REPORT ISSUES ON THE COMMUNITY FORUMPlease report all issues on the
GitHub Issue Tracker. Remember to do a quick search through the issues to make sure your issue has not already been added or resolved.
See the add on page for additional instructions.
2 • •
Comments
- Spam
- Abuse
- Troll
1 • Off Topic Insightful Awesome LOL •- Spam
- Abuse
- Troll
0 • Off Topic Insightful Awesome LOL •- Spam
- Abuse
- Troll
0 • Off Topic Insightful Awesome LOL •hopefully 5. doesn't break any custom themes.
- Spam
- Abuse
- Troll
0 • Off Topic Insightful Awesome LOL •Simple solution is:
1. Let vanilla after successful installation put file conf/version.php, holding only version number.
2. Let bootsrtap check if version number from that file corresponds with version number from index.php.
3. If versions differ, go steps 6-8 and update conf/version.php.
4. Make users happy.
- Spam
- Abuse
- Troll
2 • Off Topic Insightful Awesome LOL •1. It has pretty weird feed title - "Vanilla 2.0.12 by Tim - Vanilla Forums", while it should read something like "Feed for Vanilla Forums updates" or similar.
2. Every post in it has dumb text, while users are expecting to see some release notes or at least changes (what's new).
- Spam
- Abuse
- Troll
0 • Off Topic Insightful Awesome LOL •<?phpif (!defined('APPLICATION')) exit();
$Access = ($this->Data('Slug') ? urlencode($this->Data('Slug')) : $AddonID);
?>
<description><?php echo Gdn_Format::Text($this->Head->Title()); ?></description>
<language><?php echo Gdn::Config('Garden.Locale', 'en-US'); ?></language>
<atom:link href="<?php echo Url('/addon/'.$Access.'/follow.rss'); ?>" rel="self" type="application/rss+xml" />
<?php
$SlugBase = AddonModel::Slug($this->Data, FALSE);
foreach ($this->Data('Versions') as $Version) {
$VersionSlug = urlencode($SlugBase.'-'.$Version['Version']);
?>
<item>
<title><?php echo Gdn_Format::Text($this->Data('Name').' '.$Version['Version']); ?></title>
<link><?php echo Url('/addon/'.$VersionSlug, TRUE); ?></link>
<pubDate><?php echo date(DATE_RSS, Gdn_Format::ToTimeStamp($Version['DateInserted'])); ?></pubDate>
<dc:creator><?php echo Gdn_Format::Text($this->Data('InsertName')); ?></dc:creator>
<guid isPermaLink="true"><?php echo Url('/addons/addon/'.$VersionSlug, TRUE); ?></guid>
<description><![CDATA[<?php echo Gdn_Format::Html($this->Data('Description')); ?>]]></description>
</item>
<?php
}
Here's how I see it:
You guys ask for something. I see a quick and easy way that I can solve the spirit of the problem (notify you when an update has happened) without wasting tons of my time. I do it. You complain that it is "dumb" and isn't perfect.
This makes me not want to do anything for you anymore.
Vanilla Forums Senior Developer [GitHub, Twitter, About.me]
- Spam
- Abuse
- Troll
0 • Off Topic Insightful Awesome LOL •Awesome release! Thanks for everything you and the team does!
- Spam
- Abuse
- Troll
0 • Off Topic Insightful Awesome LOL •Side note: 2.0.12 lets you disable hashtag linking and YouTube/Vimeo embedding with config values (added to config-default.php).
Developer at Vanilla Forums, Inc. [GitHub, Twitter]
- Spam
- Abuse
- Troll
1 • Off Topic Insightful Awesome LOL •- Spam
- Abuse
- Troll
0 • Off Topic Insightful Awesome LOL •- Spam
- Abuse
- Troll
0 • Off Topic Insightful Awesome LOL •- Spam
- Abuse
- Troll
0 • Off Topic Insightful Awesome LOL •- Spam
- Abuse
- Troll
0 • Off Topic Insightful Awesome LOL •Did I mention that I love you guys? Did I just make it awkward in here?
- Spam
- Abuse
- Troll
0 • Off Topic Insightful Awesome LOL •- Spam
- Abuse
- Troll
0 • Off Topic Insightful Awesome LOL •- Spam
- Abuse
- Troll
0 • Off Topic Insightful Awesome LOL •my htaccess is
# Original
# If you modify this file then change the above line to: # Modified
<IfModule mod_rewrite.c>
RewriteEngine On
# Certain hosts may require the following line.
# If vanilla is in a subfolder then you need to specify it after the /.
# (ex. You put Vanilla in /forum so change the next line to: RewriteBase /forum)
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php\?p=$1 [QSA,L]
</IfModule>
but doesn't work
- Spam
- Abuse
- Troll
0 • Off Topic Insightful Awesome LOL •- Spam
- Abuse
- Troll
0 • Off Topic Insightful Awesome LOL •Vanilla Forums Senior Developer [GitHub, Twitter, About.me]
- Spam
- Abuse
- Troll
0 • Off Topic Insightful Awesome LOL •or as denzel washington said in American Gangster "the loudest one in the room is the weakest one in the room"
- Spam
- Abuse
- Troll
2 • Off Topic Insightful Awesome LOL •my custom theme is already mobile friendly (css solution), and i don't want to use the mobile theme, thanks
- Spam
- Abuse
- Troll
1 • Off Topic Insightful Awesome LOL •Add to conf/config.php
- Spam
- Abuse
- Troll
0 • Off Topic Insightful Awesome LOL •In the upgrade instructions it says to leave the "conf" folder intact, but the mobile theme will not work if you do that.
In order for the mobile theme to kick in on mobile phones, you have to over write the old "config-defaults.php" file with the new one in the 2.0.13 package.
It's awesome I'm loving it!
- Spam
- Abuse
- Troll
0 • Off Topic Insightful Awesome LOL •Vanilla Forums Senior Developer [GitHub, Twitter, About.me]
- Spam
- Abuse
- Troll
0 • Off Topic Insightful Awesome LOL •Developer at Vanilla Forums, Inc. [GitHub, Twitter]
- Spam
- Abuse
- Troll
0 • Off Topic Insightful Awesome LOL •I can log into the admin fine, the utility updates, but… the main page of the forum just says "Bonk!".
How can I figure out what's wrong?
- Spam
- Abuse
- Troll
1 • Off Topic Insightful Awesome LOL •Vanilla Forums Senior Developer [GitHub, Twitter, About.me]
- Spam
- Abuse
- Troll
0 • Off Topic Insightful Awesome LOL •- Spam
- Abuse
- Troll
0 • Off Topic Insightful Awesome LOL •- Spam
- Abuse
- Troll
0 • Off Topic Insightful Awesome LOL •Generally great for smartphones. Smooth and quick, nice layout. Feels as good as posting to the site on my desktop.
I'll do some more testing tonight, these are my thoughts for now:
1. Signing in and out. Was hoping that this would be fixed in the upgrade but it's not working, it's giving a 'Page not found' page for every sign-in and sign-out. A two-click workaround for this, just click back then refresh. Still, this will be people's first experience as a forum member and so it might be off-puttingly buggy. I'm wondering whether it's an issue with how we've installed the forum as I can't see that many other people here have had this problem. Thoughts?
2. I'm no programmer, but a friend drafted a workaround so that the main page just lists the categories. I've just restored that php file after the upgrade... It works fine on the desktop but not on the Blackberry, where the main page is now just blank. But I can click on 'Discussions' to see a list of topics in chronological order for when they were last posted, so it's a one-click workaround. Any ideas how to fix this for good?
3. Photos & embeds: these work fine on the desk top but are not automatically resized for Blackberry. They distort the shape of the forum on the smartphone browser. I don't like forums with lots of embedded and photographic content but realistically we'll be running a music forum, so people are going to do it. Any ideas?
4. On certain forums the forum name button has lost its right hand border when you go into an individual topic. A very minor aesthetic thing that I've found with both versions of the forum, both pre and post upgrade.
Thanks tons for this, though. Vanilla for smartphones was top of my wishlist and it's pretty great so far!
- Spam
- Abuse
- Troll
0 • Off Topic Insightful Awesome LOL •