• Resolved Rubberman

    (@suninjang)


    I just installed glotpress plugin.
    On myurl/glotpress/ page, I don’t see a link to create new project or any admin only menus.

    Menus I have is Glotpress, projects and Locales on the left top and Profile, Settings and logout on top right side. Other links I have is Projects by language in the content area and Proudly powered by GlotPress in the footer. Please help.

    https://www.ads-software.com/plugins/glotpress/

Viewing 10 replies - 16 through 25 (of 25 total)
  • Plugin Contributor Greg Ross

    (@gregross)

    Ok, you’ve changed your table prefix, so you need to rename the wp_gp_permissions table to gp_gp_permissions.

    You’re also missing the originals table so execute the following sql:

    CREATE TABLE gp_gp_originals (
    		id int(10) NOT NULL auto_increment,
    		project_id int(10) DEFAULT NULL,
    		context varchar(255) DEFAULT NULL,
    		singular text NOT NULL,
    		plural text DEFAULT NULL,
    		<code>references</code> text DEFAULT NULL,
    		comment text DEFAULT NULL,
    		status varchar(255) NOT NULL DEFAULT '+active',
    		priority tinyint(4) NOT NULL DEFAULT 0,
    		date_added datetime DEFAULT NULL,
    		PRIMARY KEY  (id),
    		KEY project_id_status (project_id,status),
    		KEY singular_plural_context (singular(63),plural(63),context(63)),
    		KEY project_id_status_priority_date_added (project_id,status(128),priority,date_added)
    	);
    Thread Starter Rubberman

    (@suninjang)

    I rename the wp_gp_permissions table to gp_gp_permissions.

    then ran the above sql query and got below error.

    #1064 – You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ‘references text DEFAULT NULL, comment text DEFAULT NULL, stat’ at line 7

    Plugin Contributor Greg Ross

    (@gregross)

    Sorry, the forum software replaced the backticks with the code tags.

    Thread Starter Rubberman

    (@suninjang)

    #1071 – Specified key was too long; max key length is 1000 bytes

    I replaced the code tag with backticks and got above error message.

    Plugin Contributor Greg Ross

    (@gregross)

    Change “KEY project_id_status (project_id,status),” to “KEY project_id_status (project_id,status(128)),” and see what happens.

    Thread Starter Rubberman

    (@suninjang)

    It worked.

    Thank you so much for your help!!!

    Plugin Contributor Greg Ross

    (@gregross)

    No problem.

    Thread Starter Rubberman

    (@suninjang)

    I just wonder why these tables were created at the plugin install.

    Plugin Contributor Greg Ross

    (@gregross)

    I’ll assume you mean *not* created at install… ??

    There is a problem with using MyISAM as the table provider with GlotPress which causes the tables to fail to be created during install.

    The next release will resolve this.

    Thread Starter Rubberman

    (@suninjang)

    Yes, That’s what I meant.

    Glad to hear that it will be fixed.

Viewing 10 replies - 16 through 25 (of 25 total)
  • The topic ‘No link to create new project’ is closed to new replies.