[solved] Upgrading simple module from 5.x to 6.x - taxonomy_autocomplete not working

Upgrading a very simple node-type module from Drupal 5.x to 6.x
Having an issue with the taxonomy_autocomplete not working for the title of the node.
The "logo" node-type title = any website url, and has a related taxonomy vocab, titled "Site".
This module makes the node title field autocomplete with terms from this "Site" vocabulary.
http://i.imgur.com/NWkOr6u.jpg
Currently getting the following error:

An error occurred.
http://*sitename*/logo/autocomplete/3

Fatal error: Call to undefined function taxonomy_autocomplete() in /sites/all/modules/logos/logo.module on line 194

Line 194:
return taxonomy_autocomplete($vid, $text);
Complete function:

function _logo_filter_site_list($text) {
  return strtolower(str_replace(array('http://', 'www.'), '', $text));
}
function logo_autocomplete($vid, $text) {
  $text = _logo_filter_site_list($text);
  return taxonomy_autocomplete($vid, $text);
}

Relevant parts of the module code:

function logo_node_info() {
return array(
'logo' => array(
'name' => t('Logo'),
'module' => 'logo',
'description' => t('Logo for a site.'),
'has_title' => TRUE,
'title_label' => t('Site'),
'body_label' => t('Description')
)
);
}

/**
* Implementation of hook_menu().

Rackspace Unable to Replicate Database?

I've got the following message for a Cloud Site that I have on Rackspace. I'm not sure how to handle what they are requesting. It seems like a bad idea to change the structure of a database table. This is a D6 site, by the way. Can anyone give me any recommendations or at least affirm that I should do what they are suggesting? I've made plenty of Drupal sites. This is the first time I've encountered this.

Moving site to a test domain - getting major error

I've moved a Drupal 6 instance over to a development server so that I can test upgrade to Drupal 7.

After transfer, I am receiving this error:

Fatal error: Call to a member function init_display() on a non-object in /var/www/acromagupgrade/themes/acromag/library/ViewHelper.php on line 29

What might cause that? I'm thinking maybe all of the files didn't transfer over. What else might make Drupal report this error?

Taxonomy and Ecommerce products duplicates seen on different pages, bad? These taxonomy words should not be clickable?

Taxonomy and Ecommerce products duplicates seen on different pages, bad? These taxonomy words should not be clickable?

Hello,

Do you add taxonomy keywords to your websites or shops ?

Imagine that you sell Tshirts.

A Black Nike Tshirt can be seen on taxonomy words BLACK TSHIRT and NIKE TSHIRTS, but is it bad for SEO ?

Should we just avoid to type any taxonomy keywords or is there a way not to make them clickable ?

Thank you for your help.

How can I do a personal itinerary?

Hello,

I need to create a personal itinerary. It has to be valid for anonymous users. I have a list of sesions with authors in differents days. I can search by days, authors, title. When the application finds the results, users can add in their own schedule. And then they can print it. It's like a tv guide where you select the program you want.

Is there any module similar?
How can i do this?

Thanks in advance

Email confirmation for anonymous

Hi,
we have created a Content Type for anonymous users to submit content but we want them to confirm their email as well afterwards. Much like SimpleNews module. I googled around and found this http://www.druplicity.com/content/email-confirmation-anonymous-content-t... which doesn't work.

If you know how I can achieve this please let me know.

Thank you.

Pages

Subscribe with RSS Subscribe to RSS - Drupal 6.x