Conor,
That is exactly my point. They WILL NOT. Please, tell me what I need to do to fix this issue. If I have to hire someone else, I will, but I need to tell them what to fix..
thanks!
Conor,
That is exactly my point. They WILL NOT. Please, tell me what I need to do to fix this issue. If I have to hire someone else, I will, but I need to tell them what to fix..
thanks!
Hi,
That's not very nice of them! Obviously they don't know what they are doing and have messed up.
Sorry, I don't know how it's broken so I don't know how to tell you to fix it. This thread is for free support for Ceon URI Mapping, I'm afraid I don't give free support for custom rewrite rules and setups like having landing pages etc., that's all "custom" work.
I'm afraid you will indeed need to hire someone. Talking about such things is banned here though. There's a thread for hiring people somewhere here on the forum.
All the best...
Conor
ceon
This should NOT be a custom install. Specifically, I need to know... .
Did CEON added some code to the .htaccess to have the site redirect to /store? if so, what is the code you added?
Hi,
Clearly it is.
Nope.
You need to make sure that your custom page isn't being used by the EXAMPLE rewrite rule in Ceon URI Mapping.. remember it's called "example" for a reason.. we make no assurance that it'll work on any server setup whatsoever.
You probably do indeed need to add an exclusion or to change the way your landing page is managed.
Sorry, that's as much help as I can give here, I don't have time for custom stuff.
All the best...
Conor
ceon
Last edited by conor; 29 Jun 2012 at 03:55 AM.
thanks!
Hi,
Writing at same time there..
In case you missed that, try adding an exclusion.. just guessing, something like
might work, I'm not sure.. as I said, it all depends on the server setup and what rules are there already etc.Code:RewriteCond %{REQUEST_URI} !^/$
All the best..
Conor
ceon
If you hire someone, you do not need to tell them what to fix.. You need to describe the issue you are having and let them evaluate what they need to do to fix it.. Just simply describe the behavior you are experiencing that you DO NOT want..
BTW, the person who installed you site messed up, and clearly doesn't want to fix it or they don't know how to fix it.. either way they are totally unprofessional..
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.
Can anyone tell me why i am seeing this message after installing Ceon:- http://your_domain.com/includes/temp...ss/css/gss.xsl.
I have changed my domain name for obvious reasons issues are:-
I can view the site map in a web browser
i can build the sitemap / ping the engines
but when i view the sitemap in google i get the above message.
Hi,
You didn't post any message so I haven't a clue what you are talking about.
All the best..
Conor
ceon
Hello, Zen users i'm having a problem getting the ceon uri to work properly. All the files have been modified correctly as the uri installation check is showing no errors. The problem that i'm having is when I check the (Tick this box to have the URI auto-generated for this product.) and go to the product url it takes me to my homepage not to the product. I believe the problem is within my .htaccess file, but i'm not sure. The .htaccess file is located in the sites root directory and this is what my htaccess looks like. I changed the admin folder to custom in the code below. Any help would be greatly appreciated. The site url is http://qualityautowi.com
Code:## 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} !^/custom admin folder [NC] # Don't rewrite editors directory RewriteCond %{REQUEST_URI} !^/editors/ [NC] # Don't rewrite .qidb directory RewriteCond %{REQUEST_URI} !^/\.qidb/ [NC] # Don't rewrite bmz_cache directory RewriteCond %{REQUEST_URI} !^/bmz_cache/ [NC] # Don't rewrite ajax directory RewriteCond %{REQUEST_URI} !^/ajax/ [NC] # Handle all other URIs using Zen Cart (its index.php) RewriteRule .* index.php [QSA,L] ## END CEON URI MAPPING REWRITE RULE