PHP warning due to chunksize column not created in the database
-
A site I’m supporting has an
Undefined property: stdClass::$chunksize
warning every time the site is visited.In the code, a
{$prefix}_screenreader_config
table is used to retrieve the plugin’s configuration. It then checks this configuration for$chunksize
, which is not one of the columns created in the table by default.Adding a
chunksize
column to the table fixes this error.
- The topic ‘PHP warning due to chunksize column not created in the database’ is closed to new replies.