> *Strict Standards*: Assigning the return value of new by reference is > deprecated in *C:\www\blog\wp-settings.php* on line *267*
You are getting the error because PHP 5 has it set by default to automatically show all errors including strict notices, and WP is still developed for PHP4. You can disable this by updating your php.ini and setting "error_reporting" to error_reporting = E_ALL & ~E_STRICT If you don't have access to your php.ini you should also be able to add something similiar to your .htaccess file. Aaron On 2/24/08, Amrit Panesar <[EMAIL PROTECTED]> wrote: > Hi all... > I need a tad bit of help... > Just installed the latest dev of wordpress and i'm getting: > > *Strict Standards*: Assigning the return value of new by reference is > deprecated in *C:\www\blog\wp-settings.php* on line *267* > > *Strict Standards*: Assigning the return value of new by reference is > deprecated in *C:\www\blog\wp-settings.php* on line *269* > > *Strict Standards*: Assigning the return value of new by reference is > deprecated in *C:\www\blog\wp-settings.php* on line *270* > > *Strict Standards*: Assigning the return value of new by reference is > deprecated in *C:\www\blog\wp-settings.php* on line *287 > > *It's like spammed everywhere... Could someone point me in the right > direction? > > thanks > > --Amrit > > > -- > Amrit Panesar > President / Founder > ALPS Technologies INC. > _______________________________________________ > wp-testers mailing list > [email protected] > http://lists.automattic.com/mailman/listinfo/wp-testers > _______________________________________________ wp-testers mailing list [email protected] http://lists.automattic.com/mailman/listinfo/wp-testers
