Results 1 to 10 of 5054

Hybrid View

  1. #1
    Join Date
    Dec 2008
    Location
    Cleveland
    Posts
    17
    Plugin Contributions
    0

    Default Re: Simple SEO URL [support thread]

    Quote Originally Posted by aTecko View Post
    Wait until GoDaddy refreshes your htaccess ... tooks long time there
    Still nothing? Am I using this the right way?

    Anyone?

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

    Default Re: Simple SEO URL [support thread]

    Quote Originally Posted by mcintyremedia View Post
    Still nothing? Am I using this the right way?

    Anyone?
    Can you explain what's happening?
    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
    Dec 2008
    Location
    Cleveland
    Posts
    17
    Plugin Contributions
    0

    Default Re: Simple SEO URL [support thread]

    Quote Originally Posted by yellow1912 View Post
    Can you explain what's happening?
    Sure. There is more info at post #2511 up top.

    It looks like the install went ok, but when I go into Extras>SSU, and change the Alias Functions it does not change the crap URL to the new one?

    I put the whole URL in www.site.com/jlkasduf7adyp& and changed it to www.site.com/brochures/ and it does nothing. I only have one category and product set up right now for testing. Maybe it has something to do with that? http://cleveland-print.com/

    Thanks

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

    Default Re: Simple SEO URL [support thread]

    Quote Originally Posted by mcintyremedia View Post
    Sure. There is more info at post #2511 up top.

    It looks like the install went ok, but when I go into Extras>SSU, and change the Alias Functions it does not change the crap URL to the new one?

    I put the whole URL in www.site.com/jlkasduf7adyp& and changed it to www.site.com/brochures/ and it does nothing. I only have one category and product set up right now for testing. Maybe it has something to do with that? http://cleveland-print.com/

    Thanks
    You can not put the whole url in, it just doesnt work like that. Did you check this:
    http://public.rubikintegration.com/t.../ssu_alias.htm

    The manager has been changed, but the whole process remains 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

  5. #5

    Default Re: Simple SEO URL [support thread]

    Hi there Yellow1912 and others.

    First off, cheers for this mod, I've been using a version of it on my live shop for a few months now and it's been working great.

    However, I'm now trying to set up a new shop on my local machine and I've been having a few issues. First off I followed the instructions and transferred the files to my zencart - using the htaccess file and remembering to change the RewriteBase to /babyclothes/ (where my store is obviously). That resulted in a 500 error which, after hoking through this thread I found was because my xampplite doesn't have mod_rewrite turned on by default, so I followed http://rudyegenias.wordpress.com/200...rite-in-xampp/ to turn it on.

    Now the problem when I try to access my admin I get:

    0 DB_ERROR_NOT_CONNECTED
    in:
    [select * from project_version WHERE project_version_key = 'Zen-Cart Database' ]
    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.

    I've searched but can't find out what I'm doing wrong. I don't remember having any problems at all the last time I installed on a live site and I'm sure it's something stupid (I am indeed stupid) but any help would be greatly appreciated. I've been messing around with this for hours.


    heres my htaccess
    #### BOF SSU
    Options +FollowSymLinks -MultiViews
    RewriteEngine On
    # Make sure to change "test_site" to the subfolder you install ZC. If you use root folder, change to: RewriteBase /
    RewriteBase /babyclothes/

    # Deny access from .htaccess
    RewriteRule ^\.htaccess$ - [F]

    RewriteCond %{SCRIPT_FILENAME} !-f
    RewriteCond %{SCRIPT_FILENAME} !-d
    RewriteRule ^(.*) index.php?/$1 [E=VAR1:$1,QSA,L]
    #### EOF SSU
    And my configure.php
    <?php
    /**
    * @package Configuration Settings circa 1.3.8
    * @copyright Copyright 2003-2007 Zen Cart Development Team
    * @copyright Portions Copyright 2003 osCommerce
    * @license http://www.zen-cart.com/license/2_0.txt GNU Public License V2.0
    */


    /*************** NOTE: This file is similar, but DIFFERENT from the "admin" version of configure.php. ***********/
    /*************** The 2 files should be kept separate and not used to overwrite each other. ***********/

    // Define the webserver and path parameters
    // HTTP_SERVER is your Main webserver: eg-http://www.your_domain.com
    // HTTPS_SERVER is your Secure webserver: eg-https://www.your_domain.com
    define('HTTP_SERVER', 'http://localhost');
    define('HTTPS_SERVER', 'https://localhost');

    // Use secure webserver for checkout procedure?
    define('ENABLE_SSL', 'false');

    // NOTE: be sure to leave the trailing '/' at the end of these lines if you make changes!
    // * DIR_WS_* = Webserver directories (virtual/URL)
    // these paths are relative to top of your webspace ... (ie: under the public_html or httpdocs folder)
    define('DIR_WS_CATALOG', '/babyclothes/');
    define('DIR_WS_HTTPS_CATALOG', '/babyclothes/');

    define('DIR_WS_IMAGES', 'images/');
    define('DIR_WS_INCLUDES', 'includes/');
    define('DIR_WS_FUNCTIONS', DIR_WS_INCLUDES . 'functions/');
    define('DIR_WS_CLASSES', DIR_WS_INCLUDES . 'classes/');
    define('DIR_WS_MODULES', DIR_WS_INCLUDES . 'modules/');
    define('DIR_WS_LANGUAGES', DIR_WS_INCLUDES . 'languages/');
    define('DIR_WS_DOWNLOAD_PUBLIC', DIR_WS_CATALOG . 'pub/');
    define('DIR_WS_TEMPLATES', DIR_WS_INCLUDES . 'templates/');

    define('DIR_WS_PHPBB', '/');

    // * DIR_FS_* = Filesystem directories (local/physical)
    //the following path is a COMPLETE path to your Zen Cart files. eg: /var/www/vhost/accountname/public_html/store/
    define('DIR_FS_CATALOG', 'C:/xampplite/htdocs/babyclothes/');

    define('DIR_FS_DOWNLOAD', DIR_FS_CATALOG . 'download/');
    define('DIR_FS_DOWNLOAD_PUBLIC', DIR_FS_CATALOG . 'pub/');
    define('DIR_WS_UPLOADS', DIR_WS_IMAGES . 'uploads/');
    define('DIR_FS_UPLOADS', DIR_FS_CATALOG . DIR_WS_UPLOADS);
    define('DIR_FS_EMAIL_TEMPLATES', DIR_FS_CATALOG . 'email/');

    // define our database connection
    define('DB_TYPE', 'mysql');
    define('DB_PREFIX', '');
    define('DB_SERVER', 'localhost');
    define('DB_SERVER_USERNAME', 'root');
    define('DB_SERVER_PASSWORD', '********');
    define('DB_DATABASE', 'babyclothes');
    define('USE_PCONNECT', 'false');
    define('STORE_SESSIONS', 'db');
    // for STORE_SESSIONS, use 'db' for best support, or '' for file-based storage

    // The next 2 "defines" are for SQL cache support.
    // For SQL_CACHE_METHOD, you can select from: none, database, or file
    // If you choose "file", then you need to set the DIR_FS_SQL_CACHE to a directory where your apache
    // or webserver user has write privileges (chmod 666 or 777). We recommend using the "cache" folder inside the Zen Cart folder
    // ie: /path/to/your/webspace/public_html/zen/cache -- leave no trailing slash
    define('SQL_CACHE_METHOD', 'none');
    define('DIR_FS_SQL_CACHE', 'C:/xampplite/htdocs/babyclothes/cache');

    // EOF
    Thanks in advance :)

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

    Default Re: Simple SEO URL [support thread]

    0 DB_ERROR_NOT_CONNECTED
    in:
    [select * from project_version WHERE project_version_key = 'Zen-Cart Database' ]

    I can assure you this error has nothing to do with SSU. Perhaps during the process to turn on mod_rewrite you have somehow made mysql server unable to run.

    Try to restart it, can you access it normally via phpmyadmin? If yes, check and see if the db login info in includes/configure.php is correct.
    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
    Dec 2008
    Location
    Cleveland
    Posts
    17
    Plugin Contributions
    0

    Default Re: Simple SEO URL [support thread]

    Hey Yellow. Didn't know if my message was lost in the shuffle here. But I am using 3.6.1.

  8. #8

    Default Re: Simple SEO URL [support thread]

    Quote Originally Posted by yellow1912 View Post
    0 DB_ERROR_NOT_CONNECTED
    in:
    [select * from project_version WHERE project_version_key = 'Zen-Cart Database' ]

    I can assure you this error has nothing to do with SSU. Perhaps during the process to turn on mod_rewrite you have somehow made mysql server unable to run.

    Try to restart it, can you access it normally via phpmyadmin? If yes, check and see if the db login info in includes/configure.php is correct.

    Hi Yellow, thanks for the quick response

    I can't access phpMyAdmin now so it must be something to do with the mess I've made httpd.conf file. God! I wish I'd made a copy of it now.

    It's the only thing I made changes to and I've changed everything back but it still doesn't work. If I get a brand new one from somewhere is it likely to work or am I probably barking up the wrong tree?

    Really appreciate your time by the way. You're a saint!

  9. #9
    Join Date
    Feb 2009
    Posts
    30
    Plugin Contributions
    0

    Default Install error

    I had this excellent add on working perfectly and then we suffered some issues (completely unrelated to this) which were causing problems with 301 redirects (long story).
    Anyhow, to eliminate all possibilities I decided to uninstall Simple SEO urls following the instructions to the letter to go back to the base urls to help track the problem down.
    Having sorted that I tried to reinstall Simple SEO URLs and hit this problem when doing 2. Visit admin→extras→ssu manager (you should see notice saying that the database patches have been applied)
    ----------
    1048 Column 'configuration_group_id' cannot be null
    in:
    [INSERT INTO configuration (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, last_modified, date_added, use_function, set_function) VALUES ('Set default language identifier', 'SSU_MULTI_LANGUAGE_DEFAULT_IDENTIFIER', 'true', 'This option is useful for sites that use multi-languages. You can tell SSU to not add language identifier into the links for the default language.', @t4, 1, NOW(), NOW(), NULL, 'zen_cfg_select_option(array(\'true\', \'false\'),');]
    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.
    ----------
    Help is appreciated.

  10. #10
    Join Date
    Feb 2009
    Posts
    30
    Plugin Contributions
    0

    Default last post

    I forgot to add that I had 3.6.4 (i think) installed and reinstalled 3.6.6.

 

 

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