Page 96 of 245 FirstFirst ... 46869495969798106146196 ... LastLast
Results 951 to 960 of 2445
  1. #951
    Join Date
    May 2009
    Posts
    413
    Plugin Contributions
    0

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

    Hi,

    I'm having the same issue that torvista described here. I'm using Ceon URI Mapping - UMM Edition v4.4.1 with Ceon URI Mappings Manager 1.4.1

    Has anyone managed to find a fix for this yet?

    Thanks

  2. #952
    Join Date
    Feb 2006
    Posts
    230
    Plugin Contributions
    0

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

    Hi, I am using version 4.4.1 w/ zen 1.3.9h.
    When I click on a category tree link I get the following message:
    ---------------------------
    Not Found

    The requested URL /Classic-Formulas was not found on this server.
    Apache Server at www.sourceforherbs.com Port 80
    --------------------------------------------------------

    The url in the address bar is "http://www.sourceforherbs.com/Classic-Formulas"

    What's my problem???

  3. #953
    Join Date
    Dec 2010
    Location
    UK
    Posts
    1,771
    Plugin Contributions
    3

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

    Quote Originally Posted by marvin View Post
    Hi, I am using version 4.4.1 w/ zen 1.3.9h.
    When I click on a category tree link I get the following message:
    ---------------------------
    Not Found

    The requested URL /Classic-Formulas was not found on this server.
    Apache Server at www.sourceforherbs.com Port 80
    --------------------------------------------------------

    The url in the address bar is "http://www.sourceforherbs.com/Classic-Formulas"

    What's my problem???
    Starting with the most obvious, have you ticked the box within each category to have the url rewritten?

  4. #954
    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
    Hi, I am using version 4.4.1 w/ zen 1.3.9h.
    When I click on a category tree link I get the following message:
    ---------------------------
    Not Found

    The requested URL /Classic-Formulas was not found on this server.
    Apache Server at www.sourceforherbs.com Port 80
    --------------------------------------------------------

    The url in the address bar is "http://www.sourceforherbs.com/Classic-Formulas"

    What's my problem???
    Most common reasons could be one of two things:

    1. You've not followed all of the installation instructions (did you install ALL of the required files for this add-on to work properly?)
    2. Your .htaccess file is missing or configured incorrectly
    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. #955
    Join Date
    Feb 2006
    Posts
    230
    Plugin Contributions
    0

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

    I did tick off and save the static urls in my categories, mfg, ezpages, products.
    I believe I did install all the files since I ran the two checks in the Config./modules and they found no problems.
    I copied the htacces rewrite rules to my .htaccess file - see below.
    Here is the htaccess file

    #
    # @copyright Copyright 2003-2010 Zen Cart Development Team
    # @license http://www.zen-cart.com/license/2_0.txt GNU Public License V2.0
    # @version $Id: .htaccess 16111 2010-04-29 22:39:02Z drbyte $
    #

    ## the following line is needed to allow Download-By-Redirect to work
    Options +FollowSymLinks

    #
    # This is used with Apache WebServers
    #
    # The following blocks direct HTTP requests to all filetypes in this directory recursively, except certain approved exceptions
    # It also prevents the ability of any scripts to run. No type of script, be it PHP, PERL or whatever, can normally be executed if ExecCGI is disabled.
    # Will also prevent people from seeing what is in the dir. and any sub-directories
    #
    # For this to work, you must include either 'All' or at least: 'Limit' and 'Indexes' parameters to the AllowOverride configuration in your apache/conf/httpd.conf file.
    # Additionally, if you want the added protection offered by the OPTIONS directive below, you'll need to add 'Options' to the AllowOverride list, if 'All' is not specified.
    # Example:
    #<Directory "/usr/local/apache/htdocs">
    # AllowOverride Limit Options Indexes
    #</Directory>
    ###############################

    # deny *everything*
    <FilesMatch ".*">
    Order Allow,Deny
    Deny from all
    </FilesMatch>

    # but now allow just *certain* necessary files:
    <FilesMatch ".*\.(zip|ZIP|pdf|PDF|mp3|MP3|swf|SWF|wma|WMA|wmv|WMV)$">
    Order Allow,Deny
    Allow from all

    # tell all downloads to automatically be treated as "save as" instead of launching in an application directly
    # (just uncomment the next 2 lines by removing the '#'):
    # ForceType application/octet-stream
    # Header set Content-Disposition attachment
    </FilesMatch>

    IndexIgnore */*


    ## NOTE: If you want even greater security to prevent hackers from running scripts in this folder, uncomment the following line (if your hosting company will allow you to use OPTIONS):
    # OPTIONS -Indexes -ExecCGI

    ##BEGIN CEON REWRITE

    # 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 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 .* index.php [QSA,L]

    ## END CEON URI MAPPING REWRITE RULE

  6. #956
    Join Date
    Mar 2007
    Location
    Oregon
    Posts
    152
    Plugin Contributions
    0

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

    I'm using CEON URI mapping, and installed Word Press into a sub-directory of my site. Whe I activated Permalinks in Word Press it immiediately crashed. I have since found that If I deactivate the .htaccess file I am using to make CEON URI work, then my blog comes up. But of course at that point, my main site goes down.

    Is there something I could add to the main site's .htaccess to make it not affect the Word Press sub-directory?

  7. #957
    Join Date
    Feb 2006
    Posts
    230
    Plugin Contributions
    0

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

    Can someone please help???

    Quote Originally Posted by marvin View Post
    I did tick off and save the static urls in my categories, mfg, ezpages, products.
    I believe I did install all the files since I ran the two checks in the Config./modules and they found no problems.
    I copied the htacces rewrite rules to my .htaccess file - see below.
    Here is the htaccess file

    #
    # @copyright Copyright 2003-2010 Zen Cart Development Team
    # @license http://www.zen-cart.com/license/2_0.txt GNU Public License V2.0
    # @version $Id: .htaccess 16111 2010-04-29 22:39:02Z drbyte $
    #

    ## the following line is needed to allow Download-By-Redirect to work
    Options +FollowSymLinks

    #
    # This is used with Apache WebServers
    #
    # The following blocks direct HTTP requests to all filetypes in this directory recursively, except certain approved exceptions
    # It also prevents the ability of any scripts to run. No type of script, be it PHP, PERL or whatever, can normally be executed if ExecCGI is disabled.
    # Will also prevent people from seeing what is in the dir. and any sub-directories
    #
    # For this to work, you must include either 'All' or at least: 'Limit' and 'Indexes' parameters to the AllowOverride configuration in your apache/conf/httpd.conf file.
    # Additionally, if you want the added protection offered by the OPTIONS directive below, you'll need to add 'Options' to the AllowOverride list, if 'All' is not specified.
    # Example:
    #<Directory "/usr/local/apache/htdocs">
    # AllowOverride Limit Options Indexes
    #</Directory>
    ###############################

    # deny *everything*
    <FilesMatch ".*">
    Order Allow,Deny
    Deny from all
    </FilesMatch>

    # but now allow just *certain* necessary files:
    <FilesMatch ".*\.(zip|ZIP|pdf|PDF|mp3|MP3|swf|SWF|wma|WMA|wmv|WMV)$">
    Order Allow,Deny
    Allow from all

    # tell all downloads to automatically be treated as "save as" instead of launching in an application directly
    # (just uncomment the next 2 lines by removing the '#'):
    # ForceType application/octet-stream
    # Header set Content-Disposition attachment
    </FilesMatch>

    IndexIgnore */*


    ## NOTE: If you want even greater security to prevent hackers from running scripts in this folder, uncomment the following line (if your hosting company will allow you to use OPTIONS):
    # OPTIONS -Indexes -ExecCGI

    ##BEGIN CEON REWRITE

    # 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 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 .* index.php [QSA,L]

    ## END CEON URI MAPPING REWRITE RULE

  8. #958
    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 masterrusty View Post
    Is there something I could add to the main site's .htaccess to make it not affect the Word Press sub-directory?
    Yes, you can add a RewriteCond to exclude the WordPress folder from triggering the main RewriteRule.
    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

  9. #959
    Join Date
    Feb 2006
    Posts
    230
    Plugin Contributions
    0

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

    Hey Diva Vocals or anyone can you help, please, with my above posted problem???
    Thanks

  10. #960
    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
    Hey Diva Vocals or anyone can you help, please, with my above posted problem???
    Thanks
    If I had to guess, I'd say that you need to look at your .htaccess file.. Not my area of expertise or I would have weighed in.. Sorry.. I'd say start with removing anything you've added to the file that the add-on generated.
    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.

 

 

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