Re: Ceon URI Mapping (SEO)
Quote:
Originally Posted by
conor
Hi,
The module allows you to redirect old URIs to new ones by entering "historical" URIs manually in the database.
For the link you described above:
# The URI mapping to be mapped from should be entered in the uri field. (Remember to begin the URI with a slash ‘/’):
/acatalog/Scrapbook_Supplies_Stamping_Supplies.html
# The number representing the language ID this URI mapping applies for should be entered in the language_id field.
# The current_uri field should be set to “0” to make this a “historical” URI.
# The Zen Cart page to be mapped to should be entered in the main_page field. For the category page this is:
index
# The associated_db_id should be entered. This is the ID of the category, which seems to be:
558
# The date/time this URI mapping was added should be set in the date_added field (or just use the “NOW()” SQL function).
The
alternate_uri and
query_string_parameters fields are
not used, they must be left as “NULL”.
That should be all you need to know to get this working. The URIs will redirect using a 301 to the "current" URI (/store/send-payment-only).
All the best...
Conor
ceon
I've been trying to create a lot of 301 redirects on a site I'm developing, and although I am fairly comfortable using phpMyAdmin, I still am unsure about your instructions above.
I accessed my database and see two table that are ceon related; ceon_uri_mappings, and ceon_uri_mappings_configs
when I click on ceon_uri_mappings I see table entries that coincide with what you're describing (uri, alternate_uri, etc.), but I'm unsure how I go about adding an entry manually. Where exactly are we to manually add these 301 redirects?
Thanks in advance for your help.
Re: Ceon URI Mapping (SEO)
I overlooked the fact that I was viewing the "structure" tab, and clicked browse and found all the uri's. I'm assuming this is where they will be entered, correct me if I'm wrong?
Re: Ceon URI Mapping (SEO)
Hi,
Quote:
Originally Posted by
easy3dsource
I overlooked the fact that I was viewing the "structure" tab, and clicked browse and found all the uri's. I'm assuming this is where they will be entered, correct me if I'm wrong?
You click "Insert".
I'm really sorry but I'd ask you not to post a further request about this on this thread.. this thread is for Ceon URI Mapping, not for teaching PHPMyAdmin.
There are lots of guides to PHPMyAdmin on the internet.
However, I'd imagine you should be fine now knowing that you just have to go to the "insert" tab and follow the instructions you reposted.
All the best..
Conor
ceon
Re: Ceon URI Mapping (SEO)
Hi,
Quote:
Originally Posted by
countrycharm
All I can say for you two getter done...........
;) Getting there.. I really do think this will be "the" month.. then I can finally take some time to work on things for money! ;-)
All the best..
Conor
ceon
Re: Ceon URI Mapping (SEO)
Quote:
Originally Posted by
conor
Hi,
;) Getting there.. I really do think this will be "the" month.. then I can finally take some time to work on things for money! ;-)
All the best..
Conor
ceon
**NODS IN AGREEMENT**:yes:
Re: Ceon URI Mapping (SEO)
Hi
Currently I'm using zencrat1.3.9h verson with about 90 products in my catelog. I've also installed the Ceon URI Mapping (SEO) plugin. Everything going good till now. Finally I've installed the Google Merchant Center Feeder(google_base_froogle_feeder_1-9-0).
now I'm facing the issue. Whenever I goo inside Tools >> Google Merchant Center Feeder inside the admin and click confirm for creating the Product feed type, a popup window comes up and displaying my home page with the URL (http://mywebUrl.com/mystore/googlefr...key=544b32e9e0)
Even I've excluded all file's path of Google merchant center feeder inside the Ceon URI Mapping.
contents of my .htaccess file is as follows:
RewriteEngine On
# ONLY rewrite URIs beginning with /zen139h/
RewriteCond %{REQUEST_URI} ^/zen139h/ [NC]
# Don't rewrite any URIs ending with a file extension (ending with .[xxxxx])
#RewriteCond %{REQUEST_URI} !\.[a-z]{2,5}$ [NC]
RewriteCond %{REQUEST_URI} !\.[a-zA-Z]{2,5}$ [OR]
RewriteCond %{REQUEST_URI} \.(html|htm|php)$ [NC]
# Don't rewrite admin directory
RewriteCond %{REQUEST_URI} !^/zen139h/new-admin [NC]
# Don't rewrite editors directory
RewriteCond %{REQUEST_URI} !^/zen139h/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]
Pls help me to resolve this issue.
Thanks
Re: Ceon URI Mapping (SEO)
Hi,
Quote:
Originally Posted by
chandra_prak
Finally I've installed the Google Merchant Center Feeder(google_base_froogle_feeder_1-9-0).
now I'm facing the issue.
You'll probably need to add /zen139h/googlefroogle.php to the list of exclusions.
Please read the section of the configuration documentation about excluding files for more information.
It always helps to check the FAQs before posting! :smartalec:
All the best...
Conor
ceon
Re: Ceon URI Mapping (SEO)
Hi Ceon
I've already excluded /zen139h/googlefroogle.php file. But no joy finally I've excluded all the google feeder file. But still problem not resolved.
Re: Ceon URI Mapping (SEO)
Quote:
Originally Posted by
conor
Hi,
You click "Insert".
I'm really sorry but I'd ask you not to post a further request about this on this thread.. this thread is for Ceon URI Mapping, not for teaching PHPMyAdmin.
There are lots of guides to PHPMyAdmin on the internet.
However, I'd imagine you should be fine now knowing that you just have to go to the "insert" tab and follow the instructions you reposted.
All the best..
Conor
ceon
Thanks for the response. I definitely wasn't looking for phpMyAdmin advice, I just overlooked the fact that I was on the structure tab, and for a second I was unclear about how to create the entries.
That was one of those situations where you ask the question literally seconds before you answer it yourself. Regardless, thanks a lot for the response, and for creating the plugin in the first place!
Re: Ceon URI Mapping (SEO)
Hi,
Quote:
Originally Posted by
chandra_prak
I've already excluded /zen139h/googlefroogle.php file. But no joy finally I've excluded all the google feeder file. But still problem not resolved.
Have you excluded the feed folder from the rewrite rule?
# Don't rewrite feed directory
RewriteCond %{REQUEST_URI} !^/feed [NC]
All the best...
Conor
ceon