Page 1 of 2 12 LastLast
Results 1 to 10 of 5054

Hybrid View

  1. #1
    Join Date
    Sep 2008
    Posts
    38
    Plugin Contributions
    0

    Default Re: Simple SEO URL [support thread]

    Hi ,
    now I get this error message
    1064 You have an error in your SQL syntax near 'ENGINE=MyISAM' at line 1
    in:
    [CREATE TABLE IF NOT EXISTS links_aliases ( id int(10) NOT NULL auto_increment, link_url varchar(255) NOT NULL, link_alias varchar(255) NOT NULL, PRIMARY KEY (ID), UNIQUE (link_url) ) ENGINE=MyISAM;]
    If you were entering information, press the BACK button in your browser and re-check the information you had entered to be sure you left no blank fields.

  2. #2
    Join Date
    Oct 2006
    Posts
    5,477
    Plugin Contributions
    11

    Default Re: Simple SEO URL [support thread]

    Quote Originally Posted by goldenhues View Post
    Hi ,
    now I get this error message
    1064 You have an error in your SQL syntax near 'ENGINE=MyISAM' at line 1
    in:
    [CREATE TABLE IF NOT EXISTS links_aliases ( id int(10) NOT NULL auto_increment, link_url varchar(255) NOT NULL, link_alias varchar(255) NOT NULL, PRIMARY KEY (ID), UNIQUE (link_url) ) ENGINE=MyISAM;]
    If you were entering information, press the BACK button in your browser and re-check the information you had entered to be sure you left no blank fields.
    A pretty annoying server configuration you have there :)

    Go to admin/includes/module_installation/yellow1912_ssu/db/6.sql

    Replace the whole content by:

    DROP TABLE IF EXISTS links_aliases;

    CREATE TABLE `links_aliases` (
    `id` int(10) NOT NULL auto_increment,
    `link_url` varchar(255) NOT NULL,
    `link_alias` varchar(255) NOT NULL,
    PRIMARY KEY (`id`),
    UNIQUE KEY `link_url` (`link_url`)
    ) TYPE=MyISAM;
    I no longer provide installation support on forum for all my modules. However, if there are real bugs with the modules please feel free to contact me

  3. #3
    Join Date
    Sep 2008
    Posts
    38
    Plugin Contributions
    0

    Default Re: Simple SEO URL [support thread]

    Hi
    done but nothing changed , to note , I didn't have 6.sql in the file but added it.

  4. #4
    Join Date
    Oct 2006
    Posts
    5,477
    Plugin Contributions
    11

    Default Re: Simple SEO URL [support thread]

    If so, I assume you are on 2.9.6?

    Overwrite 3.sql with this
    PHP Code:
    SET @t4=0;
    SELECT (@t4:=configuration_group_id) as t4 
    FROM configuration_group
    WHERE configuration_group_title
    'Simple SEO URL';

    INSERT INTO configuration (configuration_titleconfiguration_keyconfiguration_valueconfiguration_descriptionconfiguration_group_idsort_orderlast_modifieddate_addeduse_functionset_functionVALUES
    ('Set Link Alias Status''SSU_LINK_ALIAS''false''Link alias allows you to replace any specific link by another link. After setting this to true, you can go to Admin->Extras->Simple SEO URL Manager and set link aliases', @t41NOW(), NOW(), NULL'zen_cfg_select_option(array(\'true\', \'false\'),'); 
    I no longer provide installation support on forum for all my modules. However, if there are real bugs with the modules please feel free to contact me

  5. #5
    Join Date
    Sep 2008
    Posts
    38
    Plugin Contributions
    0

    Default Re: Simple SEO URL [support thread]

    I noticed 5.sql and 3.sql have the same language is this the duplicate and is the latest command another duplicate as in 3.sql

  6. #6
    Join Date
    Oct 2006
    Posts
    5,477
    Plugin Contributions
    11

    Default Re: Simple SEO URL [support thread]

    Quote Originally Posted by goldenhues View Post
    I noticed 5.sql and 3.sql have the same language is this the duplicate and is the latest command another duplicate as in 3.sql
    No they are not the same :)
    I no longer provide installation support on forum for all my modules. However, if there are real bugs with the modules please feel free to contact me

  7. #7
    Join Date
    Sep 2008
    Posts
    38
    Plugin Contributions
    0

    Default Re: Simple SEO URL [support thread]

    Hi
    done but no change

  8. #8
    Join Date
    Oct 2006
    Posts
    5,477
    Plugin Contributions
    11

    Default Re: Simple SEO URL [support thread]

    Quote Originally Posted by goldenhues View Post
    Hi
    done but no change
    Can you be more clear? What do you mean with no change?

    Go into module manager, list all the modules and see what patch level SSU is currently at.

    If you are using 2.9.6, then after that change you dont even have any sql query left that try to install the link_alias table, so you can not possibly have the same error unless:
    1. you are not using 2.9.6, you are using 3+
    2. your changes were not saved correctly.
    I no longer provide installation support on forum for all my modules. However, if there are real bugs with the modules please feel free to contact me

  9. #9
    Join Date
    Sep 2008
    Posts
    38
    Plugin Contributions
    0

    Default Re: Simple SEO URL [support thread]

    it's beta 2.9.6 and it's the only module

  10. #10
    Join Date
    Nov 2007
    Posts
    99
    Plugin Contributions
    0

    Default Re: Simple SEO URL [support thread]

    Hi yellow,
    Since I installed SSU, I am facing a problem. When on any product page, "Add to Cart" button is clicked, it takes me to the main page without adding the product to the cart and a message is shown saying "Your Shopping Cart is empty.". What is strange is that the shopping cart works perfectly sometimes but other times no products are added to the cart.

    Store url: www.gemsoul.com

    Any idea to the root of this problem?

    Thanks,
    Harshil

 

 
Page 1 of 2 12 LastLast

Similar Threads

  1. v151 Simple SEO URLs for ZC 1.5.x [Support Thread]
    By cvhainb in forum All Other Contributions/Addons
    Replies: 46
    Last Post: 8 Jun 2022, 09:42 AM
  2. Simple SEO URL, Ultimate SEO URLs, Ceon URI Mapping SEO
    By pizza392 in forum All Other Contributions/Addons
    Replies: 13
    Last Post: 21 Jan 2015, 10:49 AM
  3. How do I tell what version my Simple SEO URL addon mod, and others, are?
    By kevinmc3 in forum All Other Contributions/Addons
    Replies: 0
    Last Post: 6 May 2010, 01:32 AM
  4. Can't create new thread in Simple SEO URL forum
    By gseiber in forum General Questions
    Replies: 1
    Last Post: 3 Apr 2010, 01:56 PM
  5. Re: Simple SEO URL [support thread]
    By creamcrackers in forum General Questions
    Replies: 2
    Last Post: 16 Aug 2009, 03:02 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg