Hi,
Sounds like you have either forgotten to modify includes/functions/html_output.php or have something wrong with your .htaccess which is conflicting.
All the best..
Conor
ceon
Printable View
Hi,
Sounds like you have either forgotten to modify includes/functions/html_output.php or have something wrong with your .htaccess which is conflicting.
All the best..
Conor
ceon
Hello, I just did an install on an otherwise working website.
Version 1.3.9h
I used the core_modified_core files from the 1.3.9d folder.
The site is still working but now my ADMIN isn't. It doesn't even show up! It just displays a blank page. The url stays the same, so it's not redirecting anywhere. I put in the proper code to my .htaccess file and DID change the name of admin folder to the right name (I renamed my admin folder awhile back)
Any suggestions? Please help!
Here's my .htaccess code in case some of the other info may have not mixed with it. (I did already try deleting everything but the ceon code and it didn't work)
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 admin directory
RewriteCond %{REQUEST_URI} !^/NEWADMIN [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]
# Handle all other URIs using Zen Cart (index.php)
RewriteRule .* index.php?%{QUERY_STRING} [L]
# Options +FollowSymlinks
# RewriteEngine on
# rewritecond %{http_host} ^a-sharpscontainers.com [nc]
# rewriterule ^(.*)$ https://www.a-sharpscontainers.com/$1 [r=301,nc]
Options +FollowSymlinks -Indexes
RewriteCond %{THE_REQUEST} ^.*/index.php
RewriteRule ^(.*)index.php$ http://www.a-sharpscontainers.com/$1 [R=301,L]
# Prevent directory viewing and the ability of any scripts to run.
# No script, be it PHP, PERL or whatever, can normally be executed if ExecCGI is disabled.
Options -ExecCGI -Indexes
# -FrontPage-
IndexIgnore .htaccess */.??* *~ *# */HEADER* */README* */_vti*
<Limit GET POST>
#The next line modified by DenyIP
order allow,deny
#The next line modified by DenyIP
#deny from all
allow from all
</Limit>
<Limit PUT DELETE>
order deny,allow
deny from all
</Limit>
AuthName a-sharpscontainers.com
AuthUserFile /home/username/public_html/_vti_pvt/service.pwd
AuthGroupFile /home/username/public_html/_vti_pvt/service.grp
<Files 403.shtml>
order allow,deny
allow from all
</Files>
I was having a lot of problems with my Paypal Express not working. Now after deactivating CEON URI and removing the .htaccess file from the root directory, I finally got it working again.
My problem is that I really want to have the CEON URI working. Everywhere I read, I do not find anyone who has this problem. I thought that the mod should not interfere with the ipn_handler.php file. but it seems to do so.
My htaccess file was very typical... What am I missing?
RewriteEngine On
# Don't rewrite any URIs ending with a file extension (ending with .[xxxxx])
RewriteCond %{REQUEST_URI} !\.[a-zA-Z]{2,5}$ [OR]
RewriteCond %{REQUEST_URI} \.(html|htm|php)$ [NC]
# Don't rewrite admin directory
RewriteCond %{REQUEST_URI} !^/adminblablabla [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]
# Handle all other URIs using Zen Cart (index.php)
RewriteRule .* index.php?%{QUERY_STRING} [L]
Hi,
I think you've forgotten to set the correct value of DIR_FS_ADMIN in your admin/includes/configure.php file.
All the best..
Conor
ceon
Hi,
You can't use a program like Word or Wordpad to create a .htaccess file!
Your file didn't work because it had gunk the like following at the start:
You need to use notepad or some similar text editor when editing text documents.Code:{\rtf1\ansi\ansicpg1252\cocoartf1038\cocoasubrtf350
{\fonttbl\f0\fmodern\fcharset0 Courier;}
{\colortbl;\red255\green255\blue255;}
\vieww9000\viewh8400\viewkind0
\deftab720
\pard\pardeftab720
\f0\fs24 \cf0 RewriteEngine On\
All the best..
Conor
ceon
Hi,
I'm afraid I don't have an answer for you.. the software runs fine with PayPal on several thousand Zen Cart sites.. why just your site is having issues is baffling.
Try changing your .htaccess to
You shouldn't need to rewrite .htm or .php files... it's bad form to use .htm etc. at the end of static URIs.Code: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 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]
# Handle all other URIs using Zen Cart (index.php)
RewriteRule .* index.php [QSA,L]
Also, make sure you are using version 3.8.0.
Hopefully that helps.
All the best..
Conor
ceon