• Resolved G470

    (@g470)


    I get the following error messages after setup and saving settings:

    Warning: trim() expects parameter 1 to be string, array given in /htdocs/wordpress/wp-admin/options.php on line 147

    Warning: trim() expects parameter 1 to be string, array given in /htdocs/wordpress/wp-admin/options.php on line 147

    Warning: Cannot modify header information – headers already sent by (output started at /htdocs/wordpress/wp-admin/options.php:147) in /htdocs/wordpress/wp-includes/pluggable.php on line 876

    http://wordpress.org/extend/plugins/wp-smushit/

Viewing 1 replies (of 1 total)
  • The Warning: Cannot modify header information – headers already sent message is not related to the smush.it plugin. You might have encountered this when saving the options, there, but it could be anything! It is a general PHP error, indicating that there’s probably something wrong in a PHP file in your istallation.

    More info about this can be found here: http://stackoverflow.com/questions/8028957/headers-already-sent-by-php/8028987#8028987

    From personal experience, this usually means that the wp-config.php file has one of the following:
    1. A space or something else before the opening <?php tag of the file.
    2. a php closing tag ?> at the end of the file, followed by other characters, a blank line or a space

    If it’s not in your wp-config.php file check your theme’s functions.php for the same things.
    If that doesn’t solve the issue, start deactivating your plugins until you figure out which one is causing this error.
    Once you figure this out, you’ll have to open up its files and check the beginning and the end of each file to make sure that there’s nothing before the <?php and that the files don’t have any characters after the closing ?> tag. Preferably, the closing ?> tag should be omitted altogether.

    I hope that helps!

    Cheers,
    Ari.

Viewing 1 replies (of 1 total)
  • The topic ‘Smush causes error on save settings’ is closed to new replies.