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
Printable View
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?
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?
Hi,
You obviously have a custom template and have hard coding inside it, setting the links to
instead of using something like (must be output using PHP):Code:index.php?main_page=products_new
So this is a problem you need to fix where you have hard codings in your template.PHP Code:
zen_href_link(FILENAME_PRODUCTS_NEW)
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
Hi,
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
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-->
Hi,
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
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.
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.