Download & Extend

Add a page to automatically set the meta tags associated to nodes

Project:Nodewords: D6 Meta Tags
Version:6.x-1.x-dev
Component:Code
Category:feature request
Priority:normal
Assigned:Unassigned
Status:closed (won't fix)

Issue Summary

I have more than 1K pages which require keywords.

Is there any automatic feature to insert different keywords on each page? Because I have no time to edit all the pages manually.
Thanks.

I use Meta Tags 5.x-1.8-rc1 on Drupal 5.7.

Comments

#1

You could do it directly in the database. To do so, execute something like:

INSERT INTO nodewords (type, id, name, content) VALUES ('node', nid, 'keywords', 'your keywords,or other stuff');

where nid is the node identifier. And nodewords is properly prefixed if you use dbtable prefixing.

#2

This module can add meta descriptions automatically by selecting of first 255 characters from nodes.

I need to add meta keywords automatically. As you know selected keywords must be most repetitive words/phrases in nodes.

I am not familiar with Mysql commands. So, I can't imagine what will happen if I execute the command given by you. Sometimes I am getting server gone away errors from mysql. Still I couldn't solve that problem. So I really afraid to execute any command without knowing what will happen exactly. Because I can't solve any problem with mysql if occurs.

This module must determine which keywords/phrases are used frequently in the node and then add them automatically into meta keywords with commas. This is what I need exactly. Is this possible if I execute your command above? Thanks.

#3

Title:About keywords» Add a page to automatically set the meta tags associated to nodes
Version:5.x-1.8-rc1» 6.x-1.x-dev
Component:Miscellaneous» Code
Category:support request» feature request
Status:active» postponed

I think that to have a page to automatically set the node meta tags for nodes that don't have any meta tags can be interesting, especially if the module has support for tokens.

I will investigate on implementing it in the 6.x-1.x branch.

#4

What I am thinking of is a page similar to the page used by Drupal, which allows to execute some tasks on an arbitrary list of nodes.
It could be possible to make this page by adding support for Views Bulk Operations, but I am not sure that module allows to use tokens handled by token.module.

#5

Status:postponed» closed (won't fix)

The support for tokens should be enough.

nobody click here