Hi all !
This is driving me nuts, I’m checking my google webmaster account today and notice I have over 2000 crawl errors, the way I see it this can not be good for SEO so now I’m in desperate need of a fix.
the first few hundred errors are being caused by the extra ’ in the domain name t
See image for some of the errors or the following link [url]http://www.axjewelry.com/images/errors.csv[/url] for a complete list of all the errors.
Iv’e recently moved hosts and updated my site to V2.1.2 with a large amount of items dropped which would account for some of the errors.
remove '
from axjewelry.com/'closeouts/
Can you post the code of your ‘config.local.php’ file?
[quote name=‘JesseLeeStringer’]remove '
from axjewelry.com/'closeouts/
[/QUOTE]
Thanks for the reply
I can’t figure out where it’s getting that extra ’ from, closeouts seems to be the only category receiving that extra ’
Most likely because the category itself now has a single quote in the SEO url. Goto the Category → Addons → SEO Name.
[quote name=‘indy0077’]Can you post the code of your ‘config.local.php’ file?[/QUOTE]
```php
/***************************************************************************
-
*
- Copyright (c) 2004 Simbirsk Technologies Ltd. All rights reserved. *
-
*
- This is commercial software, only users who have purchased a valid *
- license and accept to the terms of the License Agreement can install *
- and use this program. *
-
*
****************************************************************************
- PLEASE READ THE FULL TEXT OF THE SOFTWARE LICENSE AGREEMENT IN THE *
- “copyright.txt” FILE PROVIDED WITH THIS DISTRIBUTION PACKAGE. *
***************************************************************************/
//
// $Id: config.local.php 11039 2010-10-27 12:43:28Z 2tl $
//
if ( !defined(‘AREA’) ) { die(‘Access denied’); }
/
- PHP options
/
// Disable notices displaying
error_reporting(E_ALL ^ E_NOTICE);
if (version_compare(PHP_VERSION, ‘5.3.0’, ‘>=’)) {
error_reporting(error_reporting() & ~E_DEPRECATED);
}
// Set maximum memory limit
@ini_set(‘memory_limit’, ‘512M’);
// Set maximum time limit for script execution
@set_time_limit(3600);
/
- Database connection options
/
$config[‘db_host’] = ‘localhost’;
$config[‘db_name’] = ‘-------’;
$config[‘db_user’] = ‘-----------’;
$config[‘db_password’] = ‘---------’;
$config[‘db_type’] = ‘mysqli’;
/
- Script location options
*
- Example:
- Your url is http://www.yourcompany.com/store/cart
- $config[‘http_host’] = ‘www.yourcompany.com’;
- $config[‘http_path’] = ‘/store/cart’;
-
- Your secure url is https://secure.yourcompany.com/secure_dir/cart
- $config[‘https_host’] = ‘secure.yourcompany.com’;
- $config[‘https_path’] = ‘/secure_dir/cart’;
*
/
// Host and directory where software is installed on no-secure server
$config[‘http_host’] = ‘www.axjewelry.com’;
$config[‘http_path’] = ‘’;
// Host and directory where software is installed on secure server
$config[‘https_host’] = ‘www.axjewelry.com’;
$config[‘https_path’] = ‘’;
/
- Misc options
*/
// Names of index files for administrative and customer areas
$config[‘admin_index’] = ‘admit.php’;
$config[‘customer_index’] = ‘index.php’;
// DEMO mode
$config[‘demo_mode’] = false;
// Tweaks
$config[‘tweaks’] = array (
‘js_compression’ => false, // enables compession to reduce size of javascript files
‘check_templates’ => true, // disables templates checking to improve template engine speed
‘inline_compilation’ => true, // compiles nested templates in one file
‘anti_csfr’ => false, // protect forms from CSFR attacks (experimental)
‘disable_ajax_preload’ => false, // used to disable ajax preload for speed-up admin area
‘disable_block_cache’ => false, // used to disable block cache
);
// Cache backend
// Available backends: file, sqlite, mysql, shmem
// To use sqlite cache the “sqlite3” PHP module should be installed
// To use shmem cache the “shmop” PHP module should be installed
$config[‘cache_backend’] = ‘file’;
// Key for sensitive data encryption
$config[‘crypt_key’] = ‘YOURVERYSECRETKEY’;
// Database tables prefix
define(‘TABLE_PREFIX’, ‘cscart_’);
// Default permissions for newly created files and directories
define(‘DEFAULT_FILE_PERMISSIONS’, 0666);
define(‘DEFAULT_DIR_PERMISSIONS’, 0777);
// Developer configuration file
if (file_exists(DIR_ROOT . ‘/local_conf.php’)) {
include(DIR_ROOT . ‘/local_conf.php’);
}
define(‘AUTH_CODE’, ‘-------------’);
?>
```
[quote name=‘JesseLeeStringer’]Most likely because the category itself now has a single quote in the SEO url. Goto the Category → Addons → SEO Name.[/QUOTE]
Checked that already nothing there.
PM your store details and I’ll have a look from there.
J.
[quote name=‘JesseLeeStringer’]PM your store details and I’ll have a look from there.
J.[/QUOTE]
message sent
Looks like it’s been incorrectly linked from somewhere. I suggest that you look into your SQL database for %'closeout%
The crawl errors would be natural in this context as it cannot crawl a URL that does not exist.
J.
PS: You can remove the account now.
[quote name=‘JesseLeeStringer’]Looks like it’s been incorrectly linked from somewhere. I suggest that you look into your SQL database for %'closeout%
The crawl errors would be natural in this context as it cannot crawl a URL that does not exist.
J.
PS: You can remove the account now.[/QUOTE]
THANKS !! will take a look at my database