Jump to content

EmXaN

Clients
  • Posts

    1
  • Joined

  • Last visited

 Content Type 

Downloads

Release Notes

IPS4 Guides

IPS4 Developer Documentation

Invision Community Blog

Development Blog

Deprecation Tracker

Providers Directory

Forums

Events

Store

Gallery

Posts posted by EmXaN

  1. While doing the upgrade on a client's forums from IPS 4.4 to 4.5, I encountered following MySQL error:

    Quote
    
    Row size too large. The maximum row size for the used table type, not counting BLOBs, is 8126. This includes storage overhead, check the manual. You have to change some columns to TEXT or BLOBs
    /home/***/public_html/community/system/Application/Application.php::1667
    

    For the benefit to all, here is an easy fix to alter the table row format:

    Quote

    1. Login to your MySQL/phpMyAdmin.
    2. Select your forums database.
    3. Open the SQL tab and execute the following query:

    
    ALTER TABLE core_groups ROW_FORMAT=DYNAMIC;

    Note: Edit/change the core_groups table to your desired table.

    Here is a quick video tutorial:

     

×
×
  • Create New...