Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

[CONTRIBUTION] Ultimate SEO URLs v2.1 - by Chemo


Recommended Posts

I just installed Ultimate SEO 2-2.2d-10 and am receiving the dreaded 404 error. The website is www.lunareshome.com. It's currently turned off via admin but if you could please look at my configure.php and htaccess file to see what I might have wrong, I would greatly appreciate it. Oh, and it's hosted at godaddy, linux server.

 

define('HTTP_SERVER', 'http://lunareshome.com');

define('HTTPS_SERVER', 'https://lunareshome.com');

define('ENABLE_SSL', true);

define('HTTP_COOKIE_DOMAIN', 'lunareshome.com');

define('HTTPS_COOKIE_DOMAIN', 'lunareshome.com');

define('HTTP_COOKIE_PATH', '/catalog/');

define('HTTPS_COOKIE_PATH', '/catalog/');

define('DIR_WS_HTTP_CATALOG', '/catalog/');

define('DIR_WS_HTTPS_CATALOG', '/catalog/');

define('DIR_WS_IMAGES', 'images/');

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/content/15/6694615/html/catalog/');

define('DIR_FS_DOWNLOAD', DIR_FS_CATALOG . 'download/');

define('DIR_FS_DOWNLOAD_PUBLIC', DIR_FS_CATALOG . 'pub/');

 

 

 

# $Id: .htaccess 1739 2007-12-20 00:52:16Z hpdl $

#

# This is used with Apache WebServers

#

# For this to work, you must include the parameter 'Options' to

# the AllowOverride configuration

#

# Example:

#

# <Directory "/usr/local/apache/htdocs">

# AllowOverride Options

# </Directory>

#

# 'All' with also work. (This configuration is in the

# apache/conf/httpd.conf file)

 

# The following makes adjustments to the SSL protocol for Internet

# Explorer browsers

 

#<IfModule mod_setenvif.c>

# <IfDefine SSL>

# SetEnvIf User-Agent ".*MSIE.*" \

# nokeepalive ssl-unclean-shutdown \

# downgrade-1.0 force-response-1.0

# </IfDefine>

#</IfModule>

 

# If Search Engine Friendly URLs do not work, try enabling the

# following Apache configuration parameter

 

# AcceptPathInfo On

 

# Fix certain PHP values

# (commented out by default to prevent errors occuring on certain

# servers)

 

# php_value session.use_trans_sid 0

# php_value register_globals 1

# Begin Ultimate SEO V2.2d

Options +FollowSymLinks

RewriteEngine On

 

# RewriteBase instructions

# Change RewriteBase dependent on how your shop is accessed as below.

# http://www.lunareshome.com = RewriteBase /

# http://www.lunareshome.com/catalog/ = RewriteBase /catalog/

# http://www.lunareshome.com/catalog/shop/ = RewriteBase /catalog/shop/

 

# Change the following line using the instructions above

 

RewriteBase /catalog/

 

RewriteRule ^(.*)-p-(.*).html$ product_info.php?products_id=$2&%{QUERY_STRING}

RewriteRule ^(.*)-c-(.*).html$ index.php?cPath=$2&%{QUERY_STRING}

RewriteRule ^(.*)-m-(.*).html$ index.php?manufacturers_id=$2&%{QUERY_STRING}

RewriteRule ^(.*)-pi-(.*).html$ popup_image.php?pID=$2&%{QUERY_STRING}

RewriteRule ^(.*)-by-(.*).html$ all-products.php?fl=$2&%{QUERY_STRING}

RewriteRule ^(.*)-t-(.*).html$ articles.php?tPath=$2&%{QUERY_STRING}

RewriteRule ^(.*)-a-(.*).html$ article_info.php?articles_id=$2&%{QUERY_STRING}

RewriteRule ^(.*)-au-(.*).html$ articles.php?authors_id=$2&%{QUERY_STRING}

RewriteRule ^(.*)-pr-(.*).html$ product_reviews.php?products_id=$2&%{QUERY_STRING}

RewriteRule ^(.*)-pri-(.*).html$ product_reviews_info.php?products_id=$2&%{QUERY_STRING}

RewriteRule ^(.*)-f-(.*).html$ faqdesk_info.php?faqdesk_id=$2&%{QUERY_STRING}

RewriteRule ^(.*)-fc-(.*).html$ faqdesk_index.php?faqPath=$2&%{QUERY_STRING}

RewriteRule ^(.*)-fri-(.*).html$ faqdesk_reviews_info.php?faqdesk_id=$2&%{QUERY_STRING}

RewriteRule ^(.*)-fra-(.*).html$ faqdesk_reviews_article.php?faqdesk_id=$2&%{QUERY_STRING}

RewriteRule ^(.*)-i-(.*).html$ information.php?info_id=$2&%{QUERY_STRING}

RewriteRule ^(.*)-links-(.*).html$ links.php?lPath=$2&%{QUERY_STRING}

RewriteRule ^(.*)-pm-([0-9]+).html$ info_pages.php?pages_id=$2&%{QUERY_STRING}

RewriteRule ^(.*)-n-(.*).html$ newsdesk_info.php?newsdesk_id=$2&%{QUERY_STRING}

RewriteRule ^(.*)-nc-(.*).html$ newsdesk_index.php?newsPath=$2&%{QUERY_STRING}

RewriteRule ^(.*)-nri-(.*).html$ newsdesk_reviews_info.php?newsdesk_id=$2&%{QUERY_STRING}

RewriteRule ^(.*)-nra-(.*).html$ newsdesk_reviews_article.php?newsdesk_id=$2&%{QUERY_STRING}

RewriteRule ^(.*)-po-([0-9]+).html$ pollbooth.php?pollid=$2&%{QUERY_STRING}

# End Ultimate SEO V2.2d

Link to comment
Share on other sites

Interesting .. jackmcs has taken the instructions directly from my Ultimate Seo Urls 5 contribution.

 

@jackmcs if you take stuff give credit .. even instructions take time ( well my instructions do as I'm not just taking over other peoples contributions ).

 

to the issue ..

 

My original instructions look like ..

# RewriteBase instructions

# Change RewriteBase dependent on how your shop is accessed as below.

# http://www.mysite.com = RewriteBase /

# http://www.mysite.com/catalog/ = RewriteBase /catalog/

# http://www.mysite.com/catalog/shop/ = RewriteBase /catalog/shop/

 

# Change RewriteBase using the instructions above

RewriteBase /

The instructions in orange tell you how to modify the bit in green.

 

When you visit your shop do you access it as lunareshome.com

 

[edit]

Actually I just visited the site .. it should be ..

 

RewriteBase /

[/edit]

Edited by FWR Media
Link to comment
Share on other sites

I just installed Ultimate SEO 2-2.2d-10 and am receiving the dreaded 404 error. The website is www.lunareshome.com. It's currently turned off via admin but if you could please look at my configure.php and htaccess file to see what I might have wrong, I would greatly appreciate it. Oh, and it's hosted at godaddy, linux server.

 

define('HTTP_COOKIE_DOMAIN', 'lunareshome.com');

define('HTTPS_COOKIE_DOMAIN', 'lunareshome.com');

Your confiugre and .htaccess file are setup correctly, except that the above two lines should be

 

define('HTTP_COOKIE_DOMAIN', '.lunareshome.com');

define('HTTPS_COOKIE_DOMAIN', '.lunareshome.com');

 

though that wouldn't cause your problem. I'm wondering if you have placed the .htaccess file in the root directory, instead of the catalog directory where it should be. If that is correct, be sure to check with your host to make sure mod rewrite is enabled. Godaddy's Linux servers are usually setup that way but it's possible they didn't on yours.

Support Links:

For Hire: Contact me for anything you need help with for your shop: upgrading, hosting, repairs, code written, etc.

Get the latest versions of my addons

Recommended SEO Addons

Link to comment
Share on other sites

Your confiugre and .htaccess file are setup correctly, except that the above two lines should be

 

define('HTTP_COOKIE_DOMAIN', '.lunareshome.com');

define('HTTPS_COOKIE_DOMAIN', '.lunareshome.com');

 

though that wouldn't cause your problem. I'm wondering if you have placed the .htaccess file in the root directory, instead of the catalog directory where it should be. If that is correct, be sure to check with your host to make sure mod rewrite is enabled. Godaddy's Linux servers are usually setup that way but it's possible they didn't on yours.

 

Problem solved. There were 2 htaccess files, one in the root and one in the catalog directory. Once I deleted the one in the root all works now. Thanks!

Link to comment
Share on other sites

Has anyone figured out the breadcrumb problem? If you have a product in multiple categories, and a user goes to the product info page and then "back", it looks in the db and finds the first instance of the product linked to the category instead of where the user actually originated from. Example: I have a candle in category "gifts" and "home decor". in the db the candle is first listed with "gifts", then "home decor". If a user is in home decor->candle, looks at the product candle, then clicks the "back" button, it goes to gifts->candle instead of home decor->candle.

 

Is the workaround to unlink the product so that there is a separate instance in each category?

 

Many thanks!

Link to comment
Share on other sites

Hello.

 

I tried install in my shop but get 500 internal error. need little help :/

 

'PROJECT_VERSION', 'osCommerce Online Merchant v2.2 RC2a');

 

 

Follow my files.

 

# Begin Ultimate SEO V2.2d

Options +FollowSymLinks

RewriteEngine On

 

# RewriteBase instructions

# Change RewriteBase dependent on how your shop is accessed as below.

# http://www.mysite.com = RewriteBase /

# http://www.mysite.com/catalog/ = RewriteBase /catalog/

# http://www.mysite.com/catalog/shop/ = RewriteBase /catalog/shop/

 

# Change the following line using the instructions above

 

RewriteBase /

 

RewriteRule ^(.*)-p-(.*).html$ product_info.php?products_id=$2&%{QUERY_STRING}

RewriteRule ^(.*)-c-(.*).html$ index.php?cPath=$2&%{QUERY_STRING}

RewriteRule ^(.*)-m-(.*).html$ index.php?manufacturers_id=$2&%{QUERY_STRING}

RewriteRule ^(.*)-pi-(.*).html$ popup_image.php?pID=$2&%{QUERY_STRING}

RewriteRule ^(.*)-by-(.*).html$ all-products.php?fl=$2&%{QUERY_STRING}

RewriteRule ^(.*)-t-(.*).html$ articles.php?tPath=$2&%{QUERY_STRING}

RewriteRule ^(.*)-a-(.*).html$ article_info.php?articles_id=$2&%{QUERY_STRING}

RewriteRule ^(.*)-au-(.*).html$ articles.php?authors_id=$2&%{QUERY_STRING}

RewriteRule ^(.*)-pr-(.*).html$ product_reviews.php?products_id=$2&%{QUERY_STRING}

RewriteRule ^(.*)-pri-(.*).html$ product_reviews_info.php?products_id=$2&%{QUERY_STRING}

RewriteRule ^(.*)-f-(.*).html$ faqdesk_info.php?faqdesk_id=$2&%{QUERY_STRING}

RewriteRule ^(.*)-fc-(.*).html$ faqdesk_index.php?faqPath=$2&%{QUERY_STRING}

RewriteRule ^(.*)-fri-(.*).html$ faqdesk_reviews_info.php?faqdesk_id=$2&%{QUERY_STRING}

RewriteRule ^(.*)-fra-(.*).html$ faqdesk_reviews_article.php?faqdesk_id=$2&%{QUERY_STRING}

RewriteRule ^(.*)-i-(.*).html$ information.php?info_id=$2&%{QUERY_STRING}

RewriteRule ^(.*)-links-(.*).html$ links.php?lPath=$2&%{QUERY_STRING}

RewriteRule ^(.*)-pm-([0-9]+).html$ info_pages.php?pages_id=$2&%{QUERY_STRING}

RewriteRule ^(.*)-n-(.*).html$ newsdesk_info.php?newsdesk_id=$2&%{QUERY_STRING}

RewriteRule ^(.*)-nc-(.*).html$ newsdesk_index.php?newsPath=$2&%{QUERY_STRING}

RewriteRule ^(.*)-nri-(.*).html$ newsdesk_reviews_info.php?newsdesk_id=$2&%{QUERY_STRING}

RewriteRule ^(.*)-nra-(.*).html$ newsdesk_reviews_article.php?newsdesk_id=$2&%{QUERY_STRING}

RewriteRule ^(.*)-po-([0-9]+).html$ pollbooth.php?pollid=$2&%{QUERY_STRING}

# End Ultimate SEO V2.2d

 

Configure.php

 

<?php

define('HTTP_SERVER', 'http://www.acquariomarinho.com');

define('HTTPS_SERVER', 'https://www.acquariomarinho.com');

define('ENABLE_SSL', false);

define('HTTP_COOKIE_DOMAIN', 'www.acquariomarinho.com');

define('HTTPS_COOKIE_DOMAIN', 'www.acquariomarinho.com');

define('HTTP_COOKIE_PATH', '');

define('HTTPS_COOKIE_PATH', '');

define('DIR_WS_HTTP_CATALOG', '/');

define('DIR_WS_HTTPS_CATALOG', '/');

define('DIR_WS_IMAGES', 'images/');

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', '/var/www/vhosts/acquariomarinho.com/httpdocs/');

define('DIR_FS_DOWNLOAD', DIR_FS_CATALOG . 'download/');

define('DIR_FS_DOWNLOAD_PUBLIC', DIR_FS_CATALOG . 'pub/');

 

define('DB_SERVER', '127.0.0.1');

define('DB_SERVER_USERNAME', 'XXXXXXX');

define('DB_SERVER_PASSWORD', 'XXXXXXX');

define('DB_DATABASE', 'XXXXXXX');

define('USE_PCONNECT', 'false');

define('STORE_SESSIONS', 'mysql');

// reCAPTCHA - start

define('RECAPTCHA_PUBLIC_KEY', 'XXXXXXXXXXXXXXXXXXXX');

define('RECAPTCHA_PRIVATE_KEY', 'XXXXXXXXXXXXXXX');

define('RECAPTCHA_THEME', 'red'); // red, white, blackglass, clean

// reCAPTCHA - end

?>

Link to comment
Share on other sites

I tried install in my shop but get 500 internal error. need little help :/

 

'PROJECT_VERSION', 'osCommerce Online Merchant v2.2 RC2a');

 

define('HTTP_COOKIE_DOMAIN', 'www.acquariomarinho.com');

define('HTTPS_COOKIE_DOMAIN', 'www.acquariomarinho.com');

define('HTTP_COOKIE_PATH', '');

define('HTTPS_COOKIE_PATH', '');

Change the above to

define('HTTP_COOKIE_DOMAIN', '.www.acquariomarinho.com');

define('HTTPS_COOKIE_DOMAIN', '.www.acquariomarinho.com');

define('HTTP_COOKIE_PATH', '/');

define('HTTPS_COOKIE_PATH', '/');

Edited by Jack_mcs

Support Links:

For Hire: Contact me for anything you need help with for your shop: upgrading, hosting, repairs, code written, etc.

Get the latest versions of my addons

Recommended SEO Addons

Link to comment
Share on other sites

Has anyone figured out the breadcrumb problem? If you have a product in multiple categories, and a user goes to the product info page and then "back", it looks in the db and finds the first instance of the product linked to the category instead of where the user actually originated from. Example: I have a candle in category "gifts" and "home decor". in the db the candle is first listed with "gifts", then "home decor". If a user is in home decor->candle, looks at the product candle, then clicks the "back" button, it goes to gifts->candle instead of home decor->candle.

 

 

Many thanks!

 

RESOLVED! so, one of the main problems i had was that i could never get the cpath setting to work (which solves the above problem), regardless of what it was set to in admin. What I found is that I had a Product Listing contribution that has a setting in product_listing.php up at the top ==> $cat_path = false; // set to true to include category paths in urls. once this flag was changed the cpath settings worked and thus all the breadcrumb problem was fixed.

Link to comment
Share on other sites

Is there a way to define the desired item URL? I have some items that are generating improperly. For example I have a two-way widget that is coming out just widget. The two-way keywords define the item better than just a widget.

End of line.

Link to comment
Share on other sites

Is there a way to define the desired item URL? I have some items that are generating improperly. For example I have a two-way widget that is coming out just widget. The two-way keywords define the item better than just a widget.

Try lowering the short word setting.

Support Links:

For Hire: Contact me for anything you need help with for your shop: upgrading, hosting, repairs, code written, etc.

Get the latest versions of my addons

Recommended SEO Addons

Link to comment
Share on other sites

Hi, i've just installed the newest version of USU, someone told me this creates a double up in pages...

 

Is this still the issue, I see theres a 301 direct in the settings....

 

So do i have to do anything or not??

 

Thanks for your help!

 

Jono

What's the "latest version?" What does "double up" mean?

Support Links:

For Hire: Contact me for anything you need help with for your shop: upgrading, hosting, repairs, code written, etc.

Get the latest versions of my addons

Recommended SEO Addons

Link to comment
Share on other sites

the lasted release update of your contribution...

 

 

as for double up's google doesn't like dupilcate content and someone said this creates double url's for the same content... Ie old url + new url... so my question is do I have to do something so that theres no double ups of same information...

Link to comment
Share on other sites

also "

NOTE: In any page in which you make the change to the title for Header Tags,

you should also locate the line containing HEADING_TITLE, remove the

pageHeading class and add the h1 tags as above."

 

not quite sure what this means....

 

any pages meaning what pages... ??? lil confused any others we do this too??? is there any others?

Link to comment
Share on other sites

the lasted release update of your contribution...

There are many versions of this contribution. You need to be speific and state the version number or the answer you get may not apply.

 

as for double up's google doesn't like dupilcate content and someone said this creates double url's for the same content... Ie old url + new url... so my question is do I have to do something so that theres no double ups of same information...

This contribution doesn't have anything to do with that.

Support Links:

For Hire: Contact me for anything you need help with for your shop: upgrading, hosting, repairs, code written, etc.

Get the latest versions of my addons

Recommended SEO Addons

Link to comment
Share on other sites

also "

NOTE: In any page in which you make the change to the title for Header Tags,

you should also locate the line containing HEADING_TITLE, remove the

pageHeading class and add the h1 tags as above."

 

not quite sure what this means....

 

any pages meaning what pages... ??? lil confused any others we do this too??? is there any others?

I thnk you may be confused about what contribution you are using. This is the support thread for Ultimage SEO V2.

Support Links:

For Hire: Contact me for anything you need help with for your shop: upgrading, hosting, repairs, code written, etc.

Get the latest versions of my addons

Recommended SEO Addons

Link to comment
Share on other sites

HELP!!!

 

Installed the SEO URL and all works correct, no error with installing and tessting.

Thill i hit the admin section and de SEO URLs shows like this.

Now all the headers of boxes are gone as well.

 

What could be wrong here?

 

 

SEO URLs

Titel Waarde Actie

W³±czyæ SEO URLs? true

Czy dodaæ cPath do adresu URL produktu? false Informatie

Czy dodaæ nazwê podkategorii do adresu URL produktu? false Informatie

Czy dodaæ nazwê podkategorii do adresu URL kategorii? false Informatie

Filtr krótkich s³ów 3 Informatie

Poprawno¶æ W3C dla adresów URL? true Informatie

Pamiêæ podrêczna cache dla SEO? true Informatie

Pamiêæ podrêczna cache dla adresów URL produktów? true Informatie

Pamiêæ podrêczna cache dla adresów URL kategorii? true Informatie

Pamiêæ podrêczna cache dla adresów URL producentów? true Informatie

Pamiêæ podrêczna cache dla adresów URL artyku³ów? false Informatie

Pamiêæ podrêczna cache dla adresów URL tematów artyku³ów? false Informatie

Pamiêæ podrêczna cache dla adresów URL czêsto zadawanych pytañ F false Informatie

Pamiêæ podrêczna cache dla adresów URL stron informacyjnych? false Informatie

Pamiêæ podrêczna cache dla adresów URL menad¿era linków? false Informatie

Pamiêæ podrêczna cache dla adresów URL Newsów? false Informatie

Pamiêæ podrêczna cache dla adresów URL kategorii Newsów? false Informatie

Pamiêæ podrêczna cache dla adresów URL ankiet? false Informatie

Pamiêæ podrêczna cache dla adresów URL edytora stron? false Informatie

Automatyczne przekierowania? true Informatie

U¿ycie Header Tags SEO jako nazwy? false Informatie

Tryb testowy? false Informatie

Format SEO URL Rewrite Informatie

Konwersja znaków specjalnych Informatie

Czy usun±æ wszystkie nie-alphanumeryczne znaki? false Informatie

Czy zresetowaæ pamiêæ podrêczn± SEO? false Informatie

Odinstaluj Ultimate SEO false Informatie

Link to comment
Share on other sites

HELP!!!

 

Installed the SEO URL and all works correct, no error with installing and tessting.

Thill i hit the admin section and de SEO URLs shows like this.

Now all the headers of boxes are gone as well.

 

What could be wrong here?

Looks like you installed the Polish version. You'll need to remove and reinstall. See the many previous psots regarding this for more details.

Support Links:

For Hire: Contact me for anything you need help with for your shop: upgrading, hosting, repairs, code written, etc.

Get the latest versions of my addons

Recommended SEO Addons

Link to comment
Share on other sites

Hi Jack :-)

I have installed v2.2d some weeks ago, everything is fine, but just now i noticed 1 little issue: google lists 2 links about the same product of my store, the 1st link ends with i.e. ...-p-428.html (which is the link to my product page) and the 2nd link ends with i.e. ...-pi-428.html (which is the link to the main photo of my product page). Is this good or bad? And if bad, how can i correct it?

Edited by Vassilis
Link to comment
Share on other sites

Hi Jack :-)

I have installed v2.2d some weeks ago, everything is fine, but just now i noticed 1 little issue: google lists 2 links about the same product of my store, the 1st link ends with i.e. ...-p-428.html (which is the link to my product page) and the 2nd link ends with i.e. ...-pi-428.html (which is the link to the main photo of my product page). Is this good or bad? And if bad, how can i correct it?

It's not good. You may rank well for such a page but when the searcher gets to your site and just sees an image, they will just leave. You should add a no index, no follow tag to the popup files to prevent that. This isn't a matter related to this topic though so if you have a follow up question, please open its own thread in the general forum.

Support Links:

For Hire: Contact me for anything you need help with for your shop: upgrading, hosting, repairs, code written, etc.

Get the latest versions of my addons

Recommended SEO Addons

Link to comment
Share on other sites

Xmmm ok Jack, thanx for the info, i will look around for the ways to fix it :-)

You're welcome. But to be clear, I provided the way to fix it.

Edited by Jack_mcs

Support Links:

For Hire: Contact me for anything you need help with for your shop: upgrading, hosting, repairs, code written, etc.

Get the latest versions of my addons

Recommended SEO Addons

Link to comment
Share on other sites

Okay here we go I have been at this for hours looking for my answer.

 

Problem is I can not add products to the shopping cart when SEOs are turned on...

 

Turned off site works great....

 

 

Here is the example of my url and button add to cart with SEOs turned on

 

http://test.obteamsports.com/batters-face-buard-with-blackout-technology-p-1266.html?action=add_product <--- does not work just sends me back to my product page

 

<form name="cart_quantity" action="http://test.obteamsports.com/batters-face-buard-with-blackout-technology-p-1266.html?action=add_product" method="post"> <---- View Source Output

 

SEOs turned off I get this which works fine....

 

http://test.obteamsports.com/product_info.php?products_id=1266&action=add <--- add to cart link

 

<form name="cart_quantity" action="http://test.obteamsports.com/product_info.php?products_id=1266&action=add_product" method="post"> <-- View source

 

 

Now I am running this on a WINDOWS BOX using Helicon Rewrite Below is my httpd.ini code

RewriteRule ^(.*)-c-(.*).html$ /index.php\?cPath=$2

RewriteRule ^(.*)-c-(.*).html\?(.*)$ /index.php\?cPath=$2&$3

RewriteRule ^(.*)-p-(.*).html$ /product_info.php\?products_id=$2

RewriteRule ^(.*)-p-(.*).html\?(.*)$ /product_info.php\?products_id=$2&$3

RewriteRule ^(.*)-m-(.*).html$ /index.php\?manufacturers_id=$2

RewriteRule ^(.*)-pi-(.*).html$ /popup_image.php\?pID=$2

RewriteRule ^(.*)-pi-(.*).html\?(.*)$ /popup_image.php\?pID=$2&$3

RewriteRule ^(.*)-t-(.*).html$ /articles.php\?tPath=$2

RewriteRule ^(.*)-a-(.*).html$ /article_info.php\?articles_id=$2

RewriteRule ^(.*)-pr-(.*).html$ /product_reviews.php\?products_id=$2

RewriteRule ^(.*)-pr-(.*).html\?(.*)$ /product_reviews.php\?products_id=$2&$3

RewriteRule ^(.*)-pri-(.*).html$ /product_reviews_info.php\?products_id=$2

RewriteRule ^(.*)-pri-(.*).html\?(.*)$ /product_reviews_info.php\?products_id=$2&$3

RewriteRule ^(.*)-pri-(.*).html\?(.*)$ /product_reviews.php\?products_id=$2&$3

RewriteRule ^(.*)-i-(.*).html$ /information.php\?info_id=$2

 

any help or point in the right direction would be very greatful.... I am so close I can taste it....

 

Thanks,

Craig

Link to comment
Share on other sites

Okay here we go I have been at this for hours looking for my answer.

You'll need to post the required information if you want help:

url

.htaccess file

version of Ultimate SEO being used

Support Links:

For Hire: Contact me for anything you need help with for your shop: upgrading, hosting, repairs, code written, etc.

Get the latest versions of my addons

Recommended SEO Addons

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...