Page 97 of 245 FirstFirst ... 47879596979899107147197 ... LastLast
Results 961 to 970 of 2445
  1. #961
    Join Date
    Feb 2012
    Location
    mostly harmless
    Posts
    1,809
    Plugin Contributions
    8

    Default Re: link to order in customer order status email incomplete

    Quote Originally Posted by marvin View Post
    Hey Diva Vocals or anyone can you help, please, with my above posted problem???
    Thanks
    Based upon the fact the returned 404 page appears to be the default Apache 404 page and not Zen Cart's 404 page, it appears you may have placed the CEON generated ".htaccess" code into the wrong ".htaccess" file. If the ".htacess" file was in the root Zen Cart installation folder most requests (including for the URI you posted) would be sent to Zen Cart and Zen Cart's 404 page would be displayed.

    The top of that ".htaccess" file looks like the one in the "images" sub folder. If you accidentally merged the contents with the ".htaccess" file in the "images" sub folder you will want to undo the changes.

    Are you sure you added the rules to the ".htaccess" file in the root Zen Cart installation folder?
    Last edited by lhungil; 10 Jan 2013 at 06:25 PM.
    The glass is not half full. The glass is not half empty. The glass is simply too big!
    Where are the Zen Cart Debug Logs? Where are the HTTP 500 / Server Error Logs?
    Zen Cart related projects maintained by lhûngîl : Plugin / Module Tracker

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

    Default Re: link to order in customer order status email incomplete

    Quote Originally Posted by lhungil View Post
    Based upon the fact the returned 404 page appears to be the default Apache 404 page and not Zen Cart's 404 page, it appears you may have placed the CEON generated ".htaccess" code into the wrong ".htaccess" file. If the ".htacess" file was in the root Zen Cart installation folder most requests (including for the URI you posted) would be sent to Zen Cart and Zen Cart's 404 page would be displayed.

    The top of that ".htaccess" file looks like the one in the "images" sub folder. If you accidentally merged the contents with the ".htaccess" file in the "images" sub folder you will want to undo the changes.

    Are you sure you added the rules to the ".htaccess" file in the root Zen Cart installation folder?
    **nods in agreement**

    Good catch!! I didn't notice that when I looked the .htaccess file marvin posted.. I have to admit I have a tendency to "skim" posts when folks post a WHOLE file versus the trouble section of a file . Re-Reading marvin's original post it looks like he didn't follow the Ceon install instructions correctly and placed the .htaccess rules this add-on generates into the wrong .htaccess file.. This would indeed cause 404 errors..
    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.

  3. #963
    Join Date
    Feb 2006
    Posts
    230
    Plugin Contributions
    0

    Default Re: link to order in customer order status email incomplete

    Thank you both.
    I did add the rewrite rules in the wrong .htaccess file. This was because my httpdocs folder did not have any. I just created the file for the httpdocs folder and uploaded it.

    I still have the same problem when - I click on a category in my category tree.
    - When I do a search for a product and then click on a product to go to its page..

    This is the .htaccess file in my httpdocs folder. (I added in a rewrite rule for aan html extension and put my shop name in the last line in case it was needed)

    ## BEGIN CEON URI MAPPING REWRITE RULE

    RewriteEngine On

    # Don't rewrite any URIs ending with a file extension (ending with .[xxxxx])
    RewriteCond %{REQUEST_URI} !\.[a-z]{2,5}$
    [OR]
    RewriteCond %{REQUEST_URI} \.(html|htm|php)$ [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|3dml)$ [NC]
    # Don't rewrite admin directory
    RewriteCond %{REQUEST_URI} !^/workhere [NC]
    # Don't rewrite editors directory
    RewriteCond %{REQUEST_URI} !^/editors/ [NC]
    # Don't rewrite optional_fields directory
    RewriteCond %{REQUEST_URI} !^/optional_fields/ [NC]
    # Don't rewrite classes directory
    RewriteCond %{REQUEST_URI} !^/classes/ [NC]
    # Don't rewrite feed directory
    RewriteCond %{REQUEST_URI} !^/feed/ [NC]
    # Don't rewrite plesk-stat directory
    RewriteCond %{REQUEST_URI} !^/plesk\-stat/ [NC]
    # Don't rewrite checkout_by_amazon directory
    RewriteCond %{REQUEST_URI} !^/checkout_by_amazon/ [NC]
    # Don't rewrite _docs directory
    RewriteCond %{REQUEST_URI} !^/_docs/ [NC]
    # Don't rewrite picture_library directory
    RewriteCond %{REQUEST_URI} !^/picture_library/ [NC]
    # Don't rewrite sql updates directory
    RewriteCond %{REQUEST_URI} !^/sql\ updates/ [NC]
    # Don't rewrite extra_datafiles directory
    RewriteCond %{REQUEST_URI} !^/extra_datafiles/ [NC]
    # Don't rewrite auto_loaders directory
    RewriteCond %{REQUEST_URI} !^/auto_loaders/ [NC]
    # Handle all other URIs using Zen Cart (its index.php)
    RewriteRule .*/sourceforherbs/index.php [QSA,L]

    ## END CEON URI MAPPING REWRITE RULE

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

    Default Re: link to order in customer order status email incomplete

    I'd start by removing any rules not generated by the add-on and just see if that works 1st before you add new rules..

    Quote Originally Posted by marvin View Post
    Thank you both.
    I did add the rewrite rules in the wrong .htaccess file. This was because my httpdocs folder did not have any. I just created the file for the httpdocs folder and uploaded it.

    I still have the same problem when - I click on a category in my category tree.
    - When I do a search for a product and then click on a product to go to its page..

    This is the .htaccess file in my httpdocs folder. (I added in a rewrite rule for aan html extension and put my shop name in the last line in case it was needed)

    ## BEGIN CEON URI MAPPING REWRITE RULE

    RewriteEngine On

    # Don't rewrite any URIs ending with a file extension (ending with .[xxxxx])
    RewriteCond %{REQUEST_URI} !\.[a-z]{2,5}$
    [OR]
    RewriteCond %{REQUEST_URI} \.(html|htm|php)$ [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|3dml)$ [NC]
    # Don't rewrite admin directory
    RewriteCond %{REQUEST_URI} !^/workhere [NC]
    # Don't rewrite editors directory
    RewriteCond %{REQUEST_URI} !^/editors/ [NC]
    # Don't rewrite optional_fields directory
    RewriteCond %{REQUEST_URI} !^/optional_fields/ [NC]
    # Don't rewrite classes directory
    RewriteCond %{REQUEST_URI} !^/classes/ [NC]
    # Don't rewrite feed directory
    RewriteCond %{REQUEST_URI} !^/feed/ [NC]
    # Don't rewrite plesk-stat directory
    RewriteCond %{REQUEST_URI} !^/plesk\-stat/ [NC]
    # Don't rewrite checkout_by_amazon directory
    RewriteCond %{REQUEST_URI} !^/checkout_by_amazon/ [NC]
    # Don't rewrite _docs directory
    RewriteCond %{REQUEST_URI} !^/_docs/ [NC]
    # Don't rewrite picture_library directory
    RewriteCond %{REQUEST_URI} !^/picture_library/ [NC]
    # Don't rewrite sql updates directory
    RewriteCond %{REQUEST_URI} !^/sql\ updates/ [NC]
    # Don't rewrite extra_datafiles directory
    RewriteCond %{REQUEST_URI} !^/extra_datafiles/ [NC]
    # Don't rewrite auto_loaders directory
    RewriteCond %{REQUEST_URI} !^/auto_loaders/ [NC]
    # Handle all other URIs using Zen Cart (its index.php)
    RewriteRule .*/sourceforherbs/index.php [QSA,L]

    ## END CEON URI MAPPING REWRITE RULE
    Last edited by DivaVocals; 10 Jan 2013 at 08:12 PM.
    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.

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

    Default Re: link to order in customer order status email incomplete

    Quote Originally Posted by marvin View Post
    Thank you both.
    I did add the rewrite rules in the wrong .htaccess file. This was because my httpdocs folder did not have any. I just created the file for the httpdocs folder and uploaded it.

    I still have the same problem when - I click on a category in my category tree.
    - When I do a search for a product and then click on a product to go to its page..
    Two things:

    1. The readme has LOTS of great information including
      Read the instructions given in that panel and copy and paste the new Rewrite Rule to the store's .htaccess file/VirtualHost directive, as desired.
    2. If you want to add additional rules to your .htaccess file, the readme also includes LOTs of good information on how to do this. (doesn't cover EVERY new rule, just the most common ones)
    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. #966
    Join Date
    Feb 2006
    Posts
    230
    Plugin Contributions
    0

    Default Re: link to order in customer order status email incomplete

    I did as you suggested (removed my changes and used the original .htaccess file used created by the module) and still get the same error message.

    PS. I have read thru the documentation - configuration, Installation, etc over and over and still the same problem.
    Last edited by marvin; 10 Jan 2013 at 08:26 PM. Reason: addition

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

    Default Re: link to order in customer order status email incomplete

    Quote Originally Posted by marvin View Post
    I did as you suggested (removed my changes and used the original .htaccess file used created by the module) and still get the same error message.

    PS. I have read thru the documentation - configuration, Installation, etc over and over and still the same problem.
    Are you SURE that this is the rules that were generated?? I ask because some of these rules are for folders that would be found in the shop/includes folder (classes, extra_datafiles, auto_loaders, etc). You also have folders that look like they do not belong to any add-on and are extra folders in your shop root..

    I'd clean up your shop folders and have Ceon regenerate your .htaccess file.. and try that one instead..
    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. #968
    Join Date
    Feb 2006
    Posts
    230
    Plugin Contributions
    0

    Default Re: link to order in customer order status email incomplete

    Yes, there were folders from prior modules. I cleaned them up and reran the Installation check. It still had no errors. I used the new .htaccess file and still the same error.

    Here is the file:
    ## BEGIN CEON URI MAPPING REWRITE RULE

    RewriteEngine On

    # 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|3dml)$ [NC]
    # Don't rewrite admin directory
    RewriteCond %{REQUEST_URI} !^/workhere [NC]
    # Don't rewrite editors directory
    RewriteCond %{REQUEST_URI} !^/editors/ [NC]
    # Don't rewrite optional_fields directory
    RewriteCond %{REQUEST_URI} !^/optional_fields/ [NC]
    # Don't rewrite feed directory
    RewriteCond %{REQUEST_URI} !^/feed/ [NC]
    # Don't rewrite checkout_by_amazon directory
    RewriteCond %{REQUEST_URI} !^/checkout_by_amazon/ [NC]
    # Don't rewrite _docs directory
    RewriteCond %{REQUEST_URI} !^/_docs/ [NC]
    # Don't rewrite picture_library directory
    RewriteCond %{REQUEST_URI} !^/picture_library/ [NC]
    # Don't rewrite sql updates directory
    RewriteCond %{REQUEST_URI} !^/sql\ updates/ [NC]
    # Handle all other URIs using Zen Cart (its index.php)
    RewriteRule .* index.php [QSA,L]

    ## END CEON URI MAPPING REWRITE RULE

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

    Default Re: link to order in customer order status email incomplete

    Wish I could be of more help.. the issue is with your .htaccess file.. But this is not my area of expertise.. Hopefully someone else can help.. The only thing that I can think of is that your httpdocs folder is not where you Zen Cart store's root is.. If this is the case, your .htaccess file is still not in the right place.. (Can't see your store.. so I am guessing)
    Last edited by DivaVocals; 10 Jan 2013 at 11:21 PM.
    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.

  10. #970
    Join Date
    Feb 2006
    Posts
    230
    Plugin Contributions
    0

    Default Re: link to order in customer order status email incomplete

    My website is www.sourceforherbs.com.
    Hopefully you can spot something in the source flie.
    Thanks, Marvin

 

 

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