MyBB Community Forums

Full Version: MyBB 1.1 Released
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Today, we're announcing the release of MyBB 1.1.

Initially, we didn't plan to release a bug fix related update until the MyBB 1.2 feature release. Thanks to the efforts of one of our new team members, Michael83, who went through the trouble of patching a few of the more common and annoying problems with 1.0x, we are releasing this update.

This update is also the next newest update in our "security blitz" with MyBB and fixes several known and potential security issues. We're hoping this will be the last in our recent wave of security updates. imei Security Research is credited for the discovery of a few of these security related issues.

This release also includes some small changes to the search functionality of MyBB, ensuring that it should run on larger sites without too many issues. Functionality remains the same, but these changes are temporary until the release of 1.2, which contains updated searching capabilities (including a huge boost in performance over this version)

As this release is essentially a security based release, we recommend everyone update their boards as soon as possible.

We won't be providing manual code changes for this release (sorry), because of the number of code changes. For anyone who runs a customized board (code modifications), I'll be writing a small article on my advice for updating.

Update instructions are in the next post, including a list of changed files (and a ZIP archive of them). The MyBB website has also been updated.

The discussion thread for this release can be found here: http://community.mybboard.net/showthread.php?tid=7369

Regards,

MyBB Group
Updating from 1.04
  • Download the attached "changed_files_110.zip" from this post.
  • Upload it to your forums in the corresponding folders.
  • Check your Admin CP to confirm you are running 1.10
Updating from 1.03 / 1.02 / 1.01 / 1.00
  • Download the MyBB 1.10 release from the MyBB site.
  • Upload all files with the exception of inc/config.php and inc/settings.php and the install folder
  • Check your Admin CP to confirm you are running 1.10
Updating From Pre 1.0
  • Download the MyBB 1.10 release from the MyBB site.
  • Upload all files with the exception of inc/config.php and inc/settings.php
  • In your browser, visit your forums with /install/upgrade.php appended to the end of the URL.
  • From the upgrade wizard, select your previous version and follow the required steps until it is complete.
  • Check your Admin CP to confirm you are running 1.10
Changed Files
  • admin/adminfunctions.php
  • admin/forumpermisions.php
  • admin/helpdocs.php
  • inc/functions.php
  • inc/functions_post.php
  • forumdisplay.php
  • global.php
  • index.php
  • member.php
  • memberlist.php
  • misc.php
  • moderation.php
  • newreply.php
  • newthread.php
  • online.php
  • polls.php
  • printthread.php
  • search.php
  • showthread.php
  • usercp.php
  • usercp2.php
Changes and Fixed Bugs
  • #5089 Images in quotes
  • #5194 Bug Birthday - Day-1
  • #5224 Image resizing.
  • #5233 Email Options, Bug in the Memberlist
  • #5236 two bugs
  • #5257 Help Documents can't be added
  • #5572 Missing subject in post preview
  • #5619 Remember my login details for future visits
  • #5624 dophpcode()
  • #5675 Forum permissions
  • #5712 Guests and polls
  • #5736 Sort search results
  • #5797 Smilies don't line up with text
  • #5803 mySQL error: 1054
  • #6001 Printable version bug
  • #6006 subject in reply
  • #6116 Sort
  • #6226 change email without validation
  • #6315 Poll error
  • #6317 Last poster profile link incorrect.
  • #6347 No cache header
  • #6523 Notification about reported posts
  • #6537 Similar Threads problem
  • #6668 PHP tag bug
  • #6765 Linear/Threaded default mode
  • #6795 Marking reports as read
  • #7089 Who's online and thumbnails
  • Various outstanding security issues
  • Search engine optimisations.
Frequently Asked Questions

Do I need to run any upgrade scripts?
If you are running MyBB 1.0 Final or later, you do not need to run any upgrade scripts for this version.

If you are running an earlier version, you need to run the upgrade script making sure you select your previous version.

If you are unsure, access the upgrade script and see if your version is listed - if it is, run it.

Will I lose my themes/templates/plugins or custom languages?
No.

This release is strictly a code base update. It does not modify or alter the language files, database structure, themes, templates or plugins at all.

If you have any custom code modifications in place and you override the file, you will lose those changes.

I accidently overwrote inc/config.php
You can re-create it using the following template:

<?php
/* Database Configuration */
$config['dbtype'] = "mysql";
$config['hostname'] = "localhost"; // Change to your MySQL server name
$config['username'] = "username"; // Change to your MySQL username
$config['password'] = "password"; // Change to your MySQL password
$config['database'] = "database"; // Change to your MySQL database name
$config['table_prefix'] = "mybb_"; // Change to your table prefix, if not using the default

/* Admin CP URL */
$config['admindir'] = "admin";

/* Datacache Configuration */
/* files = Stores datacache in files inside /inc/cache/ (Must be writable)*/
/* db = Stores datacache in the database*/
$config['cachestore'] = "db";
?>
If you also overwrote your settings.php, then you can rebuild it when you login to the Admin CP.