Page 1 of 3 123 LastLast
Results 1 to 10 of 5054

Hybrid View

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

    Default Re: Simple SEO URL [support thread]

    First thing you may need to check:

    Here is part of the popup js:
    images//large/attributes/R126H_LRG.jpg

    Notice how you have 2 // right there?
    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. #2
    Join Date
    Oct 2006
    Posts
    5,477
    Plugin Contributions
    11

    Default Re: Simple SEO URL [support thread]

    @ckosloff:

    Also, in includes\templates\template_default\jscript_dynamic_window_popup.js

    Find this line:
    writeln('<html><head><title>Loading...</title><style>body{margin-bottom:32px;margin-left:8px;margin-right:8px;margin-top:8px;font-family:tahoma, arial, helvetica, Geneva, sans-serif;}</style>');writeln('<sc'+'ript>');


    Replace by:
    writeln('<html><head><base href="<?php echo (($request_type == 'SSL') ? HTTPS_SERVER . DIR_WS_HTTPS_CATALOG : HTTP_SERVER . DIR_WS_CATALOG ); ?>" /><title>Loading...</title><style>body{margin-bottom:32px;margin-left:8px;margin-right:8px;margin-top:8px;font-family:tahoma, arial, helvetica, Geneva, sans-serif;}</style>');writeln('<sc'+'ript>');
    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
    Jul 2007
    Posts
    2,169
    Plugin Contributions
    16

    Default Re: Simple SEO URL [support thread]

    A testing version is now available for those who want to test on your local host, you can see the demo here:
    http://demo.rubikintegration.com/zencart/

    It addresses several issues:
    1. SSU may not work properly in some cases with extension set to something other than blank.
    2. SSU did not address linked products properly, for example you have 1 product belongs to 2 categories, then there should be 2 links depending on the cases.

    An example:
    Code:
    http://demo.rubikintegration.com/zen...cut-linked-p-5

    http://demo.rubikintegration.com/zen...cut-linked-p-5
    Both links above point to the same product. In the old version, SSU will redirect the first link to the 2nd one, this behavior is not desired. This new version addresses such issue.
    Attached Files
    Simple SEO URL.zip (43.9 KB, 18 views)
    Yellow should I do an update on this module now or wait. I notice you have updated it in the form.
    Is your site Upgraded to the current version 1.5.4 Yet?
    zencart-upgrades-website-installation

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

    Default Re: Simple SEO URL [support thread]

    If it is working for you with no problem at all, I suggest you wait till a stable version comes out, which will be some time in the next 1-2 weeks.
    For example, if you do not use extension and you currently do not have linked products, then the update wont do you any good.

    If you do encounter certain problems, you may want to list them here first and then I can tell you if upgrading will fix those problems

    Regards
    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
    Aug 2008
    Posts
    129
    Plugin Contributions
    0

    Default Re: Simple SEO URL [support thread]

    yellow1912: hey I'm impressed with this mod so far! You're the only developer using a sound methodology that can deliver any URL needed. I only had to look at your .HTACCESS to know this. I look forward to installing & using this mod.

  6. #6
    Join Date
    Feb 2007
    Location
    South Florida, USA
    Posts
    1,374
    Plugin Contributions
    4

    Default Re: Simple SEO URL [support thread]

    Quote Originally Posted by yellow1912 View Post
    @ckosloff:
    Also, in includes\templates\template_default\jscript_dynamic_window_popup.js

    Find this line:
    writeln('<html><head><title>Loading...</title><style>body{margin-bottom:32px;margin-left:8px;margin-right:8px;margin-top:8px;font-family:tahoma, arial, helvetica, Geneva, sans-serif;}</style>');writeln('<sc'+'ript>');

    Replace by:
    writeln('<html><head><base href="<?php echo (($request_type == 'SSL') ? HTTPS_SERVER . DIR_WS_HTTPS_CATALOG : HTTP_SERVER . DIR_WS_CATALOG ); ?>" /><title>Loading...</title><style>body{margin-bottom:32px;margin-left:8px;margin-right:8px;margin-top:8px;font-family:tahoma, arial, helvetica, Geneva, sans-serif;}</style>');writeln('<sc'+'ript>');
    Quote Originally Posted by yellow1912 View Post
    Sure,
    Also, you may want to just change the js file mentioned previously to .php file. If my memory still serves me right, it will fix the problem.
    Yellow,
    I need to know if these two modifications to the .js file are necessary to make SSU work with attributes popup.
    Also, why was the test site working in FF and completely off in IE?
    Please explain.
    Thanks.

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

    Default Re: Simple SEO URL [support thread]

    Quote Originally Posted by ckosloff View Post
    Yellow,
    I need to know if these two modifications to the .js file are necessary to make SSU work with attributes popup.
    Also, why was the test site working in FF and completely off in IE?
    Please explain.
    Thanks.
    If you download the latest version of this module 1-2 previous pages you will see that it fully explains the fix and also include a patch file that can be used.

    Anyway, short answer: that module creates a new page, and that page was missing a very important component that should always exist, the basehref
    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. #8
    Join Date
    Feb 2007
    Location
    South Florida, USA
    Posts
    1,374
    Plugin Contributions
    4

    Default Re: Simple SEO URL [support thread]

    Quote Originally Posted by yellow1912 View Post
    Anyway, short answer: that module creates a new page, and that page was missing a very important component that should always exist, the basehref
    yellow,
    Will download and study your fix before posting again, promised.
    Meanwhile, I did notice that you added the base tag to the .js file, I have encountered this base tag problem before, here:
    http://www.zen-cart.com/forum/showth...t=78184&page=6
    apparently IE6 doesn't like the base tag written with just the end slash (although it is written like so all through Zen Cart), but wants it written <base href="blah"></base>.
    Will test extensively and let you know my findings.

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

    Default Re: Simple SEO URL [support thread]

    I have done many many carts and test on many browsers including IE6, never had a problem with that SSL thing. But who knows ^_^
    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. #10
    Join Date
    Feb 2007
    Location
    South Florida, USA
    Posts
    1,374
    Plugin Contributions
    4

    Default Re: Simple SEO URL [support thread]

    Quote Originally Posted by yellow1912 View Post
    I have done many many carts and test on many browsers including IE6, never had a problem with that SSL thing. But who knows ^_^
    The hover problem in SSL exists with IE6, it is even acknowledged by Comodo, I will have to test if rewriting the base tag fixes the issue.
    I have to test on a live site, with an SSL installed in the sidebox, which is not so easy, but will get to it this year...

 

 
Page 1 of 3 123 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