Druapl V51
Tax Default

I started to get a Page not Found error today.

this is the url, its trying to locate
http://www.mysite.com/admin/content/taxonomy/taxonomy_defaults

trying to backtrack and remember what I've done lasyt on this site.

've had it on hold for about a week - so not sure what or when this got messed up

Last big thing I've I've done on this is site, is create about 50 different types of CCK nodes

page to long now? trying to fetch to much data?

thanks

Comments

green monkey’s picture

Heine,

I reverted to a BU copy and everything appears to be ok now. As I bring this forward again, I will try to see if I can catch where it went astray.

I have noticed, that twice the checkbxoes for non-active select have become unchecked - which is odd because generally this module is rock solid.

heine’s picture

What was the difference between the backup and the module that gave the error?

The other issue may be caused by the length of content types. Any type longer than 33 characters will create a variable with a name longer than the variable table can hold. To remedy, execute the query:

ALTER TABLE `variable` CHANGE `name` `name` VARCHAR(80);
heine’s picture

Actually, even shorter content type names can cause this depending on the vocabulary id. Assume ~28-33 as the upper limit.

green monkey’s picture

re # 2 - not sure - to many changes and too much time lasped between them, I'm keeping an eye on it - there is one node I tried to use that gave me problems with CCK - 'Node Clone' and there was one feature that gave me problems during that time - it was the Export/Import feature in CCK. I have yet to try these again.

re# 3 - Vocabs names are short - but my CCK Node names are long - could that be it?

heine’s picture

re# 3 - Vocabs names are short - but my CCK Node names are long - could that be it?

Yes, that is probably the reason. You can use the following query to support longer variable names: (80 can be even longer, but seems a reasonable upper limit).

ALTER TABLE `variable` CHANGE `name` `name` VARCHAR(80);
heine’s picture

Status: Active » Fixed

Please reopen if the issue is not solved.

Anonymous’s picture

Status: Fixed » Closed (fixed)
bartezz’s picture

Version: 5.x-1.x-dev » 6.x-2.1
Status: Closed (fixed) » Active

Using 6.x-2.1 am also getting page not found after a while. Module is enabled in modules list, also in system table status = 1. trying to find out what causes this.

bradweikel’s picture

Version: 6.x-2.1 » 5.x-1.x-dev
Status: Active » Closed (fixed)

Please create a new issue rather than re-opening one from 4 years ago. :)