By aboonavas on
Hi,
I am running WAMP2 in my Win & PC.
PHP version 5.4.3
Apache 2.2.22
MySQL 5.5.24
WAMPSERVER 2.2
Views version 6.x-2.16
But below warning message showing:
warning: Creating default object from empty value in C:\wamp\www\drupal-6.26\modules\taxonomy\taxonomy.pages.inc on line 33.
Comments
I had the same problem when I
I had the same problem when I upgraded to php 5.4
It is a bug in the taxonomy module and can be corrected by adding
$current = new stdClass();
in the line before the one causing the problem.
great! fixed the error in drupal 6.33
thank you so much!
my system
it may help for others:
Drupal 6.33
MySQL database 5.5.38
PHP 5.4.4-14+deb7u12
Apache/2.2.22 (Debian)
had the same problem, and has
had the same problem, and has been fixed by adding that line, needs to be reported to the dev-guys
I had the same problem when I upgraded to php 5.4
I had the same problem when I upgraded to php 5.4
The Fix worked for me.
I have rolled it into a patch on #996124-3: taxonomy_term_page() - Error: Creating default object from empty value taxonomy.pages.inc
Same Issue
Same issue here, fixed with the suggestion above.
Drupal 6.32 on PHP 5.2.17.
$current = new stdClass();
GOOD!
It worked for me.
Drupal 6.38 / PHP: 5.6.40 / MySQL 5.5.5
Thank you!