Urgent help needed for Ultimate SEO URL's!!
Hello,
I followed every instruction to intall Unimate SEO files onto my server. Then the site is completely down. The error information is like this"
1054 Unknown column 'c.parent_id' in 'on clause'
in:
[SELECT c.categories_id as id, c.parent_id, cd.categories_name as cName, cd2.categories_name as pName FROM categories c, categories_description cd LEFT JOIN categories_description cd2 ON c.parent_id=cd2.categories_id AND cd2.language_id='1' WHERE c.categories_id=cd.categories_id AND cd.language_id='1']
When I deleted the include/auto_loaers/configure.ultimate.seo.php, the site came back as normal. Why? What is the problem? How should I fix it?
On my .htaccess file, I have this:
Options +FollowSymLinks
RewriteEngine On
RewriteCond %{HTTP_HOST} ^.loveinrose\.com [nc]
RewriteRule (.*) http://www.loveinrose.com/$1 [R=301,L]
Is this right? Please check my site www.loveinrose.com. Thank you for help!!
Re: Chemo's Ultimate URL's
Hey great! I never got this to work on my old site but I followed the very clear instructions up until the part that said 'to be added'. Course being a bit dim, it took me a while to realise I had to switch all the core switches to on :)
But thanks I have wanted to use this for ages, If I can get it installed, with my monsterous template and god only knows what else I have lurking inside, anyone can!
Strange things happend after I install SEO 3.0
Hello, Masters of SEO:
I just intalled new SEO 3.0 onto my site. Strange things happend:
When you go to my site www.loveinrose.com, no matter you click on "site map", "contact us", "privacy", they all just stay in the home page. Obviously the URL doen't redirect correctly...
Here are my html-output.php
PHP Code:
/**
* Seo Urls zen_href_link replacement
*/
function zen_href_link($page = '', $parameters = '', $connection = 'NONSSL',
$add_session_id = true, $search_engine_safe = true, $static = false,
$use_dir_ws_catalog = true) {
return $GLOBALS['SeoUrl']->buildHrefLink($page, $parameters, $connection,
$add_session_id, $static, $use_dir_ws_catalog);
}
/*
* The HTML href link wrapper function
*/
function zen_href_link_stock($page = '', $parameters = '', $connection = 'NONSSL', $add_session_id = true, $search_engine_safe = true, $static = false, $use_dir_ws_catalog = true) {
global $request_type, $session_started, $http_domain, $https_domain;
And here are my .htaccess file.
PHP Code:
##### NOTE: Replace /shop/ with the relative web path of your catalog in the "Rewrite Base" line below:
Options +FollowSymLinks
RewriteEngine Off
RewriteBase /
# Seo Urls version 3.x
# Don't rewrite real files or directories
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.+)$ index\.php?seo_url=$1&%{QUERY_STRING} [L]
Any problem? Please check my site www.loveinrose.com to see what I mean.
How to stop indexing of pop up images
Searched, searched and searched for the answer to this.
I have been trying to stop google indexing my pop up images when using Ultimate URL's.
i.e. Google is indexing http://www.mysite.com/productname-pi-productnumber.html
It is easy to stop this if Ultimate SEOs is not implemented, by adding popup_image,popup_image_additional in the metatags.php file under ROBOTS_PAGES_TO_SKIP.
Can this be stopped when Ultimate SEOs is implemented? It is obviously critical for SEO as the pop up image is a dead link, which is bad!
Anybody know how to fix this?
Thanks: :frusty:
Re: Chemo's Ultimate URL's
Have you switched all the switches on the admin side? The URL plug ins?
Re: How to stop indexing of pop up images
Quote:
Originally Posted by
focus360
Searched, searched and searched for the answer to this.
I have been trying to stop google indexing my pop up images when using Ultimate URL's.
i.e. Google is indexing
http://www.mysite.com/productname-pi-productnumber.html
It is easy to stop this if Ultimate SEOs is not implemented, by adding popup_image,popup_image_additional in the metatags.php file under ROBOTS_PAGES_TO_SKIP.
Can this be stopped when Ultimate SEOs is implemented? It is obviously critical for SEO as the pop up image is a dead link, which is bad!
Anybody know how to fix this?
Thanks: :frusty:
You might be interested in the following:
1) in the robots.txt file that should be in your root, add
Code:
User-agent: Googlebot-Image
Disallow: /
This will disallow google images to index all the images of your sites.
All your pages will still be indexed though
2) in your .htacess file, add the following:
Code:
RewriteCond %{HTTP_REFERER} ^http://images.google.com$ [NC]
RewriteRule !^403.htm$ - [F,L]
RewriteCond %{HTTP_REFERER} ^http://images.search.yahoo.com$ [NC]
RewriteRule !^403.htm$ - [F,L]
this will prevent anybody accessing your site from google image to see your site
Re: Chemo's Ultimate URL's
hi what is the latest version of the SEO mod and where can I get it?
Re: Chemo's Ultimate URL's
Quote:
Originally Posted by
chris20492002
hi what is the latest version of the SEO mod and where can I get it?
Does it work with EZ pages and where can I view a working site that is using it with the EZ pages and the lastest Zen Cart? I have this SEO mod installed but it doesn't seem to be working for my EZ pages. Is that something I am missing?
EZ page...
Portfolio - http://www.horse-logos.com/index.php...id=3&chapter=0
Thanks!
Re: Chemo's Ultimate URL's
Hi, I have installed both seo_urls_3.0.0-beta1.zip & SEO_fixes_for_3.0.0.b1.zip and my settings are:
Code:
Seo Urls Status On
301 Redirection Status On
Page Base
Default Extension
Url Plugins Core: Manufacturer, Core: Advanced Search, Core: Product: Reviews: Info, Core: Product: Reviews: Write, Core: Advanced Search: Result, Core: Default: Skip SSL, Core: EZ Pages, Core: Category, Core: Default, Core: Product, Core: Default Skips, Core: Product: Reviews
Character Plugins Format: Strip Invalid, Format: Lowercase
My .htaccess file is as follows:
Code:
Options +FollowSymLinks
RewriteEngine On
RewriteBase /
# Seo Urls version 3.x
# Don't rewrite real files or directories
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.+)$ index\.php?seo_url=$1&%{QUERY_STRING} [L]
# This will disallow google images to index all the images of your sites.
# All your pages will still be indexed though
RewriteCond %{HTTP_REFERER} ^http://images.google.com$ [NC]
RewriteRule !^403.htm$ - [F,L]
RewriteCond %{HTTP_REFERER} ^http://images.search.yahoo.com$ [NC]
RewriteRule !^403.htm$ - [F,L]
I'm just wondering if anyone has encountered the following in their URL:
mysite.com/gift-certificates-c-57
mysite.com/gift-certificate-p-680
apparently the letter "c" stands for category while "p" stands for product, and the numbers are their ID. Any advise on how to remove these trailing letter-number pair?