Page 210 of 291 FirstFirst ... 110160200208209210211212220260 ... LastLast
Results 2,091 to 2,100 of 2907
  1. #2091
    Join Date
    Jul 2010
    Posts
    16
    Plugin Contributions
    0

    Default Re: Ceon URI Mapping (SEO)

    Thanks Conor. I do like the look of the software as it allows me to use fixed urls as opposed to using the categories/products name which my client keeps on changing.
    My clients is investing in a SEO campaign which obviously need to reference these fixed optimised URLS, so this package is just what I was looking for.
    I am just about to create the .htacces file and will be testing the software on my test site (which is why the urls I sent you started with /zakz/ as my test site is used for more than one live site)

  2. #2092
    Join Date
    Jul 2010
    Posts
    16
    Plugin Contributions
    0

    Default Re: Ceon URI Mapping (SEO)

    Actually, while you ore on-line maybe you could confirm what I should have in my htaccess file for both my live site and my test site. Should I PM you or give the details in the forum.

  3. #2093
    Join Date
    Aug 2004
    Location
    Belfast, Northern Ireland
    Posts
    2,480
    Plugin Contributions
    14

    Default Re: Ceon URI Mapping (SEO)

    Hi,

    Quote Originally Posted by TonyBunney View Post
    Thanks Conor. I do like the look of the software as it allows me to use fixed urls as opposed to using the categories/products name which my client keeps on changing.
    My clients is investing in a SEO campaign which obviously need to reference these fixed optimised URLS, so this package is just what I was looking for.
    Glad to hear it! ;)

    Quote Originally Posted by TonyBunney View Post
    I am just about to create the .htacces file and will be testing the software on my test site (which is why the urls I sent you started with /zakz/ as my test site is used for more than one live site)
    It is highly recommended NOT to use a folder for a test site when you are building a site that uses static URIs.

    You cannot simply move a test site from a subfolder to the root folder when using static URIs, the URIs will all be broken.

    You should only ever set up test sites using a test subdomain. E.g. test.thedomain.com instead of www.thedomain.com

    then the only thing that will be different will be the configure files, the .htaccess files and all the URIs will be the same.

    This is the only professional strategy for web development these days. :)

    All the best..

    Conor
    ceon

  4. #2094
    Join Date
    Jul 2010
    Posts
    16
    Plugin Contributions
    0

    Default Re: Ceon URI Mapping (SEO)

    Thanks Conor. I will look into switching to test domains in the future as I have a number of new clients coming on board.

    Regards

    Tony

  5. #2095
    Join Date
    Aug 2004
    Location
    Belfast, Northern Ireland
    Posts
    2,480
    Plugin Contributions
    14

    Default Re: Ceon URI Mapping (SEO)

    Hi Tony,

    Quote Originally Posted by TonyBunney View Post
    Thanks Conor. I will look into switching to test domains in the future as I have a number of new clients coming on board.
    It makes everything easier.. until our clients' sites are ready we simply use our own test server for them.. e.g. clientname.ourtestserver.com

    Making the site live is then a simple matter of updating the Apache configuration to associate their domain name with the folder the test site is in and updating paths in the likes of configure files. Easy! (And v professional!) :)

    Hope that helps!

    All the best..

    Conor
    ceon

  6. #2096
    Join Date
    Jan 2007
    Location
    Los Angeles, California, United States
    Posts
    10,021
    Plugin Contributions
    32

    Default Re: Ceon URI Mapping (SEO)

    I've done both ways.. I develop on my own host, then transfer the site to the clients host.. using a sub directory requires me to scrub the SQL file before transferring.. It wasn't pretty, but got it down to a science.. (a little find and replace magic ) That said switching to a subdomain setup has indeed made transferring from my dev to the client's prod environment a lot easier.. **LOL***

    Quote Originally Posted by conor View Post
    Hi Tony,



    It makes everything easier.. until our clients' sites are ready we simply use our own test server for them.. e.g. clientname.ourtestserver.com

    Making the site live is then a simple matter of updating the Apache configuration to associate their domain name with the folder the test site is in and updating paths in the likes of configure files. Easy! (And v professional!) :)

    Hope that helps!

    All the best..

    Conor
    ceon
    My Site - Zen Cart & WordPress integration specialist
    I don't answer support questions via PM. Post add-on support questions in the support thread. The question & the answer will benefit others with similar issues.

  7. #2097
    Join Date
    Mar 2005
    Location
    Watford, UK
    Posts
    155
    Plugin Contributions
    0

    Default Re: Ceon URI Mapping (SEO)

    Quote Originally Posted by conor View Post
    Hi Richard,



    You shouldn't exclude any Zen Cart pages from the mapping using htaccess rules.



    That means that this module isn't built to work with *static* URIs.. it must be using relative URIs. Change all of its link generation functionality (and links to CSS/JS files) to use *full* static paths instead of relative paths and it will then be compatible with your new static-URI based site! :)

    E.g. this is wrong:

    includes/templates/css/my_css_file.css

    This is right:

    /includes/templates/css/my_css_file.css

    All the best..

    Conor
    ceon
    Thanks. I'm presuming then that I need to change lines like this:

    if (file_exists(DIR_WS_TEMPLATE . 'common/tpl_main_page.php')) {

    I've tried changing it to:

    if (file_exists('http://www.websiteaddress.com/includes/templates/uktemplate/common/tpl_main_page.php')) {

    ..but it doesn't find the file. Should I be using:

    if (file_exists('/home/wwwloui/public_html/includes/templates/uktemplate/common/tpl_main_page.php')) {

    Instead?

    Thanks again,
    Richard

  8. #2098
    Join Date
    Mar 2005
    Location
    Watford, UK
    Posts
    155
    Plugin Contributions
    0

    Default Re: Ceon URI Mapping (SEO)

    No worries - it is this format I need to use as far as I can tell:

    /home/wwwloui/public_html/includes/templates/uktemplate/common/tpl_main_page.php

    ....Just got to wade my way through the files now to see what needs to be changed.

    Thanks,
    Richard

  9. #2099

    Default Re: Ceon URI Mapping (SEO)

    Hi Conor

    Your module works like a charm on my Mineral Skin care site

    Thanks for your quick support and help


    Zen cart 1.3.9a

  10. #2100
    Join Date
    Jul 2010
    Posts
    16
    Plugin Contributions
    0

    Default Re: Ceon URI Mapping (SEO)

    It looks like Conor is correct on the sub domain issue and I will certainly be looking at that solution when I get time but for now, as I have a deadline, I will continue to use my current method which is basically having logic in the config.php file to determine which site I am running on, including a local XAMPP server.
    I obviously have to use different .htaccess files as I am not that confident I know how to determine which site I am running on within the .htaccess file itself. I know it can be done but for now I will use different files for each environment.

    Tony

 

 

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. Ceon uri mapping vs Simple SEO
    By crixus in forum General Questions
    Replies: 0
    Last Post: 28 Feb 2014, 04:41 AM
  3. v151 Ceon URI Mapping (SEO) Issues?
    By yisou in forum All Other Contributions/Addons
    Replies: 1
    Last Post: 30 Jul 2013, 12:06 PM
  4. v151 Ceon URI Mapping (SEO) installation problem.
    By jmac2020 in forum General Questions
    Replies: 1
    Last Post: 23 Oct 2012, 01:06 PM
  5. Ceon URI Mapping (SEO) How to install?
    By jackfitz in forum All Other Contributions/Addons
    Replies: 6
    Last Post: 28 Apr 2010, 12:09 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