Drupal 5.1 version of the .install does not create the taxonomy

This is a known issue in the current Drupal 5 version.

If you visit the admin settings page after installing, the module should create the taxonomy and related configuration, if it's not been created already.

What is the value of the ed_classified_vocabulary variable in the variable table?

As an alternative, you can create your own taxonomy and assign the taxonomy id number to a variable named ed_classified_vocabulary - this will force the classified ads module to use the selected taxonomy.

So, if the taxonomy (vocabulary) has an id of 3, execute this SQL statement:

INSERT INTO variable set name='ed_classified_vocabulary', value='i:3;';

or, if the variable exists use this:

UPDATE variable set value='i:3;' where name='ed_classified_vocabulary';

Mike – Mon, 04/09/2007 – 8:55pm

Reply

This helps us decide if you are a human, and not just some visiting bot.
The content of this field is kept private and will not be shown publicly.
  • Allowed HTML tags: <h3> <h4> <br> <a> <em> <strong> <cite> <code> <ul> <ol> <li> <dl> <dt> <dd>
  • You may post code using <code>...</code> (generic) or <?php ... ?> (highlighted PHP) tags.
  • Lines and paragraphs break automatically.
More information about formatting options