Page 72 of 245 FirstFirst ... 2262707172737482122172 ... LastLast
Results 711 to 720 of 2445
  1. #711
    Join Date
    Aug 2004
    Location
    Belfast, Northern Ireland
    Posts
    2,480
    Plugin Contributions
    14

    Default Re: Ceon URI Mapping v4.x

    Hi,

    Quote Originally Posted by countrycharm View Post
    Sorry Conor for high jacking the thread.
    I'm not going to object to you finding and fixing a problem for someone! :)

    Instead I have to offer thanks! :)

    So.. thanks!

    All the best...

    Conor
    ceon

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

    Default Re: Ceon URI Mapping v4.x

    Hi Sam,

    Quote Originally Posted by sam_m View Post
    Number of Queries: 3036

    Number of Queries: 33 -
    Ceon URI Mapping makes one query for the URI and one for each link using zen_href_link, so how your site is suddenly adding on 3033 queries per page is a bit of a mystery.. possibly a rubbishy dynamic category module, maybe, I don't know.

    Please get in contact privately with FTP and admin details and I'll take a look.

    All the best...

    Conor
    ceon


  3. #713
    Join Date
    Jul 2007
    Posts
    2,169
    Plugin Contributions
    16

    Default Re: Ceon URI Mapping v4.x

    Quote Originally Posted by conor View Post
    Hi,



    I'm not going to object to you finding and fixing a problem for someone! :)

    Instead I have to offer thanks! :)

    So.. thanks!

    All the best...

    Conor
    ceon
    Your welcome and welcome back. I replied to your email about two weeks ago. I hope you had good news since the last time I talked to you. Anyway this not the place for that.
    Is your site Upgraded to the current version 1.5.4 Yet?
    zencart-upgrades-website-installation

  4. #714

    Default Re: Ceon URI Mapping v4.x

    Please could someone help a newbie,
    I have installed Ceon URI Mapping, all my products and categories has been changed accordingly but i cannot configure the EZ PAGES, i tried to add a SPECIAL ez page but it doesn't work, i have entered the following:
    Internal Link URL: index.php?main_page=specials

  5. #715
    Join Date
    Jan 2007
    Location
    Los Angeles, California, United States
    Posts
    10,023
    Plugin Contributions
    32

    Default Re: Ceon URI Mapping v4.x

    Quote Originally Posted by taurus View Post
    Please could someone help a newbie,
    I have installed Ceon URI Mapping, all my products and categories has been changed accordingly but i cannot configure the EZ PAGES, i tried to add a SPECIAL ez page but it doesn't work, i have entered the following:
    Internal Link URL: index.php?main_page=specials
    Please search this thread.. the answer to why creating EZ Pages for internal links for pages won't work with this add-on has been discussed a few times in this thread.. latest discussion on this topic was a week or two back so paging back a few pages will yield the answer to your question..
    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.

  6. #716

    Default Re: Ceon URI Mapping v4.x

    Hi Conor, first of all, thank you for your great module. I have a little problem and hope that you could help. When I go my domain name www.unique-womens-clothing.com, it show Index of / with list of my website folder. Bluehost's support ask me to do a redirect to my cart folder www.unique-womens-clothing.com/online-store from the cpanel but that didn't work. He said there is a conflict with my .htaccess rewrite and they wouldn't be able to help. I have also try adding a / as you have mention in the installation guide but still don't work. What should I add to the .htaccess in order to direct my domain to my cart folder? Below is my .htacess, thank you.

    RewriteEngine On
    # ONLY rewrite URIs beginning with /online-store/
    RewriteCond %{REQUEST_URI} ^/online-store/ [NC]
    # Don't rewrite any URIs ending with a file extension (ending with .[xxxxx])
    RewriteCond %{REQUEST_URI} !\.[a-z]{2,5}$ [NC]
    # Don't rewrite any URIs for some, popular specific file format extensions,
    # which are not covered by main file extension condition above
    RewriteCond %{REQUEST_URI} !\.(mp3|mp4|h264)$ [NC]
    # Don't rewrite any URIs for some specific file format extensions,
    # which are not covered by main file extension condition above
    # Uncomment the following line to apply this condition!
    (Remove the # at the start of the next line)
    #RewriteCond %{REQUEST_URI} !\.
    (3gp|3g2|h261|h263|mj2|mjp2|mp4v|mpg4|m1v|m2v|m4u|f4v|m4v|3dm
    l)$ [NC]
    # Don't rewrite admin directory
    RewriteCond %{REQUEST_URI} !^/online-store/myadmin [NC]
    # Don't rewrite editors directory
    RewriteCond %{REQUEST_URI} !^/online-store/editors/ [NC]
    # Don't rewrite bmz_cache directory
    RewriteCond %{REQUEST_URI} !^/online-store/bmz_cache/ [NC]
    # Don't rewrite feed directory
    RewriteCond %{REQUEST_URI} !^/online-store/feed/ [NC]
    # Don't rewrite cgi-bin directory
    RewriteCond %{REQUEST_URI} !^/online-store/cgi-bin/ [NC]
    # Don't rewrite ajax directory
    RewriteCond %{REQUEST_URI} !^/online-store/ajax/ [NC]
    # Don't rewrite sitemap directory
    RewriteCond %{REQUEST_URI} !^/online-store/sitemap/ [NC]
    # Handle all other URIs using Zen Cart (its index.php)
    RewriteRule .* /online-store/index.php [QSA,L]
    ## END CEON URI MAPPING REWRITE RULE

  7. #717
    Join Date
    Jan 2007
    Location
    Los Angeles, California, United States
    Posts
    10,023
    Plugin Contributions
    32

    Default Re: Ceon URI Mapping v4.x

    You see the root folder contents because you do not have a default file inside your root directory (index or default) and so it displays the root folder's contents..

    You want to redirect visitors from http://yourdomain.com to http://yourdomain.com/online-store ??

    WHY???

    Why have an empty root folder and your store inside a subfolder at all?? Why not have your store inside your root folder?? If the store IS your site, then this is where your Zen Cart files/folders needs to be NOT inside a sub-directory like you have it..

    Quote Originally Posted by Defanci View Post
    Hi Conor, first of all, thank you for your great module. I have a little problem and hope that you could help. When I go my domain name www.unique-womens-clothing.com, it show Index of / with list of my website folder. Bluehost's support ask me to do a redirect to my cart folder www.unique-womens-clothing.com/online-store from the cpanel but that didn't work. He said there is a conflict with my .htaccess rewrite and they wouldn't be able to help. I have also try adding a / as you have mention in the installation guide but still don't work. What should I add to the .htaccess in order to direct my domain to my cart folder? Below is my .htacess, thank you.

    RewriteEngine On
    # ONLY rewrite URIs beginning with /online-store/
    RewriteCond %{REQUEST_URI} ^/online-store/ [NC]
    # Don't rewrite any URIs ending with a file extension (ending with .[xxxxx])
    RewriteCond %{REQUEST_URI} !\.[a-z]{2,5}$ [NC]
    # Don't rewrite any URIs for some, popular specific file format extensions,
    # which are not covered by main file extension condition above
    RewriteCond %{REQUEST_URI} !\.(mp3|mp4|h264)$ [NC]
    # Don't rewrite any URIs for some specific file format extensions,
    # which are not covered by main file extension condition above
    # Uncomment the following line to apply this condition!
    (Remove the # at the start of the next line)
    #RewriteCond %{REQUEST_URI} !\.
    (3gp|3g2|h261|h263|mj2|mjp2|mp4v|mpg4|m1v|m2v|m4u|f4v|m4v|3dm
    l)$ [NC]
    # Don't rewrite admin directory
    RewriteCond %{REQUEST_URI} !^/online-store/myadmin [NC]
    # Don't rewrite editors directory
    RewriteCond %{REQUEST_URI} !^/online-store/editors/ [NC]
    # Don't rewrite bmz_cache directory
    RewriteCond %{REQUEST_URI} !^/online-store/bmz_cache/ [NC]
    # Don't rewrite feed directory
    RewriteCond %{REQUEST_URI} !^/online-store/feed/ [NC]
    # Don't rewrite cgi-bin directory
    RewriteCond %{REQUEST_URI} !^/online-store/cgi-bin/ [NC]
    # Don't rewrite ajax directory
    RewriteCond %{REQUEST_URI} !^/online-store/ajax/ [NC]
    # Don't rewrite sitemap directory
    RewriteCond %{REQUEST_URI} !^/online-store/sitemap/ [NC]
    # Handle all other URIs using Zen Cart (its index.php)
    RewriteRule .* /online-store/index.php [QSA,L]
    ## END CEON URI MAPPING REWRITE RULE
    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.

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

    Default Re: Ceon URI Mapping v4.x

    Hi Randy,

    Quote Originally Posted by countrycharm View Post
    Your welcome and welcome back. I replied to your email about two weeks ago. I hope you had good news since the last time I talked to you. Anyway this not the place for that.
    Yes, I'm sorry for not getting back to you yet, I always prioritise support posts, wasn't online at all for a bit there (ver unusual, glad the internet didn't crash in shock! ;) ). Unfortunately things have indeed got worse but as always hopeful they'll get better. I'll talk to you privately.

    Thanks again.

    All the best..

    Conor

  9. #719

    Default Re: Ceon URI Mapping v4.x

    Quote Originally Posted by DivaVocals View Post
    You see the root folder contents because you do not have a default file inside your root directory (index or default) and so it displays the root folder's contents..

    You want to redirect visitors from http://yourdomain.com to http://yourdomain.com/online-store ??

    WHY???

    Why have an empty root folder and your store inside a subfolder at all?? Why not have your store inside your root folder?? If the store IS your site, then this is where your Zen Cart files/folders needs to be NOT inside a sub-directory like you have it..
    I was actually contemplating to move to root because worry about losing the backlinks. Thanks to you I have moved. But how can I redirect old url with /online-store/ to the new location? I try from cPanel, don't work. What should I add into the .htaccess?

  10. #720

    Default Re: Ceon URI Mapping v4.x

    Quote Originally Posted by DivaVocals View Post
    Please search this thread.. the answer to why creating EZ Pages for internal links for pages won't work with this add-on has been discussed a few times in this thread.. latest discussion on this topic was a week or two back so paging back a few pages will yield the answer to your question..
    I just want to know is it working for EZ-Pages to have them static pages?

 

 

Similar Threads

  1. v139d Ceon uri mapping, how to generate uri mapping for bulk bulk-imported products?
    By mybiz9999 in forum All Other Contributions/Addons
    Replies: 3
    Last Post: 8 Jan 2013, 06:52 AM
  2. CEON URI Mapping
    By jmkent in forum All Other Contributions/Addons
    Replies: 3
    Last Post: 22 Nov 2012, 04:28 PM
  3. Ceon URI Mapping (SEO)
    By conor in forum All Other Contributions/Addons
    Replies: 2906
    Last Post: 9 Sep 2011, 08:31 AM
  4. Ceon URI Mapping v4
    By conor in forum All Other Contributions/Addons
    Replies: 110
    Last Post: 14 Aug 2011, 02:51 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