Page 73 of 245 FirstFirst ... 2363717273747583123173 ... LastLast
Results 721 to 730 of 2445
  1. #721
    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 taurus View Post
    I just want to know is it working for EZ-Pages to have them static pages?
    Yes. The distribution even comes with code to get the Multi-language EZ-Pages using static URIs if you want. :)

    Have a good weekend!

    All the best...

    Conor
    ceon

  2. #722

    Default Re: Ceon URI Mapping v4.x

    Quote Originally Posted by conor View Post
    Hi,



    Yes. The distribution even comes with code to get the Multi-language EZ-Pages using static URIs if you want. :)

    Have a good weekend!

    All the best...

    Conor
    ceon
    I have succeed with all the pages but when i hover the mouse over New Products and Special link in HEADER it shows the index.php?main_page=products_new and index.php?main_page=specials, but after clicking on it it goes to /new-products
    Can you tell me what is wrong?

  3. #723
    Join Date
    Mar 2004
    Location
    Finland
    Posts
    488
    Plugin Contributions
    3

    Default Re: Ceon URI Mapping v4.x

    Just installed this for the first time for a customer.

    the site has the following structure
    example.com/cms
    example.com/shop

    Where CMS is drupal and shop is zencart

    Now if both have the rewrite rules in the root .htaccess file (in example.com/.htacces), drupal will still work, but zencart will not. Moving drupal definitions to the /cms/.htaccess and everything works fine.

    So you probably can't have an zencart installation with this mod so that drupal is installed in the root and zencart is a subfolder?
    Working with Zen Cart since 2003 :: www.prr.fi
    Author of the original Finnish language pack for Zen Cart since 2004

  4. #724
    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 taurus View Post
    I have succeed with all the pages but when i hover the mouse over New Products and Special link in HEADER it shows the index.php?main_page=products_new and index.php?main_page=specials, but after clicking on it it goes to /new-products
    Can you tell me what is wrong?
    You obviously have a custom template and have hard coding inside it, setting the links to

    Code:
    index.php?main_page=products_new
    instead of using something like (must be output using PHP):

    PHP Code:
    zen_href_link(FILENAME_PRODUCTS_NEW
    So this is a problem you need to fix where you have hard codings in your template.

    The reason the link changes from the dynamic one you see when you hover over the link to the static URI is that Ceon URI Mapping smartly redirects from the dynamic link to the static one.

    That's you sorted then!

    All the best...

    Conor
    ceon

  5. #725
    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 pasi View Post
    So you probably can't have an zencart installation with this mod so that drupal is installed in the root and zencart is a subfolder?
    You can indeed. But you need to add a condition(s?) to your Drupal rewrite rule to stop it trying to handle the /shop URIs.

    The information in the Ceon URI Mapping documentation about adding exclusions may be of use. Or you can search the 'net for info on rewrite rules.

    If you're still stuck, then I'm afraid that, as I've never used Drupal and custom rewrite rules are what I'd consider custom coding, I won't comment on this further here, that sort of support is not provided by me for free, but hopefully the above information is enough or maybe someone else can help you.

    Have a nice day!

    All the best..

    Conor
    ceon

  6. #726

    Default Re: Ceon URI Mapping v4.x

    this is my code for my templates, i can't find the code you gave me, please can you help?

    <!--bof-header ezpage links-->
    <div class="topper-menu float-right">
    <?php if (EZPAGES_STATUS_HEADER == '1' or (EZPAGES_STATUS_HEADER == '2' and (strstr(EXCLUDE_ADMIN_IP_FOR_MAINTENANCE, $_SERVER['REMOTE_ADDR'])))) { ?>
    <?php require($template->get_template_dir('tpl_ezpages_bar_header.php',DIR_WS_TEMPLATE, $current_page_base,'templates'). '/tpl_ezpages_bar_header.php'); ?>
    <?php } ?>
    </div>
    <!--eof-header ezpage links-->




    Quote Originally Posted by conor View Post
    Hi,



    You obviously have a custom template and have hard coding inside it, setting the links to

    Code:
    index.php?main_page=products_new
    instead of using something like (must be output using PHP):

    PHP Code:
    zen_href_link(FILENAME_PRODUCTS_NEW
    So this is a problem you need to fix where you have hard codings in your template.

    The reason the link changes from the dynamic one you see when you hover over the link to the static URI is that Ceon URI Mapping smartly redirects from the dynamic link to the static one.

    That's you sorted then!

    All the best...

    Conor
    ceon

  7. #727
    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 taurus View Post
    this is my code for my templates, i can't find the code you gave me, please can you help?
    Sorry I don't help with custom templates etc. Maybe someone else here will.

    If not, you should pay someone to help.

    All the best...

    Conor
    ceon

  8. #728
    Join Date
    Jul 2012
    Posts
    22
    Plugin Contributions
    1

    Default Re: Ceon URI Mapping v4.x

    Big issue when i have the uri mapping switched on customers can only log in on the main page logging in any where else creates a system 404 error but with it off customers can login as and when they like no matter where what could i have done wrong?

    btw : i'm using zen cart 150 with all business template.

  9. #729
    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 Neil_9481 View Post
    Big issue when i have the uri mapping switched on customers can only log in on the main page logging in any where else creates a system 404 error but with it off customers can login as and when they like no matter where what could i have done wrong?

    btw : i'm using zen cart 150 with all business template.
    Have you added a custom static URI for the login page?

    If so, it's possible/likely that your log-in link in your template isn't using zen_href_link() and is posting to the wrong address, the dynamic address or something like that.

    Regardless, check the PHP/HTML around the log-in links/forms you are using and make sure they are posting to the correct address/PHP function + parameters.

    All the best..

    Conor
    ceon

  10. #730
    Join Date
    Jul 2012
    Posts
    22
    Plugin Contributions
    1

    Default Re: Ceon URI Mapping v4.x

    Quote Originally Posted by conor View Post
    Hi,



    Have you added a custom static URI for the login page?

    If so, it's possible/likely that your log-in link in your template isn't using zen_href_link() and is posting to the wrong address, the dynamic address or something like that.

    Regardless, check the PHP/HTML around the log-in links/forms you are using and make sure they are posting to the correct address/PHP function + parameters.

    All the best..

    Conor
    ceon
    i've not changed any of the generic zen cart uri's

    with ceon turned off whilst viewing a product and logging in the user would be returned to:-



    with ceon turned off the same url produces this:-



    the second returns 404 not found i've tried the .htaccess rewrite varients but both still return the same results.

 

 

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