Page 37 of 168 FirstFirst ... 2735363738394787137 ... LastLast
Results 361 to 370 of 1674
  1. #361
    Join Date
    Oct 2012
    Posts
    2
    Plugin Contributions
    0

    Default Re: Ultimate SEO 2.200+ (new features)

    I'm running version 2.207 on Zen Cart v1.51.

    Thanks for the info. Turns out I'd forgotten I copied the old page and renamed it. So once I changed it back it's working.

    Question though, it seems USU takes over all URL requests? I had previously setup a redirect page to solve the problem and was surprised to find that the static HTML page I setup with a URL matching the original page could not be found.

  2. #362
    Join Date
    Feb 2012
    Location
    mostly harmless
    Posts
    1,809
    Plugin Contributions
    8

    Default Re: Ultimate SEO 2.200+ (new features)

    Quote Originally Posted by Stig57 View Post
    I'm running version 2.207 on Zen Cart v1.51.

    Thanks for the info. Turns out I'd forgotten I copied the old page and renamed it. So once I changed it back it's working.

    Question though, it seems USU takes over all URL requests? I had previously setup a redirect page to solve the problem and was surprised to find that the static HTML page I setup with a URL matching the original page could not be found.
    Glad you were able to get everything sorted! Newer versions of USU contain a number of bug fixes, enhancements, and new features... and should upgrade nicely under Zen Cart 1.5 (but make a backup first) :)

    USU only sends specific requests (specified in the .htaccess file) to Zen Cart. In current versions, the last line in the example .htaccess file also instructs Apache to send all requests which do not correspond to a physical file or folder to Zen Cart (I think in versions closer to 2.207 it only sends requests ending in .html - It has been awhile)...

    The behavior configured in the latest versions of USU of sending all requests to Zen Cart for files and folders which do not correspond to a physical file or folder is something commonly utilized by many modern web applications. If you want to read more, you can look up the "front controller pattern"... For Zen Cart + USU the pattern is selectively applied because we want real images, js, css, html, php, and other files to still be served directly (allowing "ping back" URIs and retaining performance for static resources).

    I typically do not recommend creating static pages to "redirect"... It makes things harder to manage in my experience (especially long term)... Instead you can just add a RewriteRule or Redirect directly in a .htaccess file so all redirects can be found and managed quickly from one location. Unless you add a large number of redirects, in my opinion the ease of management outweighs the slight performance impact. But then again, I tend to avoid creating manual redirects unless absolutely necessary...

    Mod Rewrite:
    Rules in the .htaccess file are processed in order and processing does not end until either a [L] flag or the end of the .htaccess file is reached. Thus if you place additional rules before the USU ones the additional ones take precedence... If you add them after the USU ones... the USU ones take precedence. It all depends on how YOU modify the rules. You can read more in the Apache mod_rewrite documentation.

    But learning how to utilize mod_rewrite is something a bit beyond the scope of this thread. It can be a powerful tool as long as one understands how it works - although a tool I would use sparingly.
    Last edited by lhungil; 14 Apr 2013 at 11:29 PM. Reason: clarification
    The glass is not half full. The glass is not half empty. The glass is simply too big!
    Where are the Zen Cart Debug Logs? Where are the HTTP 500 / Server Error Logs?
    Zen Cart related projects maintained by lhûngîl : Plugin / Module Tracker

  3. #363
    Join Date
    Apr 2008
    Posts
    82
    Plugin Contributions
    0

    Default Re: Ultimate SEO 2.200+ (new features)

    Hello!
    Can somebody tell me how to set up language identifiers in U. SEO, I am using 2.212, and can not find it anywhere. I believe, there was an option to add it in previous versions, does this one have it?

    What am trying to accomplish:

    example.com/product - default language
    example.com/es/product - spanish

    Thank you!

  4. #364
    Join Date
    Feb 2012
    Location
    mostly harmless
    Posts
    1,809
    Plugin Contributions
    8

    Default Re: Ultimate SEO 2.200+ (new features)

    Quote Originally Posted by Dan123 View Post
    Can somebody tell me how to set up language identifiers in U. SEO, I am using 2.212, and can not find it anywhere. I believe, there was an option to add it in previous versions, does this one have it?

    What am trying to accomplish:

    example.com/product - default language
    example.com/es/product - spanish
    Currently no option exists in USU to create URLs as per your example. I am not aware of USU for Zen Cart every having such an option (although I could be wrong). It would be a month or so before I could look into adding such an option... If you can wait awhile, send me a PM here as a reminder :)

    I am also currently in need of translations of the options used by this module (and the README). If you have the English language file translated to Spanish for this module (2_new_files/your_admin_folder/includes/languages/english/extra_definitions/seo.php) please paste the changes here (or send them to me in a PM).

    If you need this yesterday, here is a short list of the changes needed to implement your request:
    • Modify make_url() to add a language identifier to the start of the URL. See the Zen Cart language class and database table. $this->languages_id will contain the corresponding language id for the current request.
    • Modify the .htaccess file. You can probably get away with just passing the 2-3 character language code (matching the code field in the Zen Cart language db table) using the variable "language". For example, "RewriteRule ^(?[^/]{2,3})/)(.*)-p-([0-9]+)(.*)$ index\.php?main_page=product_info&products_id=$3&language=$1&%{QUERY_STRING} [L]".
    • Add a new option to enable or disable this feature. Change the included language file(s) and the installation / removal script.


    If you do undertake the changes, please do post the complete list (or send me a zip file) so the changes can be tested and added to a future version.
    The glass is not half full. The glass is not half empty. The glass is simply too big!
    Where are the Zen Cart Debug Logs? Where are the HTTP 500 / Server Error Logs?
    Zen Cart related projects maintained by lhûngîl : Plugin / Module Tracker

  5. #365
    Join Date
    Apr 2008
    Posts
    82
    Plugin Contributions
    0

    Default Re: Ultimate SEO 2.200+ (new features)

    Thanks for your fast reply I will try to follow your tips. And I found the version with these options, though it is modified, it's done by a_berezin, here is the link to it http://oscomm.biz/index.php?showtopic=18713&st=0, it might be useful for you.

    Thanks,
    Dan!

  6. #366
    Join Date
    Aug 2004
    Location
    Saint Petersburg, Russia
    Posts
    1,786
    Plugin Contributions
    13

    Default Re: Ultimate SEO 2.200+ (new features)

    Hi Dan,
    Quote Originally Posted by Dan123 View Post
    Thanks for your fast reply I will try to follow your tips. And I found the version with these options, though it is modified, it's done by a_berezin, here is the link to it http://oscomm.biz/index.php?showtopic=18713&st=0, it might be useful for you.

    Thanks,
    Dan!
    Don't use version from http://oscomm.biz/index.php?showtopic=18713&st=0!!! It's old, buggy and unsupported!

  7. #367
    Join Date
    Apr 2008
    Posts
    82
    Plugin Contributions
    0

    Default Re: Ultimate SEO 2.200+ (new features)

    Thanks)
    I am not using it, I just wrote that it has those options implemented and if you ever decide to add them, it already has them, so it would be easier to copy/update from it instead of starting from scratch.

  8. #368

    Default Restructuring the URL to remove the -p- and -c-

    Hi All,

    Please accept my apologies if this question has already been asked, I tried looking but could not see where it may have been addressed. If it has been address before, can you please kindly direct me to the right post.

    I have just upgraded Zen-cart to V151 and installed Ultimate URL with V151. All works well.

    Except previously we were running magic SEO and now our url's are slightly different.

    The old urls were
    melbournesigns.com.au/garden-signs-40/grey-water-used-on-garden-and-lawns-286.html


    The new urls are
    melbournesigns.com.au/garden-signs-c-40/grey-water-used-on-garden-and-lawns-p-286.html


    The difference is the c- and p- for the categories and product codes. See in red below.

    melbournesigns.com.au/garden-signs-c-40/grey-water-used-on-garden-and-lawns-p-286.html

    Doesn't seem at first to be a big deal except that we have thousands of organic links from Google and when you use the old url, you come to a blank page which would cause visitors to click back and find a different site.

    Can anyone help with suggestions on how to fix this?
    Or is there a way I can send these links to the home page instead of getting a blank page?

    Thank you for your help in advance.

    Regards
    Alem
    Regards
    Alem

  9. #369
    Join Date
    Feb 2013
    Posts
    104
    Plugin Contributions
    0

    Default Re: Ultimate SEO 2.200+ (new features)

    I'm installing Ultimate SEO URL and got two questions about INSTALLATION INSTRUCTIONS.
    "Copy files from "2_new_files" to your Zen Cart install. If upgrading overwrite any existing files." I really don't understand what that means. If I install first time, Am I suppose to ingore "2_new_files"?
    "A sample .htaccess file is included. Edit "3_htaccess/.htaccess" to match your web server's environment. Pay particular attention to the "RewriteBase" line. Make sure your server does not have "MultiViews" enabled (rare)." My web server is Just Host. How should I edit .hoaccess file?
    I'm a rookie for help. Thanks

  10. #370

    Default Re: Ultimate SEO 2.200+ (new features)

    Quote Originally Posted by fanisme View Post
    I'm installing Ultimate SEO URL and got two questions about INSTALLATION INSTRUCTIONS.
    "Copy files from "2_new_files" to your Zen Cart install. If upgrading overwrite any existing files." I really don't understand what that means. If I install first time, Am I suppose to ingore "2_new_files"?
    "A sample .htaccess file is included. Edit "3_htaccess/.htaccess" to match your web server's environment. Pay particular attention to the "RewriteBase" line. Make sure your server does not have "MultiViews" enabled (rare)." My web server is Just Host. How should I edit .hoaccess file?
    I'm a rookie for help. Thanks
    Hi Fansime,

    Glad to meet a fellow novice.

    You need to install all the files, I think the reason they have broken them into different folder is if you already have modified files, that you can cut and paste the code into the old file.

    What I did was to copy the files into the right place. Careful to change any folder named "your template" to the actual name of the template you are using, mine was "glasco".

    Regarding the htaccess file, this got me as well, open the file and edit the line that says rewrite base. It will say something like "/yourshop/" you need to change this to your stores location. if your store is at xxx.com/ then the "/yourshop/ "to " /"

    I tried to figure out the multiview, but could not find it. My urls are now working so I figure it has nothing to do with my site.
    Regards
    Alem

 

 

Similar Threads

  1. Ultimate Fade-In Slidehow Support thread
    By outeredge2 in forum All Other Contributions/Addons
    Replies: 158
    Last Post: 4 Feb 2017, 03:10 AM
  2. Ultimate Cross Sell [Support Thread]
    By ultimate_zc in forum All Other Contributions/Addons
    Replies: 239
    Last Post: 17 May 2015, 03:25 AM
  3. Ultimate Content Glider [Support Thread]
    By ultimate_zc in forum All Other Contributions/Addons
    Replies: 11
    Last Post: 4 Sep 2012, 05:16 AM
  4. Re: Simple SEO URL [support thread]
    By creamcrackers in forum General Questions
    Replies: 2
    Last Post: 16 Aug 2009, 03:02 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