Page 1 of 2 12 LastLast
Results 1 to 10 of 2445

Hybrid View

  1. #1
    Join Date
    Apr 2012
    Posts
    27
    Plugin Contributions
    0

    Default Re: Ceon URI Mapping v4.x

    ive just installed ceon uri mapping 4.0.8
    and ive got everything working as far as the url's go
    however as you can see in the included image right sidebox
    is now off to the right about 130 pixels.
    ive read thru the faq about template problems and the fix suggested however this was no help

    the site is modified a bit (inc custom sidebox, header menu, better cattegories, twitter and facebook etc)

    image link here shows missalignment:
    http://i1077.photobucket.com/albums/...1Apr191737.jpg

  2. #2
    Join Date
    Apr 2012
    Posts
    5
    Plugin Contributions
    0

    Default No longer receiving admin order notification emails.

    I added module Ceon URI Mapping (SEO) to Zen-Cart 1.50

    Hosted on Apache with GoDaddy Linux server.
    URI's are working.
    I ran check, and all was good.

    Just one problem. I no longer get admin email notifications for orders. I still can get contact_us emails. Order confirmation emails are being sent to customers. If I turn off URI Mapping in admin config the problem still persists. I assume that when I added the URI module I made an error in a customized file edit somewhere when I couldn't simply transfer the whole file.

    So, what file could I have edited that would only disable admin email notifications?

    At this point I am just trying to narrow down what I need to look at.

    I did edits manually in custom files...

    admin/includes/english/product.php
    admin/includes/modules/update_product.php
    admin/includes/modules/prod_cat_header_code.php
    admin/includes/modules/product/collect_info.php
    admin/includes/modules/product/preview_info.php


    Thanks for any help. Bruce J.

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

    Default Re: No longer receiving admin order notification emails.

    Hi Bruce,

    Quote Originally Posted by MadRiver View Post
    So, what file could I have edited that would only disable admin email notifications?
    I can help you narrow things down by telling you that you are looking in the wrong place. It's impossible for Ceon URI Mapping to have the effect you are describing, NONE of its files interact with e-mail.

    So you must have been changing something else at the same time.

    None of the core files you listed use notifications. None of the modified core files in Ceon URI Mapping do.

    At least you know you didn't make a mistake in any of those files and can discount them as the source of your problem.

    Sorry I don't have any more info than that.

    Maybe check your e-mail settings?

    At least enable E-mail Archiving so you can see that the e-mails are being sent. Maybe it's a simple spam filter issue.

    Good luck sorting this! Obviously you can start a new thread if you're still having trouble, this isn't the right thread for it anymore.

    All the best..

    Conor
    ceon

  4. #4
    Join Date
    Aug 2008
    Posts
    50
    Plugin Contributions
    0

    Default

    Hi Connor,

    Thanks for replying.

    Yes i'm using the latest version, the problem is mydomain.com/blog/index.php works but not /blog, somehow the mod is still trying to rewrite this, wheras I'm just wanting to use a htaccess for this.

    Thanks

  5. #5
    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 bigsy85 View Post
    Yes i'm using the latest version, the problem is mydomain.com/blog/index.php works but not /blog, somehow the mod is still trying to rewrite this, wheras I'm just wanting to use a htaccess for this.
    You need to make sure you've correctly added the following exclusion condition:

    Code:
    RewriteCond %{REQUEST_URI} !^/blog [NC]
    That will stop anything with /blog at the start from being handled by Ceon URI Mapping.

    All the best...

    Conor
    ceon

  6. #6
    Join Date
    Aug 2008
    Posts
    50
    Plugin Contributions
    0

    Default Re: Ceon URI Mapping v4.x

    Hi Connor,

    Thats been added which is why I'm puzzeled.

    ##############################___

    RewriteRule ^blog(.*)$ /index.php?main_page=blog&$1 [E=VAR1:$1,QSA,L]

    # Don't rewrite any URIs ending with a file extension (ending with .[xxxx])
    RewriteCond %{REQUEST_URI} !\.[a-zA-Z]{2,4}$
    # Don't rewrite admin directory
    RewriteCond %{REQUEST_URI} !^/admin.* [NC]

    # Don't rewrite editors directory
    RewriteCond %{REQUEST_URI} !^/editors.* [NC]
    # Don't rewrite cPanel directories
    RewriteCond %{REQUEST_URI} !/cpanel.* [NC]
    RewriteCond %{REQUEST_URI} !/frontend.* [NC]

    # Don’t rewrite blog directory
    RewriteCond %{REQUEST_URI} !^/blog.* [NC]
    RewriteCond %{REQUEST_URI} !^/wp.* [NC]

    # Handle all other URIs using Zen Cart (index.php)
    RewriteRule (.*) /index.php?%{QUERY_STRING} [L]

    # Do rewrite blog directory
    #RewriteRule ^blog(.*)$ /index.php?main_page=blog&$1 [E=VAR1:$1,QSA,L]
    ########################################__

    Any ideas?

  7. #7
    Join Date
    Aug 2008
    Posts
    50
    Plugin Contributions
    0

    Default Re: Ceon URI Mapping v4.x

    Also worth mentioning if I create a link in the db ceon_uri_mapping for main_page=blog the /blog works but obviously subsequent blog link dont.

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

    image problem Re: Ceon URI Mapping v4.x

    Hi,

    This doesn't look right to me:

    RewriteRule ^blog(.*)$ /index.php?main_page=blog&$1 [E=VAR1:$1,QSA,L]

    If your rewrite software is checking against the path including the starting slash, the above will never match. Maybe try:

    RewriteRule ^/blog(.*)$ /index.php?main_page=blog&$1 [E=VAR1:$1,QSA,L]

    The "^" means "start of", and "$" means "end of".


    Actually, I just realised all this is mostly irrelevant.. why are you rewriting to index.php?main_page??!! That is just you manually calling Zen Cart again then!

    You need to have the rewrite rule for the blog actually use the blog PHP file, not Zen Cart's index.php!!

    The instructions you were given for integrating appear to be wrong.

    All the best...

    Conor
    ceon
    Last edited by conor; 20 Apr 2012 at 03:51 PM.

  9. #9
    Join Date
    Apr 2012
    Posts
    5
    Plugin Contributions
    0

    Default Re: No longer receiving admin order notification emails.

    Quote Originally Posted by conor View Post
    Hi Bruce,

    Maybe check your e-mail settings?

    At least enable E-mail Archiving so you can see that the e-mails are being sent. Maybe it's a simple spam filter issue.

    ceon
    Thanks! You solved it. Google Mail spam folder was the issue. I even had a filter set up to put these messages in a separate inbox. Ceon URI Mapping 4.0.8 worked on first install! I am going straight to the Ceon website to make a donation for the AWESOME addon.

    Cheers,
    Bruce

  10. #10
    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 rudy386 View Post
    ive read thru the faq about template problems and the fix suggested however this was no help
    Sorry but that's not an issue I can help with. The FAQs do indeed have all the info you need, so if you can't fix things using that info you should pay a developer/template designer to do it for you.

    All the best...

    Conor
    ceon

 

 
Page 1 of 2 12 LastLast

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

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