Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Ultimate SEO and Froogle installed,


LennyNero

Recommended Posts

Posted

Hi there,

 

in the shop at http://www.mode-ausstatter.de I installed serveral contributions. IMportant for my matter are the Ultimate SEO (which works fine, at least as far as I can tell), Froogle-Feeder and a Meta-Tag Generator.

 

However: Google only takes the first site, and none behind.

 

Any ideas?

 

Btw.... robots.txt is following:

 

User-agent: *
Disallow: /address_book_process.php 
Disallow: /account.php 
Disallow: /account_edit.php 
Disallow: /account_edit_process.php 
Disallow: /account_history.php 
Disallow: /account_history_info.php 
Disallow: /address_book.php 
Disallow: /checkout_process.php 
Disallow: /advanced_search.php 
Disallow: /advanced_search_result.php 
Disallow: /checkout_address.php 
Disallow: /checkout_confirmation.php 
Disallow: /checkout_payment.php 
Disallow: /checkout_success.php 
Disallow: /conditions.php 
Disallow: /contact_us.php 
Disallow: /create_account.php 
Disallow: /create_account_process.php 
Disallow: /create_account_success.php 
Disallow: /info_shopping_cart.php 
Disallow: /login.php 
Disallow: /logoff.php 
Disallow: /password_forgotten.php 
Disallow: /popup_image.php 
Disallow: /popup_search_help.php 
Disallow: /privacy.php 
Disallow: /product_notifications.php 
Disallow: /product_reviews.php 
Disallow: /product_reviews_info.php 
Disallow: /product_reviews_write.php 
Disallow: /redirect.php 
Disallow: /reviews.php 
Disallow: /shipping.php 
Disallow: /shopping_cart.php 
Disallow: /tell_a_friend.php 
Disallow: /admin/ 
Disallow: /download/ 
Disallow: /includes/ 
Disallow: /pub/

  • 2 weeks later...
Posted
Hi there,

 

in the shop at http://www.mode-ausstatter.de I installed serveral contributions. IMportant for my matter are the Ultimate SEO (which works fine, at least as far as I can tell), Froogle-Feeder and a Meta-Tag Generator.

 

However: Google only takes the first site, and none behind.

 

Any ideas?

 

Btw.... robots.txt is following:

 

User-agent: *
Disallow: /address_book_process.php 
Disallow: /account.php 
Disallow: /account_edit.php 
Disallow: /account_edit_process.php 
Disallow: /account_history.php 
Disallow: /account_history_info.php 
Disallow: /address_book.php 
Disallow: /checkout_process.php 
Disallow: /advanced_search.php 
Disallow: /advanced_search_result.php 
Disallow: /checkout_address.php 
Disallow: /checkout_confirmation.php 
Disallow: /checkout_payment.php 
Disallow: /checkout_success.php 
Disallow: /conditions.php 
Disallow: /contact_us.php 
Disallow: /create_account.php 
Disallow: /create_account_process.php 
Disallow: /create_account_success.php 
Disallow: /info_shopping_cart.php 
Disallow: /login.php 
Disallow: /logoff.php 
Disallow: /password_forgotten.php 
Disallow: /popup_image.php 
Disallow: /popup_search_help.php 
Disallow: /privacy.php 
Disallow: /product_notifications.php 
Disallow: /product_reviews.php 
Disallow: /product_reviews_info.php 
Disallow: /product_reviews_write.php 
Disallow: /redirect.php 
Disallow: /reviews.php 
Disallow: /shipping.php 
Disallow: /shopping_cart.php 
Disallow: /tell_a_friend.php 
Disallow: /admin/ 
Disallow: /download/ 
Disallow: /includes/ 
Disallow: /pub/

 

Remove the session ids from the urls.

 

Go to Admin > Configuration > Sessions > Force cookie use = true

Posted

Could be google just has not indexed the rest of your site yet. It can sometimes take months after being crawled by google to appear in the listings.

 

How long has it been since you installed SEO.

 

The more sites that link to you the more often you will get spidered.

Backup before making changes. Backup before making changes! Backup before making changes!!

 

You did do a backup? eh?

Posted

Could also be that you still have the default text on the main page. Put up some content that reflects your stores products.

Backup before making changes. Backup before making changes! Backup before making changes!!

 

You did do a backup? eh?

Posted
Remove the session ids from the urls.

 

Go to Admin > Configuration > Sessions > Force cookie use = true

 

 

Thanks for that advice. I wil try that out and report the results.

 

 

Could be google just has not indexed the rest of your site yet. It can sometimes take months after being crawled by google to appear in the listings.

 

How long has it been since you installed SEO.

 

The more sites that link to you the more often you will get spidered.

 

 

 

Must be something like 8 weeks.

Posted
Thanks for that advice. I wil try that out and report the results.

 

Okay, now I removed the Session IDs... now I get the "Cookie Usage" warning.

 

Here the configure.php:

 

<?php
/*
 osCommerce, Open Source E-Commerce Solutions
 http://www.oscommerce.com

 Copyright (c) 2003 osCommerce

 Released under the GNU General Public License
*/

// Define the webserver and path parameters
// * DIR_FS_* = Filesystem directories (local/physical)
// * DIR_WS_* = Webserver directories (virtual/URL)
 define('HTTP_SERVER', 'http://www.mode-ausstatter.de'); // eg, http://localhost - should not be empty for productive servers
 define('HTTPS_SERVER', 'https://www.mode-ausstatter.de'); // eg, http://localhost - should not be empty for productive servers
 define('ENABLE_SSL', false); // secure webserver for checkout procedure?
 define('HTTP_COOKIE_DOMAIN', '.mode-ausstatter.de');
 define('HTTPS_COOKIE_DOMAIN', '.mode-ausstatter.de');
 define('HTTP_COOKIE_PATH', '/shopping/');
 define('HTTPS_COOKIE_PATH', '/shopping/');/**/

 define('DIR_WS_HTTP_CATALOG', '/');
 define('DIR_WS_HTTPS_CATALOG', '/');
 define('DIR_WS_IMAGES', 'images/');
 define('DIR_WS_IMAGES_MEDIUM', 'images/medium/');
 define('DIR_WS_IMAGES_LARGE', 'images/large/');
 define('DIR_WS_ICONS', DIR_WS_IMAGES . 'icons/');
 define('DIR_WS_INCLUDES', 'includes/');
 define('DIR_WS_BOXES', DIR_WS_INCLUDES . 'boxes/');
 define('DIR_WS_FUNCTIONS', DIR_WS_INCLUDES . 'functions/');
 define('DIR_WS_CLASSES', DIR_WS_INCLUDES . 'classes/');
 define('DIR_WS_MODULES', DIR_WS_INCLUDES . 'modules/');
 define('DIR_WS_LANGUAGES', DIR_WS_INCLUDES . 'languages/');
 define('DIR_WS_DOWNLOAD_PUBLIC', 'pub/');

 define('DIR_FS_CATALOG', '/home/mode-ausstatter/public_html/shopping/');
 define('DIR_FS_DOWNLOAD', DIR_FS_CATALOG . 'download/');
 define('DIR_FS_DOWNLOAD_PUBLIC', DIR_FS_CATALOG . 'pub/');

// define our database connection
 define('DB_SERVER', '***'); // eg, localhost - should not be empty for productive servers
 define('DB_SERVER_USERNAME', '****');
 define('DB_SERVER_PASSWORD', '***');
 define('DB_DATABASE', '****');
 define('USE_PCONNECT', 'false'); // use persistent connections?
 define('STORE_SESSIONS', 'mysql'); // leave empty '' for default handler or set to 'mysql'
?>

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...