Page 262 of 506 FirstFirst ... 162212252260261262263264272312362 ... LastLast
Results 2,611 to 2,620 of 5054
  1. #2611
    Join Date
    Oct 2006
    Posts
    5,477
    Plugin Contributions
    11

    Default Re: Simple SEO URL [support thread]

    From the wiki:
    TROUBLESHOOTING: After installing itself, this module writes a file named ".keep" in admin\includes\module_installation, if your server doesnt allow it to do so, it may make the module attempting to install itself everytime. The fix is easy though, just manually create a .keep file there (after the module has already installed itself, of course)
    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

  2. #2612
    Join Date
    Feb 2008
    Posts
    1,336
    Plugin Contributions
    1

    Default Re: Simple SEO URL [support thread]

    Hello Yellow
    I am not sure why I always have problems when installing this mod.

    I am installing this mod on a customer site that I am developing. Zen cart is installed in a subfolder names /dev/. I am installing the latest version 3.6.6. I have installed the .htaccess in the subfolder root so the link to it is public_html/dev/.htaccess the content of the .htaccess folder is"
    Code:
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
    </head>
    <PRE>#### BOF SSU
    Options +FollowSymLinks
    RewriteEngine On
    # Change &quot;/zencart/ to the correct setting
    # if your site is located at root folder, then you should have RewriteBase /
    # Go to your include/configure.php, this value should be the same with the value of DIR_WS_CATALOG
    RewriteBase /dev/</PRE>
    <PRE># Deny access from .htaccess
    RewriteRule ^\.htaccess$ - [F]</PRE>
    <PRE>RewriteCond %{SCRIPT_FILENAME} -f [OR]
    RewriteCond %{SCRIPT_FILENAME} -d
    RewriteRule .* - [L]</PRE>
    <PRE>RewriteRule ^(.+) index.php/$1 [E=VAR1:$1,QSA,L]
    #### EOF SSU</PRE>
    Here is the issue.
    • The ssu_check.php doesn't load either.

    • If I go to admin>extras>SSU Manager I get the following error:
      Code:
      Parse error: syntax error, unexpected T_STATIC, expecting T_OLD_FUNCTION or T_FUNCTION or T_VAR or '}' in /home6/eliteca1/public_html/dev/admin/includes/classes/ssu.php on line 12

    Everything else in the admin works even the SSU configuration works. Now the site doesn't load even if the SSU was disabled.

    Matter of fact just after I uploaded the files to the server the site will now load even if I remove the .htaccess.

    The configure file is set as follow:
    Code:
    // 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://www.elitecarcovers.com');
      define('HTTPS_SERVER', 'https://www.elitecarcovers.com');
    
      // 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', '/dev/');
      define('DIR_WS_HTTPS_CATALOG', '/dev/');

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

    Default Re: Simple SEO URL [support thread]

    Parse error: syntax error, unexpected T_STATIC, expecting T_OLD_FUNCTION or T_FUNCTION or T_VAR or '}' in /home6/eliteca1/public_html/dev/admin/includes/classes/ssu.php on line 12

    Server is running on PHP4, SSU 3+ requires php5

    BTW, your htaccess looks weird, why do you have html inside?
    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

  4. #2614
    Join Date
    Jul 2007
    Location
    Bristol, UK
    Posts
    5
    Plugin Contributions
    0

    Default Re: Simple SEO URL [support thread]

    Hello.

    Thanks for this module. I am having trouble configuring the manual alias section.

    For instance, if I set Links to
    http://localhost/iqglass/catalogue/i...=index&cPath=2

    and Aliases to

    http://localhost/iqglass/catalogue/radiators

    I still get a URL of

    http://localhost/iqglass/catalogue/iqg-radiators-c-2

    Zen Cart 1.3.8a, SSU (simple_seo_url_3-5-8.zip).

    Can you point me in the right direction please?

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

    Default Re: Simple SEO URL [support thread]

    Quote Originally Posted by thermal View Post
    Hello.

    Thanks for this module. I am having trouble configuring the manual alias section.

    For instance, if I set Links to
    http://localhost/iqglass/catalogue/i...=index&cPath=2

    and Aliases to

    http://localhost/iqglass/catalogue/radiators

    I still get a URL of

    http://localhost/iqglass/catalogue/iqg-radiators-c-2

    Zen Cart 1.3.8a, SSU (simple_seo_url_3-5-8.zip).

    Can you point me in the right direction please?
    That is not the correct way of setting alias, here is the tutorial:
    http://wiki.rubikintegration.com/zen...ers/link_alias
    video:
    http://public.rubikintegration.com/t.../ssu_alias.htm

    BTW, recommend to upgrade to 3.6.6
    http://public.rubikintegration.com/
    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

  6. #2616
    Join Date
    Feb 2008
    Posts
    1,336
    Plugin Contributions
    1

    Default Re: Simple SEO URL [support thread]

    Quote Originally Posted by yellow1912 View Post
    Parse error: syntax error, unexpected T_STATIC, expecting T_OLD_FUNCTION or T_FUNCTION or T_VAR or '}' in /home6/eliteca1/public_html/dev/admin/includes/classes/ssu.php on line 12

    Server is running on PHP4, SSU 3+ requires php5

    BTW, your htaccess looks weird, why do you have html inside?
    That is weird the server have only php 5 and higher installed on it but that site is running on php 4.4.9 After reinstalling the php 5 in the cpanel it seems to work now but the cpanel still says that its running on 4.4.9 Zen cart server says 5.2

    Thanks for your help

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

    Default Re: Simple SEO URL [support thread]

    Most web servers support both php4 and php5 at the same time, you just have to tell it which version to use :)
    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

  8. #2618
    Join Date
    Sep 2008
    Location
    Tel-Aviv-New York
    Posts
    143
    Plugin Contributions
    0

    Default Re: Simple SEO URL [support thread]

    Hi Yellow!!!
    Really thank you for this update 3.6.6
    very cool!
    I noticed that now the 301 redirect with multilanguage support are disappear!
    BEST!

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

    Default Re: Simple SEO URL [support thread]

    Glad you like it.

    What do you mean by " I noticed that now the 301 redirect with multilanguage support are disappear!" BTW?
    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

  10. #2620
    Join Date
    Sep 2008
    Location
    Tel-Aviv-New York
    Posts
    143
    Plugin Contributions
    0

    Default Re: Simple SEO URL [support thread]

    in firebug, with old ssu when you change the language was 301 permanent redirection(not good for google) , now is ok : 200 ok

 

 

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