Forum Replies Created

Viewing 1 replies (of 1 total)
  • I ran into this problem also.

    After digging a bit, I discovered that the database table creation goodies are in

    plugins/UltimateTagWarrior/ultimate-tag-warrior-core.php

    I chmod 777’d the entire folder (including the above file) — no dice.

    I then double checked my wordpress database authentication credentials, ensuring that “create” was allowed. It was.

    I didn’t have to much success with the error reporting, either, so in the end I just went into the database directly and created the tables manually.

    Go into mysql and run the following:

    
    			CREATE TABLE IF NOT EXISTS wp_tags (
    			  tag_ID int(11) NOT NULL auto_increment,
    			  tag varchar(255) NOT NULL default '',
    			  PRIMARY KEY  (tag_ID)
    			) TYPE=MyISAM;
    
    			CREATE TABLE IF NOT EXISTS wp_post2tag (
    			  rel_id int(11) NOT NULL auto_increment,
    			  tag_id int(11) NOT NULL default '0',
    			  post_id int(11) NOT NULL default '0',
    			  ip_address varchar(15),
    			  PRIMARY KEY  (rel_id)
    			) TYPE=MyISAM;
    
    		CREATE TABLE IF NOT EXISTS wp_tag_synonyms (
    		  tagsynonymid int(11) NOT NULL auto_increment,
    		  tag_id int(11) NOT NULL default '0',
    		  synonym varchar(150) NOT NULL default '',
    		  PRIMARY KEY  (tagsynonymid
    )
    ) TYPE=MyISAM;
    

    You may need to adjust the “wp_” prefix in the table names, but I’m pretty sure my naming convention is the wordpress default.

    Hope this is helpful. If it works for you, thank me by throwing me some blogosphere love and linking to me. ??

Viewing 1 replies (of 1 total)