The Special SiteSplat Membership has launched! Check our In Da Club Plan 👌
  • Current phpBB 3.2.2 known issues
  • News, Announcements, Feedback, Improvements, Changes and Policies.
News, Announcements, Feedback, Improvements, Changes and Policies.
 #25637  by ThemeSplat
 January 9th, 2018, 2:37 am
In the initial release phase we've noticed two issues that can prevent users from fully updating their boards:
PHP Fatal error: Uncaught Error: Call to a member function fetch_array() on resource in phpbb/db/migration/data/v32x/fix_user_styles.php:42

Fix: Open phpbb/db/migration/data/v32x/fix_user_styles.php & find:
Code: Select all
$enabled_styles = $result->fetch_array();
PHP Fatal error: Call to a member function get() on null in phpbb/db/migration/data/v32x/merge_duplicate_bbcodes.php on line 49

Fix: Open phpbb/db/migration/data/v32x/merge_duplicate_bbcodes.php & find:
Code: Select all
class merge_duplicate_bbcodes extends \phpbb\db\migration\migration
Replace with:
Code: Select all
class merge_duplicate_bbcodes extends \phpbb\db\migration\container_aware_migration
Issues involving attachments not showing, or not all showing, when posts with multiple attachments are posted or previewed, as discussed in this topic.

Fix: Open phpBB/includes/functions_posting.php & find:
Code: Select all
foreach ($attachment_data as $count => $attach_row)
On a separate line BEFORE, ADD:
Code: Select all
$attachrow_template_vars = [];
Find and DELETE:
Code: Select all
$attachrow_template_vars = array();

original topic: https://www.phpbb.com/community/viewtop ... &t=2453611
 #25678  by ThE KuKa
 January 11th, 2018, 10:27 pm
Issues involving attachments not showing, or not all showing, when posts with multiple attachments are posted or previewed, as discussed in this topic.

Fix: Open phpBB/includes/functions_posting.php & find:
Code: Select all
foreach ($attachment_data as $count => $attach_row)
On a separate line BEFORE, ADD:
Code: Select all
$attachrow_template_vars = [];
Find and DELETE:
Code: Select all
$attachrow_template_vars = array();
Source: See the first post...
 #25689  by Leinad4Mind
 January 13th, 2018, 12:26 am
Wait 1 more week at least. Maybe there is more problems.
 #25835  by ThemeSplat
 January 25th, 2018, 2:26 pm
naaahhh wait for 3.2.3... ;)

PRENEXT_POST_NAVIGATION