Page 14 of 15 FirstFirst ... 412131415 LastLast
Results 131 to 140 of 143
  1. #131
    Join Date
    Jun 2007
    Posts
    70
    Plugin Contributions
    1

    Default Re: Magic SEO URL vs Ultimate SEO URL vs SEO_G

    Quote Originally Posted by capnhairdo View Post
    iRay will deny this, as he did when I first reported the issue, and I don't care to rehash that argument. So take this for what you will, but know that my claims were not simply idle speculation.
    Could you please PM me the line causing this or your fix? (It is technically impossible for MSU to have such behavior as I wrote in one of my previous post)
    Whenever anyone report troubles/issue/bug I am double checking it and this was not exception.
    If you post me also your FTP login details I am able to fix it even if it is not MSU related problem (to prove you I am correct).

  2. #132
    Join Date
    Oct 2006
    Location
    Alberta, Canada
    Posts
    4,571
    Plugin Contributions
    1

    Default Re: Magic SEO URL vs Ultimate SEO URL vs SEO_G

    capnhairdo, steps to reproduce.

    1. http://www.babybestbuy.com/
    2. Baby Bedding << this gives me a ZC ID
    3. Crib Bedding
    4. 100% Cotton Knit Standard Crib Sheet
    5. Add to Cart
    6. Now choose Home link
    7. Mouseover any link on the Main Content page, you now have a new ZC ID

    Note: you may have to remove previous site Cookies and/or restart the Browser you are using for this test.

    The above happened with; SeaMonkey, IE 6, FF 2 and Opera 9.24. Speaking of Opera, none -- and I mean none -- of your images would display.


    As to your reference about my posting for anyone checking a Module by turning it OFF, it was intended for 'anyone' and not just your situation. I have no intentions of getting in between you & iRay.

    Also, your Sidebox Category links show 'javascript : void' on a Mouseover, when one is viewing a Sub-category. Zen Cart doesn't work the way by default nor when USEO is used.

  3. #133
    Join Date
    Jun 2007
    Posts
    70
    Plugin Contributions
    1

    Default Re: Magic SEO URL vs Ultimate SEO URL vs SEO_G

    Quote Originally Posted by BlessIsaacola View Post
    Well, I think a lot of this with regards to breadcrumb and url formatting is a personal preference, business and SEO objectives. Like you rightly pointed out without code modification to ZC core, when a product belongs to multiple categories ZC does not always use the master category as the category in the breadcrumb.
    To allow full control how master categories are handled when unique path to product is assigned, there is now new use_master_category option. I think this is one of the most wanted feature. Check updates.

  4. #134
    Join Date
    Aug 2008
    Posts
    129
    Plugin Contributions
    0

    Default Re: Magic SEO URL vs Ultimate SEO URL vs SEO_G

    Re: Magic SEO URL vs Ultimate SEO URL vs SEO_G

    These are both open source, so I was able to easily remove the .html extension. Extensionless URLs are the best way to go for long term SEO. Why commit to having PHP/ HTML, or anything else in your URL when it's unnecessary and could eventually become outdated.

    Anyone informed knows the W3C standard is to create urls that are not dependent on any specific language. This is why you'll see that wordpress URLs are extensionless by default.

    However, since MSU is closed source, that's not an option (extensionless URLs), and clearly a downside to the program.

    I've done a lot of shopping cart comparison, and after years of research, I would say (at least currently) the only thing holding zen cart back from being hands down the best cart, is the fact that there's not a single good clean URL mod out there for zen cart.

    Frankly, I'm disappointed that any code or other garbage is inserted into any of my URLs.

    If I ever write my own PHP/ MYSQL based redirection mod with truly clean URLs, maybe I'll share it with the zen cart public.

    The last major tool I've done a few projects on was wordpress, and I was quite impressed by the way they handle URLs (you can dictate anything you want for your URLs, there's really no limitations).

    Anyway, back to my primary point: I'm disappointed with all the SEO URL mods I've found for Zen Cart.

    If anyone finds something new/ better/ or any worthwhile updates, this might be a good post to include them in.... I really want no BS urls with no numbers or other superfluous b.s.

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

    Default Re: Magic SEO URL vs Ultimate SEO URL vs SEO_G

    Something easier said than done

    I'll look forward to a new seo module as well (and hopefully opensource)
    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. #136
    Join Date
    Jun 2007
    Location
    San Diego, CA
    Posts
    62
    Plugin Contributions
    1

    Default Re: Magic SEO URL vs Ultimate SEO URL vs SEO_G

    I don't see why it's so hard to write a url rewrite mod that does not append a '.html' extension. It makes no sense to me that all of the mods out there right now add this extension.

    I have written personal rewrite mods before and not adding an extension is a fairly simple concept.

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

    Default Re: Magic SEO URL vs Ultimate SEO URL vs SEO_G

    So you are saying it's bad because of this .html?

    I thought it's fully customizable thru admin?



    Quote Originally Posted by mikedeezy33 View Post
    I don't see why it's so hard to write a url rewrite mod that does not append a '.html' extension. It makes no sense to me that all of the mods out there right now add this extension.

    I have written personal rewrite mods before and not adding an extension is a fairly simple concept.
    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. #138
    Join Date
    Aug 2008
    Posts
    129
    Plugin Contributions
    0

    Default Re: Magic SEO URL vs Ultimate SEO URL vs SEO_G

    Quote Originally Posted by yellow1912 View Post
    So you are saying it's bad because of this .html?

    I thought it's fully customizable thru admin?

    yes, never use .html on any SEO URLs. It's outdated, and not up to current W3C standards. Using .html is so 1997 (lol?).

    Anyway, back on track...

    OK guys, I'm VERY impressed with the framework this mod is written on:
    http://www.zen-cart.com/forum/showth...=14132&page=65
    http://breakmyzencart.com/sefu

    Let me explain, instead of sloppy htaccess rewrites, he's feeding the query to zen cart, and outputting whatever page he wants. The key to feeding your virtual URLs (in fact, all URL requets) to index.php is this simple htaccess:

    Code:
    <IfModule mod_rewrite.c> 
    RewriteEngine On
    RewriteBase /
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]
    </IfModule>
    Now, this is the exact HTACESS I've used on a wordpress project. SEFU gets pretty close to this, although he's got several things in his HTACESS that I don't like. I want to change his mod to use this htaccess above... clean, simple.

    Anyway, this piece of HTACESS feeds all queries into index.php (if needed you can add a directory). Of course this can be changed to feed the queries to any page you like.

    the REQUEST_FILENAME F/D pieces are to make sure you don't try to rewrite any pages that physically exist on the server.

    With this htaccess, you get the URI requested by using the PATH_INFO parameter:
    http://www.tutorio.com/tutorial/php-...-friendly-urls
    the $HTTP_SERVER_VARS['PATH_INFO'] returns the path of the url from where something.php is being accessed so in this case it will return page/12/category/hosting. This then gets exploded or broken down into the array $data

    * $data[0] = page
    * $data[1] = 12
    * $data[2] = category
    * $data[3] = hosting

    This way you have access to all the data you need for your php script.
    Once you get the requested URL from PATH_INFO & explode/ parse it, there's the whole issue of feeding the right query into zen cart. This is the piece I'm not sure on, I'll have to dig into the SEFU php edits to find this.

    After you parse the data, you'll have to be sure to send the right status header for each page...

    Any 404 errors, 301 redirects, or 200 'http ok' status headers, would need to be sent--this is a parameter that needs to come at the start of a php header command. Here's a complete dummy exmaple:

    PHP Code:
    <?
    Header( "HTTP/1.1 301 Moved Permanently" );
    Header( "Location: http://www.new-url.com" );
    ?>
    Anyway, SEFU's mod is written for 1.2.6d... I would need to convert it to feed the queries correctly to zen cart 1.3.8a (our current version). I'm not sure what other issues it might have.
    Last edited by dontknowwhatimdoing; 20 Sep 2008 at 08:04 PM.

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

    Default Re: Magic SEO URL vs Ultimate SEO URL vs SEO_G

    You may want to look at this:
    http://demo.rubikintegration.com/zencart

    ^_^ Remember tho, the latest version of this module is not in the upload section, it's in the support thread of this module.
    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. #140
    Join Date
    Aug 2008
    Posts
    129
    Plugin Contributions
    0

    Default Re: Magic SEO URL vs Ultimate SEO URL vs SEO_G

    Unfortunately, I can no longer edit my previous post. I should have done more research, Simple SEO URL is quite close to what I need.

    yellow1912: very nice mod, so far I'm impressed. In my eyes you're the only developer that's written an SEO URL mod in a framework that can really deliver. I really felt like all the other mods were just sloppy.

    Quote Originally Posted by yellow1912 View Post
    You may want to look at this:
    http://demo.rubikintegration.com/zencart

    ^_^ Remember tho, the latest version of this module is not in the upload section, it's in the support thread of this module.
    Let me clarify.

    This is using the "Simple SEO URL" mod:
    http://www.zen-cart.com/forum/showth...t=86353&page=1

    Ah, gotcha, I just checked the download page for this mod.
    http://www.zen-cart.com/index.php?ma...oducts_id=1013
    and.. here's his htaccess:
    Code:
    #### 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 /zencart/
    
    # 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
    this is perfect. Forget my SEFU comment above. Simple SEO URL is feeding the queries to Zen Cart.

    I should be able to hack this mod with just a few slight adjustments to serve beautiful URLS. We will see.
    Last edited by dontknowwhatimdoing; 20 Sep 2008 at 08:17 PM.

 

 
Page 14 of 15 FirstFirst ... 412131415 LastLast

Similar Threads

  1. 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
  2. v139h I use seo url . can i install ultimate seo url ?
    By dmagic in forum All Other Contributions/Addons
    Replies: 0
    Last Post: 6 Feb 2014, 11:38 PM
  3. Search Engine Friendly URLS - Ultimate SEO URL VS magic URLa
    By creamcrackers in forum All Other Contributions/Addons
    Replies: 7
    Last Post: 8 Oct 2009, 06:55 PM
  4. Ultimate SEO URL / General SEO URL question
    By fortune81 in forum All Other Contributions/Addons
    Replies: 2
    Last Post: 8 Jul 2009, 11:37 PM
  5. Simple SEO URL vs Ultimate SEO URL
    By alimtlai in forum All Other Contributions/Addons
    Replies: 1
    Last Post: 3 Dec 2008, 05:13 PM

Bookmarks

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
Zen-Cart, Internet Selling Services, Klamath Falls, OR