Cause of Error:
This is due to PHP 5.3 after the release. Requires that the inheriting class be defined after the parent class. Otherwise there will be Strict standards:php Strict standards:declaration of .... Should is compatible with that of .... The error prompt. That is, the parent class must be in front, inheriting the class after.
Error Reference page. Bugs Point PHP Point net/bug.php?id=46851 (unable to post URLs with links) above clearly explains the specific reasons for such errors.
Workaround: In the wordpress3.0.1 file, locate the wp-admin\setup-config.php file. In require_once (& #39;.. /wp-includes/compat.php& #39;); Add a sentence above:
Error_reporting (E_all & ~ (e_strict | E_notice));
Problem solving.
Error Report settings: All errors are displayed, but except for strict error checking or bug reporting. This means that PHP5.3.3 does not perform strict error checking. Also does not display an error prompt. Skip strict error checking.
PHP error Strict standards:php Strict standards:declaration of .... Should is compatible with that solution