Link to home
Start Free TrialLog in
Avatar of jporter80
jporter80Flag for United States of America

asked on

Fix Product URL's in Magento

Im trying to get The URLS to be pretty in magento and i feel like i have the categories working fine but the product urls are still out of whack.

here is the Website:

http://mywaterfilters.com

You can see under the products tab, if you click on one category the url is nice and pretty like this:

http://www.mywaterfilters.com/water-filters/frigidaire-water-filters/

But if you go to one of the products in that category it looks like this:

http://www.mywaterfilters.com/index.php/catalog/product/view/id/215/s/frigidaire-ultrawf-water-filter/category/36/?___store=admin

That particular product should have a url of like:

http://www.mywaterfilters.com/water-filters/frigidaire-water-filters/some-title/

Ive have the base redirect on the .htaccess as: RewriteBase /

I have Webserver Redirects turned on in Configuration -> web - Search engine optimization

and i have rewritten the index.

Also the Admin Url has the "index.php" in the url how do i remove that from the admin url?

Any help would be great.
Avatar of LazyStudent
LazyStudent

Did you go over EVERY step in the URL Rewrites tutorial here: http://www.yireo.com/tutorials/magento/magento-administration/664-fixing-url-rewrites-with-magento ?

From your description it feels like you need to purge core_url_rewrite table and then re-index but there may be many caveats (like wrong URL keys for the products, etc.)

Please let me know if the tutorial helps and if not we'll continue to dig in.

Regarding admin rewrites - here is the thread you may find helpful with examples for .htaccess.
http://www.magentocommerce.com/boards/viewthread/37543/

But just curious - why would you spend your time on beautifying admin URL?
Avatar of jporter80

ASKER

since i posted this i did do that tutorial and purged the core_url_rewrite table.. i can get to the products just fine like this:

http://www.mywaterfilters.com/ge-smartwater-filter-cartridge/

but it seems still on the category pages like: http://www.mywaterfilters.com/water-filters/ge/
the links to the single product still have the long funky urls.  I wish i can "force" the nice url.

Regarding the Admin urls.  its really not a big deal and if i can have the main frontend problem fixed.. i can live with the admin side.. Im just a perfectionist i guess
Can you please dump here mysql output for the following query:
Select * FROM core_url_rewrite where target_path like '%catalog/product/view/id/207%' or  request_path like '%catalog/product/view/id/207%'

(it is URL rewrites for one of your products "GE Household Pre-Filtration Sediment Filter")
User generated image
Here is what that query provides
Hm... everything looks like in the book :-)

Let's try the following:

1. Please re-index re-writes once again (System-->Index Management-->Select "Catalog URL Rewrites" and click "Submit")
2. Go to System-->Cache Management, click "Flush Magento Cache"
3. Give me the result of the same query again
went ahead and did that and here is a screen shot of the query
User generated imageWhat is odd if you go to the home page and click the a product in the "Most Popular Water Filters" section.. it uses the right URL.  But the urls on the Category Pages for products is wrong.  Both the home page and the category pages are using the $product->getProductUrl() function.
Im seeing on some forums talking about how it might not be getting the proper store ID.  How can i tell this?
You current web site is running under store you called "admin".
You can see that from the product URLs you have in category (see the value of __store parameter):

http://www.mywaterfilters.com/index.php/catalog/product/view/id/167/s/frigidaire-puresource-refrigerator-water-filter/category/44/?___store=admin

Now if you are raising that question it may happen that you misconfigured the current store.

Can you please dump select * from core_config_data to http://pastebin.com/?
Im taking over a new site for a company that i feel has messed things up at initial setup.  Im fairly new to Magento.

I dont see any stores named "Admin"

User generated image
Here is the paste you requested:

http://pastebin.com/bY0C7Pr2
im thinking about deleting these other store views.. really dont need the other languages.  I just need english.  Best way is just to delete them in the store management section?
I am running out of ideas.
When Magento constructs the URL it loads the "request_path" from core_url_rewrite table and only if it doesn't find the URLs there it loads that strange path you are getting.

You can see it by yourself in app/code/core/Mage/Catalog/Model/Product/Url.php, lines 219-223.

However in your case the table is up to date and you said you reindexed the table and cleaned the cache.
One thing  is bothering me is the "___store=admin" parameter in the URL. It actually means that your system tries to find some store called "admin". Can you check your store codes whether you have it (you need to click on the store view and see the "Code" value)?
Also, as one more thing that *may* help it is cleaning the file cache on the server:

sudo rm -r [MAGENTO_FOLDER]/var/cache/*

And finally, if you really want to understand what is going on with your rewrites, I would put some Mage:log('log message') statements in app/code/core/Mage/Catalog/Model/Product/Url.php (and remember to rollback it to the previous state afterwards).
I would embed Mage::log('Line number:188'.$requestPath); right after the line 188
 Mage::log('Line number:190'.$requestPath); right after the line 190
 Mage::log('Line number:205'.$requestPath); right after the line 207

I had to say I had a similar issue on my sites but usually re-indexing the rewrites helped.
Yes, delete them in admin, it will be enough.

Just in case - check your .htaccess in magento folder. There may  be definitions like ...MAGE_RUN_CODE=... You will have to delete them for unused stores (just a matter of order)
okay thanks for your help.. i will look into that.. it is really really weird.. however.. i was able to get the _____store=admin removed from the URLS by deleting the other store views (now just one store view) flushed the core_url_rewrite table and cleared the cache and reindexed.

now it looks like i have somewhat normal urls.. just not pretty.  And its odd that the home page is working just fine in the "Popular Water Filters Section" ...

magento is so frustrating.
ohh and i can actually get to the product just fine by going to the url manually.. its just seems like the productURL() function maybe messed
BTW, if you delete unnecessary stores - please go over on the following process:

1. Clean cache
2. Purge core_url_rewrite table
3. Reindex all the items (not only re-writes)
4. Clean cache
yes i did do that.. i wonder if this theme is not properly setup.. it is located in the default folder which my understanding it should be its own package.

here is the code for the home page:

http://pastebin.com/RFNKrZY1

Here is the code for the category page:

http://pastebin.com/vBDbPUJ9
well i dont think its the theme.. i changed it to the default theme and still getting those weird URLS on category pages.
The issue is not in the template for sure but in getProductUrl and dependent functions.
It may happen that some extensions to override the functionality BTW.

Can you embed the log printouts and we'll see what is going on with rewrites?
okay ive added your code to the url.php... where do i get access to these logs? and i will past them here.
it should be located in MAGENTO_FOLDER/var/log/system.log
oh and please go to System-->Configuration-->Developer and in LogSettings set Enabled to "Yes"
okay here is some of the logs..

not sure what im looking at :)

2013-05-18T04:13:02+00:00 ERR (3): Notice: Undefined index: name_setting  in /home/mywaterf/public_html/app/design/frontend/default/f002/template/sortingcategory/toolbar.phtml on line 83
2013-05-18T04:13:02+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T04:13:02+00:00 DEBUG (7): Line number:190
2013-05-18T04:13:02+00:00 DEBUG (7): Line number:205
2013-05-18T04:13:02+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T04:13:02+00:00 DEBUG (7): Line number:190
2013-05-18T04:13:02+00:00 DEBUG (7): Line number:205
2013-05-18T04:13:02+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T04:13:02+00:00 DEBUG (7): Line number:190
2013-05-18T04:13:02+00:00 DEBUG (7): Line number:205
2013-05-18T04:13:02+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T04:13:02+00:00 DEBUG (7): Line number:190
2013-05-18T04:13:02+00:00 DEBUG (7): Line number:205
2013-05-18T04:13:02+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T04:13:02+00:00 DEBUG (7): Line number:190
2013-05-18T04:13:02+00:00 DEBUG (7): Line number:205
2013-05-18T04:13:02+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T04:13:02+00:00 DEBUG (7): Line number:190
2013-05-18T04:13:02+00:00 DEBUG (7): Line number:205
2013-05-18T04:13:02+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T04:13:02+00:00 DEBUG (7): Line number:190
2013-05-18T04:13:02+00:00 DEBUG (7): Line number:205
2013-05-18T04:13:02+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T04:13:02+00:00 DEBUG (7): Line number:190
2013-05-18T04:13:02+00:00 DEBUG (7): Line number:205
2013-05-18T04:13:02+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T04:13:02+00:00 DEBUG (7): Line number:190
2013-05-18T04:13:02+00:00 DEBUG (7): Line number:205
2013-05-18T04:13:02+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T04:13:02+00:00 DEBUG (7): Line number:190
2013-05-18T04:13:02+00:00 DEBUG (7): Line number:205
2013-05-18T04:13:02+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T04:13:02+00:00 DEBUG (7): Line number:190
2013-05-18T04:13:02+00:00 DEBUG (7): Line number:205
2013-05-18T04:13:02+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T04:13:02+00:00 DEBUG (7): Line number:190
2013-05-18T04:13:02+00:00 DEBUG (7): Line number:205
2013-05-18T04:13:02+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T04:13:02+00:00 DEBUG (7): Line number:190
2013-05-18T04:13:02+00:00 DEBUG (7): Line number:205
2013-05-18T04:13:02+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T04:13:02+00:00 DEBUG (7): Line number:190
2013-05-18T04:13:02+00:00 DEBUG (7): Line number:205
2013-05-18T04:13:02+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T04:13:02+00:00 DEBUG (7): Line number:190
2013-05-18T04:13:02+00:00 DEBUG (7): Line number:205
2013-05-18T04:13:02+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T04:13:02+00:00 DEBUG (7): Line number:190
2013-05-18T04:13:02+00:00 DEBUG (7): Line number:205
2013-05-18T04:13:05+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T04:13:05+00:00 DEBUG (7): Line number:190
2013-05-18T04:13:05+00:00 DEBUG (7): Line number:205frigidaire-ultrawf-water-filter/
2013-05-18T04:13:05+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T04:13:05+00:00 DEBUG (7): Line number:190
2013-05-18T04:13:05+00:00 DEBUG (7): Line number:205frigidaire-ultrawf-water-filter/
2013-05-18T04:13:05+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T04:13:05+00:00 DEBUG (7): Line number:190
2013-05-18T04:13:05+00:00 DEBUG (7): Line number:205frigidaire-ultrawf-water-filter/
2013-05-18T04:13:05+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T04:13:05+00:00 DEBUG (7): Line number:190
2013-05-18T04:13:05+00:00 DEBUG (7): Line number:205frigidaire-ultrawf-water-filter/
2013-05-18T04:13:05+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T04:13:05+00:00 DEBUG (7): Line number:190
2013-05-18T04:13:05+00:00 DEBUG (7): Line number:205frigidaire-ultrawf-water-filter/
2013-05-18T04:13:05+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T04:13:05+00:00 DEBUG (7): Line number:190
2013-05-18T04:13:05+00:00 DEBUG (7): Line number:205frigidaire-ultrawf-water-filter/
2013-05-18T04:13:16+00:00 ERR (3): Notice: Undefined index: name_setting  in /home/mywaterf/public_html/app/design/frontend/default/f002/template/sortingcategory/toolbar.phtml on line 83
2013-05-18T04:13:16+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T04:13:16+00:00 DEBUG (7): Line number:190
2013-05-18T04:13:16+00:00 DEBUG (7): Line number:205
2013-05-18T04:13:16+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T04:13:16+00:00 DEBUG (7): Line number:190
2013-05-18T04:13:16+00:00 DEBUG (7): Line number:205
2013-05-18T04:13:16+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T04:13:16+00:00 DEBUG (7): Line number:190
2013-05-18T04:13:16+00:00 DEBUG (7): Line number:205
2013-05-18T04:13:16+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T04:13:16+00:00 DEBUG (7): Line number:190
2013-05-18T04:13:16+00:00 DEBUG (7): Line number:205
2013-05-18T04:13:16+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T04:13:16+00:00 DEBUG (7): Line number:190
2013-05-18T04:13:16+00:00 DEBUG (7): Line number:205
2013-05-18T04:13:16+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T04:13:16+00:00 DEBUG (7): Line number:190
2013-05-18T04:13:16+00:00 DEBUG (7): Line number:205
2013-05-18T04:13:16+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T04:13:16+00:00 DEBUG (7): Line number:190
2013-05-18T04:13:16+00:00 DEBUG (7): Line number:205
2013-05-18T04:13:16+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T04:13:16+00:00 DEBUG (7): Line number:190
2013-05-18T04:13:16+00:00 DEBUG (7): Line number:205
2013-05-18T04:13:16+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T04:13:16+00:00 DEBUG (7): Line number:190
2013-05-18T04:13:16+00:00 DEBUG (7): Line number:205
2013-05-18T04:13:16+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T04:13:16+00:00 DEBUG (7): Line number:190
2013-05-18T04:13:16+00:00 DEBUG (7): Line number:205
2013-05-18T04:13:16+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T04:13:16+00:00 DEBUG (7): Line number:190
2013-05-18T04:13:16+00:00 DEBUG (7): Line number:205
2013-05-18T04:13:16+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T04:13:16+00:00 DEBUG (7): Line number:190
2013-05-18T04:13:16+00:00 DEBUG (7): Line number:205
2013-05-18T04:13:17+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T04:13:17+00:00 DEBUG (7): Line number:190
2013-05-18T04:13:17+00:00 DEBUG (7): Line number:205
2013-05-18T04:13:17+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T04:13:17+00:00 DEBUG (7): Line number:190
2013-05-18T04:13:17+00:00 DEBUG (7): Line number:205
2013-05-18T04:13:17+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T04:13:17+00:00 DEBUG (7): Line number:190
2013-05-18T04:13:17+00:00 DEBUG (7): Line number:205
2013-05-18T04:13:17+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T04:13:17+00:00 DEBUG (7): Line number:190
2013-05-18T04:13:17+00:00 DEBUG (7): Line number:205
2013-05-18T04:13:20+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T04:13:20+00:00 DEBUG (7): Line number:190
2013-05-18T04:13:20+00:00 DEBUG (7): Line number:205electrulux-pureadvantage-refrigerator-water-filter/
2013-05-18T04:13:20+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T04:13:20+00:00 DEBUG (7): Line number:190
2013-05-18T04:13:20+00:00 DEBUG (7): Line number:205electrulux-pureadvantage-refrigerator-water-filter/
2013-05-18T04:13:20+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T04:13:20+00:00 DEBUG (7): Line number:190
2013-05-18T04:13:20+00:00 DEBUG (7): Line number:205electrulux-pureadvantage-refrigerator-water-filter/
2013-05-18T04:13:20+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T04:13:20+00:00 DEBUG (7): Line number:190
2013-05-18T04:13:20+00:00 DEBUG (7): Line number:205electrulux-pureadvantage-refrigerator-water-filter/
2013-05-18T04:13:20+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T04:13:20+00:00 DEBUG (7): Line number:190
2013-05-18T04:13:20+00:00 DEBUG (7): Line number:205electrulux-pureadvantage-refrigerator-water-filter/
2013-05-18T04:13:20+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T04:13:20+00:00 DEBUG (7): Line number:190
2013-05-18T04:13:20+00:00 DEBUG (7): Line number:205electrulux-pureadvantage-refrigerator-water-filter/
2013-05-18T04:13:32+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T04:13:32+00:00 DEBUG (7): Line number:190
2013-05-18T04:13:32+00:00 DEBUG (7): Line number:205whirlpool-refrigerator-pur-water-filter/
2013-05-18T04:13:32+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T04:13:32+00:00 DEBUG (7): Line number:190
2013-05-18T04:13:32+00:00 DEBUG (7): Line number:205whirlpool-refrigerator-pur-water-filter/
2013-05-18T04:13:32+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T04:13:32+00:00 DEBUG (7): Line number:190
2013-05-18T04:13:32+00:00 DEBUG (7): Line number:205refrigerator-water-filter-226/
2013-05-18T04:13:32+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T04:13:32+00:00 DEBUG (7): Line number:190
2013-05-18T04:13:32+00:00 DEBUG (7): Line number:205refrigerator-water-filter-226/
2013-05-18T04:14:21+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T04:14:21+00:00 DEBUG (7): Line number:190
2013-05-18T04:14:21+00:00 DEBUG (7): Line number:205frigidaire-puresource-refrigerator-water-filter/
2013-05-18T04:14:21+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T04:14:21+00:00 DEBUG (7): Line number:190
2013-05-18T04:14:21+00:00 DEBUG (7): Line number:205ge-smartwater-filter-cartridge/
2013-05-18T04:14:21+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T04:14:21+00:00 DEBUG (7): Line number:190
2013-05-18T04:14:21+00:00 DEBUG (7): Line number:205net-filter-pltd-sedi/
2013-05-18T04:16:39+00:00 ERR (3): Notice: Undefined index: name_setting  in /home/mywaterf/public_html/app/design/frontend/default/f002/template/sortingcategory/toolbar.phtml on line 83
2013-05-18T04:16:39+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T04:16:39+00:00 DEBUG (7): Line number:190
2013-05-18T04:16:39+00:00 DEBUG (7): Line number:205
2013-05-18T04:16:39+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T04:16:39+00:00 DEBUG (7): Line number:190
2013-05-18T04:16:39+00:00 DEBUG (7): Line number:205
2013-05-18T04:16:39+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T04:16:39+00:00 DEBUG (7): Line number:190
2013-05-18T04:16:39+00:00 DEBUG (7): Line number:205
2013-05-18T04:16:39+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T04:16:39+00:00 DEBUG (7): Line number:190
2013-05-18T04:16:39+00:00 DEBUG (7): Line number:205
2013-05-18T04:16:39+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T04:16:39+00:00 DEBUG (7): Line number:190
2013-05-18T04:16:39+00:00 DEBUG (7): Line number:205
2013-05-18T04:16:39+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T04:16:39+00:00 DEBUG (7): Line number:190
2013-05-18T04:16:39+00:00 DEBUG (7): Line number:205
2013-05-18T04:16:39+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T04:16:39+00:00 DEBUG (7): Line number:190
2013-05-18T04:16:39+00:00 DEBUG (7): Line number:205
2013-05-18T04:16:39+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T04:16:39+00:00 DEBUG (7): Line number:190
2013-05-18T04:16:39+00:00 DEBUG (7): Line number:205
2013-05-18T04:16:39+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T04:16:39+00:00 DEBUG (7): Line number:190
2013-05-18T04:16:39+00:00 DEBUG (7): Line number:205
2013-05-18T04:16:39+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T04:16:39+00:00 DEBUG (7): Line number:190
2013-05-18T04:16:39+00:00 DEBUG (7): Line number:205
2013-05-18T04:16:39+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T04:16:39+00:00 DEBUG (7): Line number:190
2013-05-18T04:16:39+00:00 DEBUG (7): Line number:205
2013-05-18T04:16:39+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T04:16:39+00:00 DEBUG (7): Line number:190
2013-05-18T04:16:39+00:00 DEBUG (7): Line number:205
2013-05-18T04:16:39+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T04:16:39+00:00 DEBUG (7): Line number:190
2013-05-18T04:16:39+00:00 DEBUG (7): Line number:205
2013-05-18T04:16:39+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T04:16:39+00:00 DEBUG (7): Line number:190
2013-05-18T04:16:39+00:00 DEBUG (7): Line number:205
2013-05-18T04:16:39+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T04:16:39+00:00 DEBUG (7): Line number:190
2013-05-18T04:16:39+00:00 DEBUG (7): Line number:205
2013-05-18T04:16:39+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T04:16:39+00:00 DEBUG (7): Line number:190
2013-05-18T04:16:39+00:00 DEBUG (7): Line number:205
2013-05-18T04:17:04+00:00 ERR (3): Notice: Undefined index: name_setting  in /home/mywaterf/public_html/app/design/frontend/default/f002/template/sortingcategory/toolbar.phtml on line 83
2013-05-18T04:17:04+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T04:17:04+00:00 DEBUG (7): Line number:190
2013-05-18T04:17:04+00:00 DEBUG (7): Line number:205
2013-05-18T04:17:04+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T04:17:04+00:00 DEBUG (7): Line number:190
2013-05-18T04:17:04+00:00 DEBUG (7): Line number:205
2013-05-18T04:17:04+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T04:17:04+00:00 DEBUG (7): Line number:190
2013-05-18T04:17:04+00:00 DEBUG (7): Line number:205
2013-05-18T04:17:04+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T04:17:04+00:00 DEBUG (7): Line number:190
2013-05-18T04:17:04+00:00 DEBUG (7): Line number:205
2013-05-18T04:17:04+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T04:17:04+00:00 DEBUG (7): Line number:190
2013-05-18T04:17:04+00:00 DEBUG (7): Line number:205
2013-05-18T04:17:04+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T04:17:04+00:00 DEBUG (7): Line number:190
2013-05-18T04:17:04+00:00 DEBUG (7): Line number:205
2013-05-18T04:17:04+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T04:17:04+00:00 DEBUG (7): Line number:190
2013-05-18T04:17:04+00:00 DEBUG (7): Line number:205
2013-05-18T04:17:04+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T04:17:04+00:00 DEBUG (7): Line number:190
2013-05-18T04:17:04+00:00 DEBUG (7): Line number:205
2013-05-18T04:17:04+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T04:17:04+00:00 DEBUG (7): Line number:190
2013-05-18T04:17:04+00:00 DEBUG (7): Line number:205
2013-05-18T04:17:04+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T04:17:04+00:00 DEBUG (7): Line number:190
2013-05-18T04:17:04+00:00 DEBUG (7): Line number:205
2013-05-18T04:17:04+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T04:17:04+00:00 DEBUG (7): Line number:190
2013-05-18T04:17:04+00:00 DEBUG (7): Line number:205
2013-05-18T04:17:04+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T04:17:04+00:00 DEBUG (7): Line number:190
2013-05-18T04:17:04+00:00 DEBUG (7): Line number:205
2013-05-18T04:17:04+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T04:17:04+00:00 DEBUG (7): Line number:190
2013-05-18T04:17:04+00:00 DEBUG (7): Line number:205
2013-05-18T04:17:04+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T04:17:04+00:00 DEBUG (7): Line number:190
2013-05-18T04:17:04+00:00 DEBUG (7): Line number:205
2013-05-18T04:17:04+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T04:17:04+00:00 DEBUG (7): Line number:190
2013-05-18T04:17:04+00:00 DEBUG (7): Line number:205
2013-05-18T04:17:04+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T04:17:04+00:00 DEBUG (7): Line number:190
2013-05-18T04:17:04+00:00 DEBUG (7): Line number:205
2013-05-18T04:17:33+00:00 ERR (3): Notice: Undefined index: name_setting  in /home/mywaterf/public_html/app/design/frontend/default/f002/template/sortingcategory/toolbar.phtml on line 83
2013-05-18T04:17:33+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T04:17:33+00:00 DEBUG (7): Line number:190
2013-05-18T04:17:33+00:00 DEBUG (7): Line number:205
2013-05-18T04:17:33+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T04:17:33+00:00 DEBUG (7): Line number:190
2013-05-18T04:17:33+00:00 DEBUG (7): Line number:205
2013-05-18T04:17:33+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T04:17:33+00:00 DEBUG (7): Line number:190
2013-05-18T04:17:35+00:00 DEBUG (7): Line number:205
2013-05-18T04:17:35+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T04:17:35+00:00 DEBUG (7): Line number:190
2013-05-18T04:17:35+00:00 DEBUG (7): Line number:205
2013-05-18T04:17:35+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T04:17:35+00:00 DEBUG (7): Line number:190
2013-05-18T04:17:35+00:00 DEBUG (7): Line number:205
2013-05-18T04:17:35+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T04:17:35+00:00 DEBUG (7): Line number:190
2013-05-18T04:17:35+00:00 DEBUG (7): Line number:205
2013-05-18T04:17:35+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T04:17:35+00:00 DEBUG (7): Line number:190
2013-05-18T04:17:35+00:00 DEBUG (7): Line number:205
2013-05-18T04:17:35+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T04:17:35+00:00 DEBUG (7): Line number:190
2013-05-18T04:17:35+00:00 DEBUG (7): Line number:205
2013-05-18T04:17:35+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T04:17:35+00:00 DEBUG (7): Line number:190
2013-05-18T04:17:35+00:00 DEBUG (7): Line number:205
2013-05-18T04:17:35+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T04:17:35+00:00 DEBUG (7): Line number:190
2013-05-18T04:17:35+00:00 DEBUG (7): Line number:205
2013-05-18T04:17:35+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T04:17:35+00:00 DEBUG (7): Line number:190
2013-05-18T04:17:35+00:00 DEBUG (7): Line number:205
2013-05-18T04:17:35+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T04:17:35+00:00 DEBUG (7): Line number:190
2013-05-18T04:17:35+00:00 DEBUG (7): Line number:205
2013-05-18T04:17:35+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T04:17:35+00:00 DEBUG (7): Line number:190
2013-05-18T04:17:35+00:00 DEBUG (7): Line number:205
2013-05-18T04:17:35+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T04:17:35+00:00 DEBUG (7): Line number:190
2013-05-18T04:17:35+00:00 DEBUG (7): Line number:205
2013-05-18T04:17:35+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T04:17:35+00:00 DEBUG (7): Line number:190
2013-05-18T04:17:35+00:00 DEBUG (7): Line number:205
2013-05-18T04:17:35+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T04:17:35+00:00 DEBUG (7): Line number:190
2013-05-18T04:17:35+00:00 DEBUG (7): Line number:205
2013-05-18T04:18:01+00:00 ERR (3): Notice: Undefined index: name_setting  in /home/mywaterf/public_html/app/design/frontend/default/f002/template/sortingcategory/toolbar.phtml on line 83
2013-05-18T04:18:01+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T04:18:01+00:00 DEBUG (7): Line number:190
2013-05-18T04:18:01+00:00 DEBUG (7): Line number:205
2013-05-18T04:18:01+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T04:18:01+00:00 DEBUG (7): Line number:190
2013-05-18T04:18:01+00:00 DEBUG (7): Line number:205
2013-05-18T04:18:01+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T04:18:01+00:00 DEBUG (7): Line number:190
2013-05-18T04:18:01+00:00 DEBUG (7): Line number:205
2013-05-18T04:18:01+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T04:18:01+00:00 DEBUG (7): Line number:190
2013-05-18T04:18:01+00:00 DEBUG (7): Line number:205
2013-05-18T04:18:01+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T04:18:01+00:00 DEBUG (7): Line number:190
2013-05-18T04:18:01+00:00 DEBUG (7): Line number:205
2013-05-18T04:18:01+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T04:18:01+00:00 DEBUG (7): Line number:190
2013-05-18T04:18:01+00:00 DEBUG (7): Line number:205
2013-05-18T04:18:01+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T04:18:01+00:00 DEBUG (7): Line number:190
2013-05-18T04:18:01+00:00 DEBUG (7): Line number:205
2013-05-18T04:18:01+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T04:18:01+00:00 DEBUG (7): Line number:190
2013-05-18T04:18:01+00:00 DEBUG (7): Line number:205
2013-05-18T04:18:01+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T04:18:01+00:00 DEBUG (7): Line number:190
2013-05-18T04:18:01+00:00 DEBUG (7): Line number:205
2013-05-18T04:18:01+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T04:18:01+00:00 DEBUG (7): Line number:190
2013-05-18T04:18:01+00:00 DEBUG (7): Line number:205
2013-05-18T04:18:01+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T04:18:01+00:00 DEBUG (7): Line number:190
2013-05-18T04:18:01+00:00 DEBUG (7): Line number:205
2013-05-18T04:18:01+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T04:18:01+00:00 DEBUG (7): Line number:190
2013-05-18T04:18:01+00:00 DEBUG (7): Line number:205
2013-05-18T04:18:22+00:00 ERR (3): Notice: Undefined index: name_setting  in /home/mywaterf/public_html/app/design/frontend/default/f002/template/sortingcategory/toolbar.phtml on line 83
2013-05-18T04:18:22+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T04:18:22+00:00 DEBUG (7): Line number:190
2013-05-18T04:18:22+00:00 DEBUG (7): Line number:205
2013-05-18T04:18:22+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T04:18:22+00:00 DEBUG (7): Line number:190
2013-05-18T04:18:22+00:00 DEBUG (7): Line number:205
2013-05-18T04:18:22+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T04:18:22+00:00 DEBUG (7): Line number:190
2013-05-18T04:18:22+00:00 DEBUG (7): Line number:205
2013-05-18T04:18:22+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T04:18:22+00:00 DEBUG (7): Line number:190
2013-05-18T04:18:22+00:00 DEBUG (7): Line number:205
2013-05-18T04:18:22+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T04:18:22+00:00 DEBUG (7): Line number:190
2013-05-18T04:18:22+00:00 DEBUG (7): Line number:205
2013-05-18T04:18:22+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T04:18:22+00:00 DEBUG (7): Line number:190
2013-05-18T04:18:22+00:00 DEBUG (7): Line number:205
2013-05-18T04:18:22+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T04:18:22+00:00 DEBUG (7): Line number:190
2013-05-18T04:18:22+00:00 DEBUG (7): Line number:205
2013-05-18T04:18:22+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T04:18:22+00:00 DEBUG (7): Line number:190
2013-05-18T04:18:22+00:00 DEBUG (7): Line number:205
2013-05-18T04:18:23+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T04:18:23+00:00 DEBUG (7): Line number:190
2013-05-18T04:18:23+00:00 DEBUG (7): Line number:205
2013-05-18T04:18:23+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T04:18:23+00:00 DEBUG (7): Line number:190
2013-05-18T04:18:23+00:00 DEBUG (7): Line number:205
2013-05-18T04:18:23+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T04:18:23+00:00 DEBUG (7): Line number:190
2013-05-18T04:18:23+00:00 DEBUG (7): Line number:205
2013-05-18T04:18:23+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T04:18:23+00:00 DEBUG (7): Line number:190
2013-05-18T04:18:23+00:00 DEBUG (7): Line number:205
2013-05-18T04:18:23+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T04:18:23+00:00 DEBUG (7): Line number:190
2013-05-18T04:18:23+00:00 DEBUG (7): Line number:205
2013-05-18T04:18:23+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T04:18:23+00:00 DEBUG (7): Line number:190
2013-05-18T04:18:23+00:00 DEBUG (7): Line number:205
2013-05-18T04:18:23+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T04:18:23+00:00 DEBUG (7): Line number:190
2013-05-18T04:18:23+00:00 DEBUG (7): Line number:205
2013-05-18T04:18:23+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T04:18:23+00:00 DEBUG (7): Line number:190
2013-05-18T04:18:23+00:00 DEBUG (7): Line number:205
2013-05-18T04:18:45+00:00 ERR (3): Notice: Undefined index: name_setting  in /home/mywaterf/public_html/app/design/frontend/default/f002/template/sortingcategory/toolbar.phtml on line 83
2013-05-18T04:18:45+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T04:18:45+00:00 DEBUG (7): Line number:190
2013-05-18T04:18:45+00:00 DEBUG (7): Line number:205
2013-05-18T04:18:45+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T04:18:45+00:00 DEBUG (7): Line number:190
2013-05-18T04:18:45+00:00 DEBUG (7): Line number:205
2013-05-18T04:18:45+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T04:18:45+00:00 DEBUG (7): Line number:190
2013-05-18T04:18:45+00:00 DEBUG (7): Line number:205
2013-05-18T04:18:45+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T04:18:45+00:00 DEBUG (7): Line number:190
2013-05-18T04:18:45+00:00 DEBUG (7): Line number:205
2013-05-18T04:18:45+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T04:18:45+00:00 DEBUG (7): Line number:190
2013-05-18T04:18:45+00:00 DEBUG (7): Line number:205
2013-05-18T04:18:45+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T04:18:45+00:00 DEBUG (7): Line number:190
2013-05-18T04:18:45+00:00 DEBUG (7): Line number:205
2013-05-18T04:18:45+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T04:18:45+00:00 DEBUG (7): Line number:190
2013-05-18T04:18:45+00:00 DEBUG (7): Line number:205
2013-05-18T04:18:45+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T04:18:45+00:00 DEBUG (7): Line number:190
2013-05-18T04:18:45+00:00 DEBUG (7): Line number:205
2013-05-18T04:18:45+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T04:18:45+00:00 DEBUG (7): Line number:190
2013-05-18T04:18:45+00:00 DEBUG (7): Line number:205
2013-05-18T04:18:45+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T04:18:45+00:00 DEBUG (7): Line number:190
2013-05-18T04:18:45+00:00 DEBUG (7): Line number:205
2013-05-18T04:18:45+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T04:18:45+00:00 DEBUG (7): Line number:190
2013-05-18T04:18:45+00:00 DEBUG (7): Line number:205
2013-05-18T04:18:45+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T04:18:45+00:00 DEBUG (7): Line number:190
2013-05-18T04:18:45+00:00 DEBUG (7): Line number:205
2013-05-18T04:18:45+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T04:18:45+00:00 DEBUG (7): Line number:190
2013-05-18T04:18:45+00:00 DEBUG (7): Line number:205
2013-05-18T04:18:45+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T04:18:45+00:00 DEBUG (7): Line number:190
2013-05-18T04:18:45+00:00 DEBUG (7): Line number:205
just in case.. here is a screen shot of how i have your code entered in

User generated image
Okay, so you are not getting request_path updated when the system fetches a list of products  for the category.

Let's add another printout after the line 200:
 Mage::log('Line number:200'.$idPath.',id='.$rewrite->getId()); right after the line 200

I want to check if the id for a rewrite rule is generated ok and we have a corresponded record in the rewrite table.

Hope we are getting close.
First off, just want to say thank you for helping me!

Here is some logs after adding to line 200.

2013-05-18T12:29:42+00:00 ERR (3): Notice: Undefined index: name_setting  in /home/mywaterf/public_html/app/design/frontend/default/f002/template/sortingcategory/toolbar.phtml on line 83
2013-05-18T12:29:42+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T12:29:42+00:00 DEBUG (7): Line number:190
2013-05-18T12:29:42+00:00 DEBUG (7): Line number:200product/202/39,id=
2013-05-18T12:29:42+00:00 DEBUG (7): Line number:205
2013-05-18T12:29:42+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T12:29:42+00:00 DEBUG (7): Line number:190
2013-05-18T12:29:42+00:00 DEBUG (7): Line number:205
2013-05-18T12:29:42+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T12:29:42+00:00 DEBUG (7): Line number:190
2013-05-18T12:29:42+00:00 DEBUG (7): Line number:200product/214/39,id=
2013-05-18T12:29:42+00:00 DEBUG (7): Line number:205
2013-05-18T12:29:42+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T12:29:42+00:00 DEBUG (7): Line number:190
2013-05-18T12:29:42+00:00 DEBUG (7): Line number:205
2013-05-18T12:29:42+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T12:29:42+00:00 DEBUG (7): Line number:190
2013-05-18T12:29:42+00:00 DEBUG (7): Line number:200product/213/39,id=
2013-05-18T12:29:42+00:00 DEBUG (7): Line number:205
2013-05-18T12:29:42+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T12:29:42+00:00 DEBUG (7): Line number:190
2013-05-18T12:29:42+00:00 DEBUG (7): Line number:205
2013-05-18T12:29:42+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T12:29:42+00:00 DEBUG (7): Line number:190
2013-05-18T12:29:42+00:00 DEBUG (7): Line number:200product/189/39,id=
2013-05-18T12:29:42+00:00 DEBUG (7): Line number:205
2013-05-18T12:29:42+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T12:29:42+00:00 DEBUG (7): Line number:190
2013-05-18T12:29:42+00:00 DEBUG (7): Line number:205
2013-05-18T12:29:42+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T12:29:42+00:00 DEBUG (7): Line number:190
2013-05-18T12:29:42+00:00 DEBUG (7): Line number:200product/188/39,id=
2013-05-18T12:29:42+00:00 DEBUG (7): Line number:205
2013-05-18T12:29:42+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T12:29:42+00:00 DEBUG (7): Line number:190
2013-05-18T12:29:42+00:00 DEBUG (7): Line number:205
2013-05-18T12:29:42+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T12:29:42+00:00 DEBUG (7): Line number:190
2013-05-18T12:29:42+00:00 DEBUG (7): Line number:200product/193/39,id=
2013-05-18T12:29:42+00:00 DEBUG (7): Line number:205
2013-05-18T12:29:42+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T12:29:42+00:00 DEBUG (7): Line number:190
2013-05-18T12:29:42+00:00 DEBUG (7): Line number:205
2013-05-18T12:29:45+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T12:29:45+00:00 DEBUG (7): Line number:190
2013-05-18T12:29:45+00:00 DEBUG (7): Line number:200product/214,id=165
2013-05-18T12:29:45+00:00 DEBUG (7): Line number:205maytag-water-filter/
2013-05-18T12:29:45+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T12:29:45+00:00 DEBUG (7): Line number:190
2013-05-18T12:29:45+00:00 DEBUG (7): Line number:205maytag-water-filter/
2013-05-18T12:29:45+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T12:29:45+00:00 DEBUG (7): Line number:190
2013-05-18T12:29:45+00:00 DEBUG (7): Line number:205maytag-water-filter/
2013-05-18T12:29:45+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T12:29:45+00:00 DEBUG (7): Line number:190
2013-05-18T12:29:45+00:00 DEBUG (7): Line number:205maytag-water-filter/
2013-05-18T12:29:45+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T12:29:45+00:00 DEBUG (7): Line number:190
2013-05-18T12:29:45+00:00 DEBUG (7): Line number:205maytag-water-filter/
2013-05-18T12:29:45+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T12:29:45+00:00 DEBUG (7): Line number:190
2013-05-18T12:29:45+00:00 DEBUG (7): Line number:205maytag-water-filter/
2013-05-18T12:29:48+00:00 ERR (3): Notice: Undefined index: name_setting  in /home/mywaterf/public_html/app/design/frontend/default/f002/template/sortingcategory/toolbar.phtml on line 83
2013-05-18T12:29:48+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T12:29:48+00:00 DEBUG (7): Line number:190
2013-05-18T12:29:48+00:00 DEBUG (7): Line number:200product/186/41,id=
2013-05-18T12:29:48+00:00 DEBUG (7): Line number:205
2013-05-18T12:29:48+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T12:29:48+00:00 DEBUG (7): Line number:190
2013-05-18T12:29:48+00:00 DEBUG (7): Line number:205
2013-05-18T12:29:48+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T12:29:48+00:00 DEBUG (7): Line number:190
2013-05-18T12:29:48+00:00 DEBUG (7): Line number:200product/200/41,id=
2013-05-18T12:29:48+00:00 DEBUG (7): Line number:205
2013-05-18T12:29:48+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T12:29:48+00:00 DEBUG (7): Line number:190
2013-05-18T12:29:48+00:00 DEBUG (7): Line number:205
2013-05-18T12:29:48+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T12:29:48+00:00 DEBUG (7): Line number:190
2013-05-18T12:29:48+00:00 DEBUG (7): Line number:200product/201/41,id=
2013-05-18T12:29:48+00:00 DEBUG (7): Line number:205
2013-05-18T12:29:48+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T12:29:48+00:00 DEBUG (7): Line number:190
2013-05-18T12:29:48+00:00 DEBUG (7): Line number:205
2013-05-18T12:29:48+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T12:29:48+00:00 DEBUG (7): Line number:190
2013-05-18T12:29:48+00:00 DEBUG (7): Line number:200product/187/41,id=
2013-05-18T12:29:48+00:00 DEBUG (7): Line number:205
2013-05-18T12:29:48+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T12:29:48+00:00 DEBUG (7): Line number:190
2013-05-18T12:29:48+00:00 DEBUG (7): Line number:205
2013-05-18T12:29:48+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T12:29:48+00:00 DEBUG (7): Line number:190
2013-05-18T12:29:48+00:00 DEBUG (7): Line number:200product/185/41,id=
2013-05-18T12:29:48+00:00 DEBUG (7): Line number:205
2013-05-18T12:29:48+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T12:29:48+00:00 DEBUG (7): Line number:190
2013-05-18T12:29:48+00:00 DEBUG (7): Line number:205
2013-05-18T12:29:48+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T12:29:48+00:00 DEBUG (7): Line number:190
2013-05-18T12:29:48+00:00 DEBUG (7): Line number:200product/217/41,id=
2013-05-18T12:29:48+00:00 DEBUG (7): Line number:205
2013-05-18T12:29:48+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T12:29:48+00:00 DEBUG (7): Line number:190
2013-05-18T12:29:48+00:00 DEBUG (7): Line number:205
2013-05-18T12:29:48+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T12:29:48+00:00 DEBUG (7): Line number:190
2013-05-18T12:29:48+00:00 DEBUG (7): Line number:200product/195/41,id=
2013-05-18T12:29:48+00:00 DEBUG (7): Line number:205
2013-05-18T12:29:48+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T12:29:48+00:00 DEBUG (7): Line number:190
2013-05-18T12:29:48+00:00 DEBUG (7): Line number:205
2013-05-18T12:29:48+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T12:29:48+00:00 DEBUG (7): Line number:190
2013-05-18T12:29:48+00:00 DEBUG (7): Line number:200product/199/41,id=
2013-05-18T12:29:48+00:00 DEBUG (7): Line number:205
2013-05-18T12:29:48+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T12:29:48+00:00 DEBUG (7): Line number:190
2013-05-18T12:29:48+00:00 DEBUG (7): Line number:205
2013-05-18T12:29:50+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T12:29:50+00:00 DEBUG (7): Line number:190
2013-05-18T12:29:50+00:00 DEBUG (7): Line number:200product/187,id=79
2013-05-18T12:29:50+00:00 DEBUG (7): Line number:205whirlpool-refrigerator-ice-water-filter-4396510/
2013-05-18T12:29:50+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T12:29:50+00:00 DEBUG (7): Line number:190
2013-05-18T12:29:50+00:00 DEBUG (7): Line number:205whirlpool-refrigerator-ice-water-filter-4396510/
2013-05-18T12:29:50+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T12:29:50+00:00 DEBUG (7): Line number:190
2013-05-18T12:29:50+00:00 DEBUG (7): Line number:205whirlpool-refrigerator-ice-water-filter-4396510/
2013-05-18T12:29:51+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T12:29:51+00:00 DEBUG (7): Line number:190
2013-05-18T12:29:51+00:00 DEBUG (7): Line number:205whirlpool-refrigerator-ice-water-filter-4396510/
2013-05-18T12:29:51+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T12:29:51+00:00 DEBUG (7): Line number:190
2013-05-18T12:29:51+00:00 DEBUG (7): Line number:205whirlpool-refrigerator-ice-water-filter-4396510/
2013-05-18T12:29:51+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T12:29:51+00:00 DEBUG (7): Line number:190
2013-05-18T12:29:51+00:00 DEBUG (7): Line number:205whirlpool-refrigerator-ice-water-filter-4396510/
2013-05-18T12:29:51+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T12:29:51+00:00 DEBUG (7): Line number:190
2013-05-18T12:29:51+00:00 DEBUG (7): Line number:200product/167,id=11
2013-05-18T12:29:51+00:00 DEBUG (7): Line number:205frigidaire-puresource-refrigerator-water-filter/
2013-05-18T12:29:51+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T12:29:51+00:00 DEBUG (7): Line number:190
2013-05-18T12:29:51+00:00 DEBUG (7): Line number:200product/178,id=44
2013-05-18T12:29:51+00:00 DEBUG (7): Line number:205ge-smartwater-filter-cartridge/
2013-05-18T12:29:51+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T12:29:51+00:00 DEBUG (7): Line number:190
2013-05-18T12:29:51+00:00 DEBUG (7): Line number:200product/207,id=144
2013-05-18T12:29:51+00:00 DEBUG (7): Line number:205net-filter-pltd-sedi/
2013-05-18T12:29:55+00:00 ERR (3): Notice: Undefined index: name_setting  in /home/mywaterf/public_html/app/design/frontend/default/f002/template/sortingcategory/toolbar.phtml on line 83
2013-05-18T12:29:55+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T12:29:55+00:00 DEBUG (7): Line number:190
2013-05-18T12:29:55+00:00 DEBUG (7): Line number:200product/178/37,id=
2013-05-18T12:29:55+00:00 DEBUG (7): Line number:205
2013-05-18T12:29:55+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T12:29:55+00:00 DEBUG (7): Line number:190
2013-05-18T12:29:55+00:00 DEBUG (7): Line number:205
2013-05-18T12:29:55+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T12:29:55+00:00 DEBUG (7): Line number:190
2013-05-18T12:29:55+00:00 DEBUG (7): Line number:200product/207/37,id=
2013-05-18T12:29:55+00:00 DEBUG (7): Line number:205
2013-05-18T12:29:55+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T12:29:55+00:00 DEBUG (7): Line number:190
2013-05-18T12:29:55+00:00 DEBUG (7): Line number:205
2013-05-18T12:29:55+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T12:29:55+00:00 DEBUG (7): Line number:190
2013-05-18T12:29:55+00:00 DEBUG (7): Line number:200product/183/37,id=
2013-05-18T12:29:55+00:00 DEBUG (7): Line number:205
2013-05-18T12:29:55+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T12:29:55+00:00 DEBUG (7): Line number:190
2013-05-18T12:29:55+00:00 DEBUG (7): Line number:205
2013-05-18T12:29:55+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T12:29:55+00:00 DEBUG (7): Line number:190
2013-05-18T12:29:55+00:00 DEBUG (7): Line number:200product/210/37,id=
2013-05-18T12:29:55+00:00 DEBUG (7): Line number:205
2013-05-18T12:29:55+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T12:29:55+00:00 DEBUG (7): Line number:190
2013-05-18T12:29:55+00:00 DEBUG (7): Line number:205
2013-05-18T12:29:55+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T12:29:55+00:00 DEBUG (7): Line number:190
2013-05-18T12:29:55+00:00 DEBUG (7): Line number:200product/173/37,id=
2013-05-18T12:29:55+00:00 DEBUG (7): Line number:205
2013-05-18T12:29:55+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T12:29:55+00:00 DEBUG (7): Line number:190
2013-05-18T12:29:55+00:00 DEBUG (7): Line number:205
2013-05-18T12:29:55+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T12:29:55+00:00 DEBUG (7): Line number:190
2013-05-18T12:29:55+00:00 DEBUG (7): Line number:200product/209/37,id=
2013-05-18T12:29:55+00:00 DEBUG (7): Line number:205
2013-05-18T12:29:55+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T12:29:55+00:00 DEBUG (7): Line number:190
2013-05-18T12:29:55+00:00 DEBUG (7): Line number:205
2013-05-18T12:29:55+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T12:29:55+00:00 DEBUG (7): Line number:190
2013-05-18T12:29:55+00:00 DEBUG (7): Line number:200product/179/37,id=
2013-05-18T12:29:55+00:00 DEBUG (7): Line number:205
2013-05-18T12:29:55+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T12:29:55+00:00 DEBUG (7): Line number:190
2013-05-18T12:29:55+00:00 DEBUG (7): Line number:205
2013-05-18T12:29:55+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T12:29:55+00:00 DEBUG (7): Line number:190
2013-05-18T12:29:55+00:00 DEBUG (7): Line number:200product/174/37,id=
2013-05-18T12:29:55+00:00 DEBUG (7): Line number:205
2013-05-18T12:29:55+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T12:29:55+00:00 DEBUG (7): Line number:190
2013-05-18T12:29:55+00:00 DEBUG (7): Line number:205
2013-05-18T12:29:59+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T12:29:59+00:00 DEBUG (7): Line number:190
2013-05-18T12:29:59+00:00 DEBUG (7): Line number:200product/183,id=65
2013-05-18T12:29:59+00:00 DEBUG (7): Line number:205ge-smartwater-reverse-osmosis-filter/
2013-05-18T12:29:59+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T12:29:59+00:00 DEBUG (7): Line number:190
2013-05-18T12:29:59+00:00 DEBUG (7): Line number:205ge-smartwater-reverse-osmosis-filter/
2013-05-18T12:29:59+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T12:29:59+00:00 DEBUG (7): Line number:190
2013-05-18T12:29:59+00:00 DEBUG (7): Line number:205ge-smartwater-reverse-osmosis-filter/
2013-05-18T12:29:59+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T12:29:59+00:00 DEBUG (7): Line number:190
2013-05-18T12:29:59+00:00 DEBUG (7): Line number:205ge-smartwater-reverse-osmosis-filter/
2013-05-18T12:29:59+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T12:29:59+00:00 DEBUG (7): Line number:190
2013-05-18T12:29:59+00:00 DEBUG (7): Line number:205ge-smartwater-reverse-osmosis-filter/
2013-05-18T12:29:59+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T12:29:59+00:00 DEBUG (7): Line number:190
2013-05-18T12:29:59+00:00 DEBUG (7): Line number:205ge-smartwater-reverse-osmosis-filter/
2013-05-18T12:30:07+00:00 ERR (3): Notice: Undefined index: name_setting  in /home/mywaterf/public_html/app/design/frontend/default/f002/template/sortingcategory/toolbar.phtml on line 83
2013-05-18T12:30:07+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T12:30:07+00:00 DEBUG (7): Line number:190
2013-05-18T12:30:07+00:00 DEBUG (7): Line number:200product/179/38,id=
2013-05-18T12:30:07+00:00 DEBUG (7): Line number:205
2013-05-18T12:30:07+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T12:30:07+00:00 DEBUG (7): Line number:190
2013-05-18T12:30:07+00:00 DEBUG (7): Line number:205
2013-05-18T12:30:07+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T12:30:07+00:00 DEBUG (7): Line number:190
2013-05-18T12:30:07+00:00 DEBUG (7): Line number:200product/180/38,id=
2013-05-18T12:30:07+00:00 DEBUG (7): Line number:205
2013-05-18T12:30:07+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T12:30:07+00:00 DEBUG (7): Line number:190
2013-05-18T12:30:07+00:00 DEBUG (7): Line number:205
2013-05-18T12:30:07+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T12:30:07+00:00 DEBUG (7): Line number:190
2013-05-18T12:30:07+00:00 DEBUG (7): Line number:200product/172/38,id=
2013-05-18T12:30:07+00:00 DEBUG (7): Line number:205
2013-05-18T12:30:07+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T12:30:07+00:00 DEBUG (7): Line number:190
2013-05-18T12:30:07+00:00 DEBUG (7): Line number:205
2013-05-18T12:30:09+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T12:30:09+00:00 DEBUG (7): Line number:190
2013-05-18T12:30:09+00:00 DEBUG (7): Line number:200product/172,id=23
2013-05-18T12:30:09+00:00 DEBUG (7): Line number:205ge-icemaker-filter-kit/
2013-05-18T12:30:09+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T12:30:09+00:00 DEBUG (7): Line number:190
2013-05-18T12:30:09+00:00 DEBUG (7): Line number:205ge-icemaker-filter-kit/
2013-05-18T12:30:09+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T12:30:09+00:00 DEBUG (7): Line number:190
2013-05-18T12:30:09+00:00 DEBUG (7): Line number:205ge-icemaker-filter-kit/
2013-05-18T12:30:09+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T12:30:09+00:00 DEBUG (7): Line number:190
2013-05-18T12:30:09+00:00 DEBUG (7): Line number:205ge-icemaker-filter-kit/
2013-05-18T12:30:09+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T12:30:09+00:00 DEBUG (7): Line number:190
2013-05-18T12:30:09+00:00 DEBUG (7): Line number:205ge-icemaker-filter-kit/
2013-05-18T12:30:09+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T12:30:09+00:00 DEBUG (7): Line number:190
2013-05-18T12:30:09+00:00 DEBUG (7): Line number:205ge-icemaker-filter-kit/
Ok, thanks.

Now, could you please fetch the following from mysqldb:
Select * FROM core_url_rewrite where id_path='product/207/37'

and also

Select * FROM core_url_rewrite where product_id=207

I am trying to understand how come the following didn't return a valid rewrite id:

2013-05-18T12:29:55+00:00 DEBUG (7): Line number:190
2013-05-18T12:29:55+00:00 DEBUG (7): Line number:200product/207/37,id=
2013-05-18T12:29:55+00:00 DEBUG (7): Line number:205
first query:

User generated image
second query

User generated image
Ok, my next suspicion that products are not assigned to the correct web site.

In order to eliminate that assumption let's  do the following:

1. Go to the Catalog-->Manage Products
2. Click "Select All"
3. Choose "Update Attributes" in "Actions" menu
4. Click "Submit"
5. Click "Websites" on the left menu
6. Select checkbox on whatever appeared in the section "Add Product to Websites"
7. Click "Save"
8. Reindex URL Rewrites again
8.1. Clean Cache
9. Test the category
10. If it is not working - give me the log again and run again 2 queries I gave you
followed your steps.. still problem

Logs:

2013-05-18T14:21:04+00:00 ERR (3): Notice: Undefined index: name_setting  in /home/mywaterf/public_html/app/design/frontend/default/f002/template/sortingcategory/toolbar.phtml on line 83
2013-05-18T14:21:04+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T14:21:04+00:00 DEBUG (7): Line number:190
2013-05-18T14:21:04+00:00 DEBUG (7): Line number:200product/178/37,id=
2013-05-18T14:21:04+00:00 DEBUG (7): Line number:205
2013-05-18T14:21:04+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T14:21:04+00:00 DEBUG (7): Line number:190
2013-05-18T14:21:04+00:00 DEBUG (7): Line number:205
2013-05-18T14:21:04+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T14:21:04+00:00 DEBUG (7): Line number:190
2013-05-18T14:21:04+00:00 DEBUG (7): Line number:200product/207/37,id=
2013-05-18T14:21:04+00:00 DEBUG (7): Line number:205
2013-05-18T14:21:04+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T14:21:04+00:00 DEBUG (7): Line number:190
2013-05-18T14:21:04+00:00 DEBUG (7): Line number:205
2013-05-18T14:21:04+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T14:21:04+00:00 DEBUG (7): Line number:190
2013-05-18T14:21:04+00:00 DEBUG (7): Line number:200product/183/37,id=
2013-05-18T14:21:04+00:00 DEBUG (7): Line number:205
2013-05-18T14:21:04+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T14:21:04+00:00 DEBUG (7): Line number:190
2013-05-18T14:21:04+00:00 DEBUG (7): Line number:205
2013-05-18T14:21:04+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T14:21:04+00:00 DEBUG (7): Line number:190
2013-05-18T14:21:04+00:00 DEBUG (7): Line number:200product/210/37,id=
2013-05-18T14:21:04+00:00 DEBUG (7): Line number:205
2013-05-18T14:21:04+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T14:21:04+00:00 DEBUG (7): Line number:190
2013-05-18T14:21:04+00:00 DEBUG (7): Line number:205
2013-05-18T14:21:04+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T14:21:04+00:00 DEBUG (7): Line number:190
2013-05-18T14:21:04+00:00 DEBUG (7): Line number:200product/173/37,id=
2013-05-18T14:21:04+00:00 DEBUG (7): Line number:205
2013-05-18T14:21:04+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T14:21:04+00:00 DEBUG (7): Line number:190
2013-05-18T14:21:04+00:00 DEBUG (7): Line number:205
2013-05-18T14:21:04+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T14:21:04+00:00 DEBUG (7): Line number:190
2013-05-18T14:21:04+00:00 DEBUG (7): Line number:200product/209/37,id=
2013-05-18T14:21:04+00:00 DEBUG (7): Line number:205
2013-05-18T14:21:04+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T14:21:04+00:00 DEBUG (7): Line number:190
2013-05-18T14:21:04+00:00 DEBUG (7): Line number:205
2013-05-18T14:21:04+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T14:21:04+00:00 DEBUG (7): Line number:190
2013-05-18T14:21:04+00:00 DEBUG (7): Line number:200product/179/37,id=
2013-05-18T14:21:04+00:00 DEBUG (7): Line number:205
2013-05-18T14:21:04+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T14:21:04+00:00 DEBUG (7): Line number:190
2013-05-18T14:21:04+00:00 DEBUG (7): Line number:205
2013-05-18T14:21:04+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T14:21:04+00:00 DEBUG (7): Line number:190
2013-05-18T14:21:04+00:00 DEBUG (7): Line number:200product/174/37,id=
2013-05-18T14:21:04+00:00 DEBUG (7): Line number:205
2013-05-18T14:21:04+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T14:21:04+00:00 DEBUG (7): Line number:190
2013-05-18T14:21:04+00:00 DEBUG (7): Line number:205
2013-05-18T14:21:06+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T14:21:06+00:00 DEBUG (7): Line number:190
2013-05-18T14:21:06+00:00 DEBUG (7): Line number:200product/183,id=65
2013-05-18T14:21:06+00:00 DEBUG (7): Line number:205ge-smartwater-reverse-osmosis-filter/
2013-05-18T14:21:06+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T14:21:06+00:00 DEBUG (7): Line number:190
2013-05-18T14:21:06+00:00 DEBUG (7): Line number:205ge-smartwater-reverse-osmosis-filter/
2013-05-18T14:21:06+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T14:21:06+00:00 DEBUG (7): Line number:190
2013-05-18T14:21:06+00:00 DEBUG (7): Line number:205ge-smartwater-reverse-osmosis-filter/
2013-05-18T14:21:06+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T14:21:06+00:00 DEBUG (7): Line number:190
2013-05-18T14:21:06+00:00 DEBUG (7): Line number:205ge-smartwater-reverse-osmosis-filter/
2013-05-18T14:21:06+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T14:21:06+00:00 DEBUG (7): Line number:190
2013-05-18T14:21:06+00:00 DEBUG (7): Line number:205ge-smartwater-reverse-osmosis-filter/
2013-05-18T14:21:06+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T14:21:06+00:00 DEBUG (7): Line number:190
2013-05-18T14:21:06+00:00 DEBUG (7): Line number:205ge-smartwater-reverse-osmosis-filter/
2013-05-18T14:21:10+00:00 ERR (3): Notice: Undefined index: name_setting  in /home/mywaterf/public_html/app/design/frontend/default/f002/template/sortingcategory/toolbar.phtml on line 83
2013-05-18T14:21:10+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T14:21:10+00:00 DEBUG (7): Line number:190
2013-05-18T14:21:10+00:00 DEBUG (7): Line number:200product/167/36,id=
2013-05-18T14:21:10+00:00 DEBUG (7): Line number:205
2013-05-18T14:21:10+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T14:21:10+00:00 DEBUG (7): Line number:190
2013-05-18T14:21:10+00:00 DEBUG (7): Line number:205
2013-05-18T14:21:10+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T14:21:10+00:00 DEBUG (7): Line number:190
2013-05-18T14:21:10+00:00 DEBUG (7): Line number:200product/215/36,id=
2013-05-18T14:21:10+00:00 DEBUG (7): Line number:205
2013-05-18T14:21:10+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T14:21:10+00:00 DEBUG (7): Line number:190
2013-05-18T14:21:10+00:00 DEBUG (7): Line number:205
2013-05-18T14:21:10+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T14:21:10+00:00 DEBUG (7): Line number:190
2013-05-18T14:21:10+00:00 DEBUG (7): Line number:200product/212/36,id=
2013-05-18T14:21:10+00:00 DEBUG (7): Line number:205
2013-05-18T14:21:10+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T14:21:10+00:00 DEBUG (7): Line number:190
2013-05-18T14:21:10+00:00 DEBUG (7): Line number:205
2013-05-18T14:21:10+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T14:21:10+00:00 DEBUG (7): Line number:190
2013-05-18T14:21:10+00:00 DEBUG (7): Line number:200product/206/36,id=
2013-05-18T14:21:10+00:00 DEBUG (7): Line number:205
2013-05-18T14:21:10+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T14:21:10+00:00 DEBUG (7): Line number:190
2013-05-18T14:21:10+00:00 DEBUG (7): Line number:205
2013-05-18T14:21:10+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T14:21:10+00:00 DEBUG (7): Line number:190
2013-05-18T14:21:10+00:00 DEBUG (7): Line number:200product/204/36,id=
2013-05-18T14:21:10+00:00 DEBUG (7): Line number:205
2013-05-18T14:21:10+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T14:21:10+00:00 DEBUG (7): Line number:190
2013-05-18T14:21:10+00:00 DEBUG (7): Line number:205
2013-05-18T14:21:10+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T14:21:10+00:00 DEBUG (7): Line number:190
2013-05-18T14:21:10+00:00 DEBUG (7): Line number:200product/169/36,id=
2013-05-18T14:21:10+00:00 DEBUG (7): Line number:205
2013-05-18T14:21:10+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T14:21:10+00:00 DEBUG (7): Line number:190
2013-05-18T14:21:10+00:00 DEBUG (7): Line number:205
2013-05-18T14:21:10+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T14:21:10+00:00 DEBUG (7): Line number:190
2013-05-18T14:21:10+00:00 DEBUG (7): Line number:200product/168/36,id=
2013-05-18T14:21:10+00:00 DEBUG (7): Line number:205
2013-05-18T14:21:10+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T14:21:10+00:00 DEBUG (7): Line number:190
2013-05-18T14:21:10+00:00 DEBUG (7): Line number:205
2013-05-18T14:21:10+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T14:21:10+00:00 DEBUG (7): Line number:190
2013-05-18T14:21:10+00:00 DEBUG (7): Line number:200product/196/36,id=
2013-05-18T14:21:10+00:00 DEBUG (7): Line number:205
2013-05-18T14:21:10+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T14:21:10+00:00 DEBUG (7): Line number:190
2013-05-18T14:21:10+00:00 DEBUG (7): Line number:205
2013-05-18T14:21:12+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T14:21:12+00:00 DEBUG (7): Line number:190
2013-05-18T14:21:12+00:00 DEBUG (7): Line number:200product/206,id=141
2013-05-18T14:21:12+00:00 DEBUG (7): Line number:205electrulux-pureadvantage-refrigerator-water-filter/
2013-05-18T14:21:12+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T14:21:12+00:00 DEBUG (7): Line number:190
2013-05-18T14:21:12+00:00 DEBUG (7): Line number:205electrulux-pureadvantage-refrigerator-water-filter/
2013-05-18T14:21:12+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T14:21:12+00:00 DEBUG (7): Line number:190
2013-05-18T14:21:12+00:00 DEBUG (7): Line number:205electrulux-pureadvantage-refrigerator-water-filter/
2013-05-18T14:21:12+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T14:21:12+00:00 DEBUG (7): Line number:190
2013-05-18T14:21:12+00:00 DEBUG (7): Line number:205electrulux-pureadvantage-refrigerator-water-filter/
2013-05-18T14:21:12+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T14:21:12+00:00 DEBUG (7): Line number:190
2013-05-18T14:21:12+00:00 DEBUG (7): Line number:205electrulux-pureadvantage-refrigerator-water-filter/
2013-05-18T14:21:12+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T14:21:12+00:00 DEBUG (7): Line number:190
2013-05-18T14:21:12+00:00 DEBUG (7): Line number:205electrulux-pureadvantage-refrigerator-water-filter/
2013-05-18T14:21:15+00:00 ERR (3): Notice: Undefined index: name_setting  in /home/mywaterf/public_html/app/design/frontend/default/f002/template/sortingcategory/toolbar.phtml on line 83
2013-05-18T14:21:15+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T14:21:15+00:00 DEBUG (7): Line number:190
2013-05-18T14:21:15+00:00 DEBUG (7): Line number:200product/183/40,id=
2013-05-18T14:21:15+00:00 DEBUG (7): Line number:205
2013-05-18T14:21:15+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T14:21:15+00:00 DEBUG (7): Line number:190
2013-05-18T14:21:15+00:00 DEBUG (7): Line number:205
2013-05-18T14:21:15+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T14:21:15+00:00 DEBUG (7): Line number:190
2013-05-18T14:21:15+00:00 DEBUG (7): Line number:200product/182/40,id=
2013-05-18T14:21:15+00:00 DEBUG (7): Line number:205
2013-05-18T14:21:15+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T14:21:15+00:00 DEBUG (7): Line number:190
2013-05-18T14:21:15+00:00 DEBUG (7): Line number:205
2013-05-18T14:21:15+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T14:21:15+00:00 DEBUG (7): Line number:190
2013-05-18T14:21:15+00:00 DEBUG (7): Line number:200product/176/40,id=
2013-05-18T14:21:15+00:00 DEBUG (7): Line number:205
2013-05-18T14:21:15+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T14:21:15+00:00 DEBUG (7): Line number:190
2013-05-18T14:21:15+00:00 DEBUG (7): Line number:205
2013-05-18T14:21:15+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T14:21:15+00:00 DEBUG (7): Line number:190
2013-05-18T14:21:15+00:00 DEBUG (7): Line number:200product/190/40,id=
2013-05-18T14:21:15+00:00 DEBUG (7): Line number:205
2013-05-18T14:21:15+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T14:21:15+00:00 DEBUG (7): Line number:190
2013-05-18T14:21:15+00:00 DEBUG (7): Line number:205
2013-05-18T14:21:15+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T14:21:15+00:00 DEBUG (7): Line number:190
2013-05-18T14:21:15+00:00 DEBUG (7): Line number:200product/192/40,id=
2013-05-18T14:21:15+00:00 DEBUG (7): Line number:205
2013-05-18T14:21:15+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T14:21:15+00:00 DEBUG (7): Line number:190
2013-05-18T14:21:15+00:00 DEBUG (7): Line number:205
2013-05-18T14:21:15+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T14:21:15+00:00 DEBUG (7): Line number:190
2013-05-18T14:21:15+00:00 DEBUG (7): Line number:200product/181/40,id=
2013-05-18T14:21:15+00:00 DEBUG (7): Line number:205
2013-05-18T14:21:15+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T14:21:15+00:00 DEBUG (7): Line number:190
2013-05-18T14:21:15+00:00 DEBUG (7): Line number:205
2013-05-18T14:21:15+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T14:21:15+00:00 DEBUG (7): Line number:190
2013-05-18T14:21:15+00:00 DEBUG (7): Line number:200product/191/40,id=
2013-05-18T14:21:15+00:00 DEBUG (7): Line number:205
2013-05-18T14:21:15+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T14:21:15+00:00 DEBUG (7): Line number:190
2013-05-18T14:21:15+00:00 DEBUG (7): Line number:205
2013-05-18T14:21:17+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T14:21:17+00:00 DEBUG (7): Line number:190
2013-05-18T14:21:17+00:00 DEBUG (7): Line number:200product/190,id=88
2013-05-18T14:21:17+00:00 DEBUG (7): Line number:205ge-smartwater-replacement-filter-fxulc/
2013-05-18T14:21:17+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T14:21:17+00:00 DEBUG (7): Line number:190
2013-05-18T14:21:17+00:00 DEBUG (7): Line number:205ge-smartwater-replacement-filter-fxulc/
2013-05-18T14:21:17+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T14:21:17+00:00 DEBUG (7): Line number:190
2013-05-18T14:21:17+00:00 DEBUG (7): Line number:205ge-smartwater-replacement-filter-fxulc/
2013-05-18T14:21:17+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T14:21:17+00:00 DEBUG (7): Line number:190
2013-05-18T14:21:17+00:00 DEBUG (7): Line number:205ge-smartwater-replacement-filter-fxulc/
2013-05-18T14:21:17+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T14:21:17+00:00 DEBUG (7): Line number:190
2013-05-18T14:21:17+00:00 DEBUG (7): Line number:205ge-smartwater-replacement-filter-fxulc/
2013-05-18T14:21:17+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T14:21:17+00:00 DEBUG (7): Line number:190
2013-05-18T14:21:17+00:00 DEBUG (7): Line number:205ge-smartwater-replacement-filter-fxulc/

User generated image
User generated image
just in case.. here is a phpinfo() page: http://www.mywaterfilters.com/test.php
Ok,

replace the log printout
Mage::log('Line number:200'.$requestPath);
to
Mage::log('Line number:200'.$requestPath.',store id'.$storeId.', current store:'.Mage::app()->getStore()->getId());
Here you go!

2013-05-18T14:38:18+00:00 ERR (3): Notice: Undefined index: name_setting  in /home/mywaterf/public_html/app/design/frontend/default/f002/template/sortingcategory/toolbar.phtml on line 83
2013-05-18T14:38:18+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T14:38:18+00:00 DEBUG (7): Line number:190
2013-05-18T14:38:18+00:00 DEBUG (7): Line number:200,store id0, current store:1
2013-05-18T14:38:18+00:00 DEBUG (7): Line number:205
2013-05-18T14:38:18+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T14:38:18+00:00 DEBUG (7): Line number:190
2013-05-18T14:38:18+00:00 DEBUG (7): Line number:205
2013-05-18T14:38:18+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T14:38:18+00:00 DEBUG (7): Line number:190
2013-05-18T14:38:18+00:00 DEBUG (7): Line number:200,store id0, current store:1
2013-05-18T14:38:18+00:00 DEBUG (7): Line number:205
2013-05-18T14:38:18+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T14:38:18+00:00 DEBUG (7): Line number:190
2013-05-18T14:38:18+00:00 DEBUG (7): Line number:205
2013-05-18T14:38:18+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T14:38:18+00:00 DEBUG (7): Line number:190
2013-05-18T14:38:18+00:00 DEBUG (7): Line number:200,store id0, current store:1
2013-05-18T14:38:18+00:00 DEBUG (7): Line number:205
2013-05-18T14:38:18+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T14:38:18+00:00 DEBUG (7): Line number:190
2013-05-18T14:38:18+00:00 DEBUG (7): Line number:205
2013-05-18T14:38:18+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T14:38:18+00:00 DEBUG (7): Line number:190
2013-05-18T14:38:18+00:00 DEBUG (7): Line number:200,store id0, current store:1
2013-05-18T14:38:18+00:00 DEBUG (7): Line number:205
2013-05-18T14:38:18+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T14:38:18+00:00 DEBUG (7): Line number:190
2013-05-18T14:38:18+00:00 DEBUG (7): Line number:205
2013-05-18T14:38:18+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T14:38:18+00:00 DEBUG (7): Line number:190
2013-05-18T14:38:18+00:00 DEBUG (7): Line number:200,store id0, current store:1
2013-05-18T14:38:18+00:00 DEBUG (7): Line number:205
2013-05-18T14:38:18+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T14:38:18+00:00 DEBUG (7): Line number:190
2013-05-18T14:38:18+00:00 DEBUG (7): Line number:205
2013-05-18T14:38:18+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T14:38:18+00:00 DEBUG (7): Line number:190
2013-05-18T14:38:18+00:00 DEBUG (7): Line number:200,store id0, current store:1
2013-05-18T14:38:18+00:00 DEBUG (7): Line number:205
2013-05-18T14:38:18+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T14:38:18+00:00 DEBUG (7): Line number:190
2013-05-18T14:38:18+00:00 DEBUG (7): Line number:205
2013-05-18T14:38:18+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T14:38:18+00:00 DEBUG (7): Line number:190
2013-05-18T14:38:18+00:00 DEBUG (7): Line number:200,store id0, current store:1
2013-05-18T14:38:18+00:00 DEBUG (7): Line number:205
2013-05-18T14:38:18+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T14:38:18+00:00 DEBUG (7): Line number:190
2013-05-18T14:38:18+00:00 DEBUG (7): Line number:205
2013-05-18T14:38:18+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T14:38:18+00:00 DEBUG (7): Line number:190
2013-05-18T14:38:18+00:00 DEBUG (7): Line number:200,store id0, current store:1
2013-05-18T14:38:18+00:00 DEBUG (7): Line number:205
2013-05-18T14:38:18+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T14:38:18+00:00 DEBUG (7): Line number:190
2013-05-18T14:38:18+00:00 DEBUG (7): Line number:205
2013-05-18T14:38:22+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T14:38:22+00:00 DEBUG (7): Line number:190
2013-05-18T14:38:22+00:00 DEBUG (7): Line number:200,store id1, current store:1
2013-05-18T14:38:22+00:00 DEBUG (7): Line number:205electrulux-pureadvantage-refrigerator-water-filter/
2013-05-18T14:38:22+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T14:38:22+00:00 DEBUG (7): Line number:190
2013-05-18T14:38:22+00:00 DEBUG (7): Line number:205electrulux-pureadvantage-refrigerator-water-filter/
2013-05-18T14:38:22+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T14:38:22+00:00 DEBUG (7): Line number:190
2013-05-18T14:38:22+00:00 DEBUG (7): Line number:205electrulux-pureadvantage-refrigerator-water-filter/
2013-05-18T14:38:22+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T14:38:22+00:00 DEBUG (7): Line number:190
2013-05-18T14:38:22+00:00 DEBUG (7): Line number:205electrulux-pureadvantage-refrigerator-water-filter/
2013-05-18T14:38:22+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T14:38:22+00:00 DEBUG (7): Line number:190
2013-05-18T14:38:22+00:00 DEBUG (7): Line number:205electrulux-pureadvantage-refrigerator-water-filter/
2013-05-18T14:38:22+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T14:38:22+00:00 DEBUG (7): Line number:190
2013-05-18T14:38:22+00:00 DEBUG (7): Line number:205electrulux-pureadvantage-refrigerator-water-filter/
2013-05-18T14:38:27+00:00 ERR (3): Notice: Undefined index: name_setting  in /home/mywaterf/public_html/app/design/frontend/default/f002/template/sortingcategory/toolbar.phtml on line 83
2013-05-18T14:38:27+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T14:38:27+00:00 DEBUG (7): Line number:190
2013-05-18T14:38:27+00:00 DEBUG (7): Line number:200,store id0, current store:1
2013-05-18T14:38:27+00:00 DEBUG (7): Line number:205
2013-05-18T14:38:27+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T14:38:27+00:00 DEBUG (7): Line number:190
2013-05-18T14:38:27+00:00 DEBUG (7): Line number:205
2013-05-18T14:38:27+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T14:38:27+00:00 DEBUG (7): Line number:190
2013-05-18T14:38:27+00:00 DEBUG (7): Line number:200,store id0, current store:1
2013-05-18T14:38:27+00:00 DEBUG (7): Line number:205
2013-05-18T14:38:27+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T14:38:27+00:00 DEBUG (7): Line number:190
2013-05-18T14:38:27+00:00 DEBUG (7): Line number:205
2013-05-18T14:38:27+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T14:38:27+00:00 DEBUG (7): Line number:190
2013-05-18T14:38:27+00:00 DEBUG (7): Line number:200,store id0, current store:1
2013-05-18T14:38:27+00:00 DEBUG (7): Line number:205
2013-05-18T14:38:27+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T14:38:27+00:00 DEBUG (7): Line number:190
2013-05-18T14:38:27+00:00 DEBUG (7): Line number:205
2013-05-18T14:38:27+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T14:38:27+00:00 DEBUG (7): Line number:190
2013-05-18T14:38:27+00:00 DEBUG (7): Line number:200,store id0, current store:1
2013-05-18T14:38:27+00:00 DEBUG (7): Line number:205
2013-05-18T14:38:27+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T14:38:27+00:00 DEBUG (7): Line number:190
2013-05-18T14:38:27+00:00 DEBUG (7): Line number:205
2013-05-18T14:38:27+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T14:38:27+00:00 DEBUG (7): Line number:190
2013-05-18T14:38:27+00:00 DEBUG (7): Line number:200,store id0, current store:1
2013-05-18T14:38:27+00:00 DEBUG (7): Line number:205
2013-05-18T14:38:27+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T14:38:27+00:00 DEBUG (7): Line number:190
2013-05-18T14:38:27+00:00 DEBUG (7): Line number:205
2013-05-18T14:38:27+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T14:38:27+00:00 DEBUG (7): Line number:190
2013-05-18T14:38:27+00:00 DEBUG (7): Line number:200,store id0, current store:1
2013-05-18T14:38:27+00:00 DEBUG (7): Line number:205
2013-05-18T14:38:27+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T14:38:27+00:00 DEBUG (7): Line number:190
2013-05-18T14:38:27+00:00 DEBUG (7): Line number:205
2013-05-18T14:38:27+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T14:38:27+00:00 DEBUG (7): Line number:190
2013-05-18T14:38:27+00:00 DEBUG (7): Line number:200,store id0, current store:1
2013-05-18T14:38:27+00:00 DEBUG (7): Line number:205
2013-05-18T14:38:27+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T14:38:27+00:00 DEBUG (7): Line number:190
2013-05-18T14:38:27+00:00 DEBUG (7): Line number:205
2013-05-18T14:38:27+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T14:38:27+00:00 DEBUG (7): Line number:190
2013-05-18T14:38:27+00:00 DEBUG (7): Line number:200,store id0, current store:1
2013-05-18T14:38:27+00:00 DEBUG (7): Line number:205
2013-05-18T14:38:27+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T14:38:27+00:00 DEBUG (7): Line number:190
2013-05-18T14:38:27+00:00 DEBUG (7): Line number:205
2013-05-18T14:38:29+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T14:38:29+00:00 DEBUG (7): Line number:190
2013-05-18T14:38:29+00:00 DEBUG (7): Line number:200,store id1, current store:1
2013-05-18T14:38:29+00:00 DEBUG (7): Line number:205whirlpool-refrigerator-pur-water-filter/
2013-05-18T14:38:29+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T14:38:29+00:00 DEBUG (7): Line number:190
2013-05-18T14:38:29+00:00 DEBUG (7): Line number:205whirlpool-refrigerator-pur-water-filter/
2013-05-18T14:38:29+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T14:38:29+00:00 DEBUG (7): Line number:190
2013-05-18T14:38:29+00:00 DEBUG (7): Line number:205whirlpool-refrigerator-pur-water-filter/
2013-05-18T14:38:29+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T14:38:29+00:00 DEBUG (7): Line number:190
2013-05-18T14:38:29+00:00 DEBUG (7): Line number:205whirlpool-refrigerator-pur-water-filter/
2013-05-18T14:38:29+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T14:38:29+00:00 DEBUG (7): Line number:190
2013-05-18T14:38:29+00:00 DEBUG (7): Line number:205whirlpool-refrigerator-pur-water-filter/
2013-05-18T14:38:29+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T14:38:29+00:00 DEBUG (7): Line number:190
2013-05-18T14:38:29+00:00 DEBUG (7): Line number:205whirlpool-refrigerator-pur-water-filter/
2013-05-18T14:38:34+00:00 ERR (3): Notice: Undefined index: name_setting  in /home/mywaterf/public_html/app/design/frontend/default/f002/template/sortingcategory/toolbar.phtml on line 83
2013-05-18T14:38:34+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T14:38:34+00:00 DEBUG (7): Line number:190
2013-05-18T14:38:34+00:00 DEBUG (7): Line number:200,store id0, current store:1
2013-05-18T14:38:34+00:00 DEBUG (7): Line number:205
2013-05-18T14:38:35+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T14:38:35+00:00 DEBUG (7): Line number:190
2013-05-18T14:38:35+00:00 DEBUG (7): Line number:205
2013-05-18T14:38:35+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T14:38:35+00:00 DEBUG (7): Line number:190
2013-05-18T14:38:35+00:00 DEBUG (7): Line number:200,store id0, current store:1
2013-05-18T14:38:35+00:00 DEBUG (7): Line number:205
2013-05-18T14:38:35+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T14:38:35+00:00 DEBUG (7): Line number:190
2013-05-18T14:38:35+00:00 DEBUG (7): Line number:205
2013-05-18T14:38:35+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T14:38:35+00:00 DEBUG (7): Line number:190
2013-05-18T14:38:35+00:00 DEBUG (7): Line number:200,store id0, current store:1
2013-05-18T14:38:35+00:00 DEBUG (7): Line number:205
2013-05-18T14:38:35+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T14:38:35+00:00 DEBUG (7): Line number:190
2013-05-18T14:38:35+00:00 DEBUG (7): Line number:205
2013-05-18T14:38:35+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T14:38:35+00:00 DEBUG (7): Line number:190
2013-05-18T14:38:35+00:00 DEBUG (7): Line number:200,store id0, current store:1
2013-05-18T14:38:35+00:00 DEBUG (7): Line number:205
2013-05-18T14:38:35+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T14:38:35+00:00 DEBUG (7): Line number:190
2013-05-18T14:38:35+00:00 DEBUG (7): Line number:205
2013-05-18T14:38:35+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T14:38:35+00:00 DEBUG (7): Line number:190
2013-05-18T14:38:35+00:00 DEBUG (7): Line number:200,store id0, current store:1
2013-05-18T14:38:35+00:00 DEBUG (7): Line number:205
2013-05-18T14:38:35+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T14:38:35+00:00 DEBUG (7): Line number:190
2013-05-18T14:38:35+00:00 DEBUG (7): Line number:205
2013-05-18T14:38:35+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T14:38:35+00:00 DEBUG (7): Line number:190
2013-05-18T14:38:35+00:00 DEBUG (7): Line number:200,store id0, current store:1
2013-05-18T14:38:35+00:00 DEBUG (7): Line number:205
2013-05-18T14:38:35+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T14:38:35+00:00 DEBUG (7): Line number:190
2013-05-18T14:38:35+00:00 DEBUG (7): Line number:205
2013-05-18T14:38:38+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T14:38:38+00:00 DEBUG (7): Line number:190
2013-05-18T14:38:38+00:00 DEBUG (7): Line number:200,store id1, current store:1
2013-05-18T14:38:38+00:00 DEBUG (7): Line number:205maytag-undersink-replacement-cartridge/
2013-05-18T14:38:38+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T14:38:38+00:00 DEBUG (7): Line number:190
2013-05-18T14:38:38+00:00 DEBUG (7): Line number:205maytag-undersink-replacement-cartridge/
2013-05-18T14:38:38+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T14:38:38+00:00 DEBUG (7): Line number:190
2013-05-18T14:38:38+00:00 DEBUG (7): Line number:205maytag-undersink-replacement-cartridge/
2013-05-18T14:38:38+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T14:38:38+00:00 DEBUG (7): Line number:190
2013-05-18T14:38:38+00:00 DEBUG (7): Line number:205maytag-undersink-replacement-cartridge/
2013-05-18T14:38:38+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T14:38:38+00:00 DEBUG (7): Line number:190
2013-05-18T14:38:38+00:00 DEBUG (7): Line number:205maytag-undersink-replacement-cartridge/
2013-05-18T14:38:38+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T14:38:38+00:00 DEBUG (7): Line number:190
2013-05-18T14:38:38+00:00 DEBUG (7): Line number:205maytag-undersink-replacement-cartridge/
2013-05-18T14:38:42+00:00 ERR (3): Notice: Undefined index: name_setting  in /home/mywaterf/public_html/app/design/frontend/default/f002/template/sortingcategory/toolbar.phtml on line 83
2013-05-18T14:38:42+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T14:38:42+00:00 DEBUG (7): Line number:190
2013-05-18T14:38:42+00:00 DEBUG (7): Line number:200,store id0, current store:1
2013-05-18T14:38:42+00:00 DEBUG (7): Line number:205
2013-05-18T14:38:42+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T14:38:42+00:00 DEBUG (7): Line number:190
2013-05-18T14:38:42+00:00 DEBUG (7): Line number:205
2013-05-18T14:38:42+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T14:38:42+00:00 DEBUG (7): Line number:190
2013-05-18T14:38:42+00:00 DEBUG (7): Line number:200,store id0, current store:1
2013-05-18T14:38:42+00:00 DEBUG (7): Line number:205
2013-05-18T14:38:42+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T14:38:42+00:00 DEBUG (7): Line number:190
2013-05-18T14:38:42+00:00 DEBUG (7): Line number:205
2013-05-18T14:38:42+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T14:38:42+00:00 DEBUG (7): Line number:190
2013-05-18T14:38:42+00:00 DEBUG (7): Line number:200,store id0, current store:1
2013-05-18T14:38:42+00:00 DEBUG (7): Line number:205
2013-05-18T14:38:42+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T14:38:42+00:00 DEBUG (7): Line number:190
2013-05-18T14:38:42+00:00 DEBUG (7): Line number:205
2013-05-18T14:38:44+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T14:38:44+00:00 DEBUG (7): Line number:190
2013-05-18T14:38:44+00:00 DEBUG (7): Line number:200,store id1, current store:1
2013-05-18T14:38:44+00:00 DEBUG (7): Line number:205ge-icemaker-filter-kit/
2013-05-18T14:38:44+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T14:38:44+00:00 DEBUG (7): Line number:190
2013-05-18T14:38:44+00:00 DEBUG (7): Line number:205ge-icemaker-filter-kit/
2013-05-18T14:38:44+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T14:38:44+00:00 DEBUG (7): Line number:190
2013-05-18T14:38:44+00:00 DEBUG (7): Line number:205ge-icemaker-filter-kit/
2013-05-18T14:38:44+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T14:38:44+00:00 DEBUG (7): Line number:190
2013-05-18T14:38:44+00:00 DEBUG (7): Line number:205ge-icemaker-filter-kit/
2013-05-18T14:38:44+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T14:38:44+00:00 DEBUG (7): Line number:190
2013-05-18T14:38:44+00:00 DEBUG (7): Line number:205ge-icemaker-filter-kit/
2013-05-18T14:38:44+00:00 ERR (3): Notice: Undefined variable: requestPath  in /home/mywaterf/public_html/app/code/core/Mage/Catalog/Model/Product/Url.php on line 191
2013-05-18T14:38:44+00:00 DEBUG (7): Line number:190
2013-05-18T14:38:44+00:00 DEBUG (7): Line number:205ge-icemaker-filter-kit/
Ok, so the issue is clear. The products are getting in the result set for category listing has store id = 0 (usually admin store, i.e. the one used for hosting the admin web site).
Now I am scratching my head to get you our of this. Assigning products to your web site supposed to cure that but it didn't.
Give me a minute :-)
I need another dump:
Select * from catalog_product_website;
And also:
Select * from catalog_category_product_index;
Oh, come on :-) It supposed to work already. Everything inline and correct :-)

Let's print out another object.

In your category template right after
$_productCollection = $this->getLoadedProductCollection();
put the following:

echo "<!-- ";
print_r($_productCollection);
echo "-->";

Paste to pastebin the source of the category page

don't forget to remove the echo afterwards (it will slow down all your category pages)
Hopefully i did it right:

http://pastebin.com/Zi38VwHU
Yes, it is correct.

Let's do another attempt of fixing it.

Find the following product in admin: "GE Household Pre-Filtration Sediment Filter"
Edit URL Key of the product to something different than it is now (BTW, is it empty or not?)

Save the product.
Reindex (all the tables just in case)
Clean cache
and test - look for the specific product whether it's URL is fixed.

Also another thing that came in mind - look in the code (not in the core files of Magento) for startEnvironmentEmulation function.
May be some "evil" programmer left it in the category processing in some extension/template.
no it was not empty.. changed it to the sku number its the second product here:

http://www.mywaterfilters.com/water-filters/ge/

Im going to download the whole site and search for that function in the text... Any particular folder to look in off the start?
Your not going to believe this but i think i narrowed down the problem.. the site has one extension install and if i disable it.. the urls work

its this extension.. not sure yet if the site NEEDS this.. but any thoughts on the extension:

http://store.belvg.com/products-sorting.html
magento/app/code/local or
magento/app/code/community

BTW, I think I know what is the best way to debug it without boring you with all those dumps.
Can you just dump the entire db so I will run a debugger on my local instance just to see what is going on and how come you are getting store=0 when requesting the product list in category view?
In order to eliminate privacy issues drop me a note with the link to  studentlazy at Yahoo, it will be more convinient I guess
Oh, you found it :-) I will take a look on the extension
this is the extesion code located in the theme folder

http://pastebin.com/y4GHtx1B
Argh, it's paid extension. Can you send me their folder? It should be in magento/app/code/local/AW... something
i couldnt tell which folder so i just did the whole AW folder for you to take a look:

https://dl.dropboxusercontent.com/u/9331742/AW.zip

looks like the plugin just added a sorting option on the category page.
it's strange - I do not find any config.xml files inside. Are you sure you zipped everything in app/code/local/AW* ?
Ooops, it's my bad. It's BelVG extension, not Ahead Works extension...
Please look for BelVG folder also in magento/app/code/community (they put their extension into community code pool sometimes)
lets try again.. here is everything from: /app/code/local/AW

https://dl.dropboxusercontent.com/u/9331742/AW2.zip
No, no, it's my bad - see my previous comment. It is BelVG extension, I mixed it with other famous company who produces the extensions (and you have it obviously:-) ).

Please provide belvg folder rather than AW (look also in magento/app/code/community)
lol sorry about that.. if i knew a little more what i was doing i would have caught that..

try this:  https://dl.dropboxusercontent.com/u/9331742/Belvg.zip
ASKER CERTIFIED SOLUTION
Avatar of LazyStudent
LazyStudent

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
hmmm. i tried that and didnt work. :(
hope you've changed it in the right place (I've tested the code on my local machine and succeeded to reproduce the behavior, after fixing those lines - it started to display the correct URL).

Also please remove the var/cache just in case in order to eliminate precached values.

After that please send me the log again. Do we see "store id1" where it was "store id0"?
Hi jporter80, if the issue is closed I'll appreciate if you close the question
Thanks for the hard work.  Found out it was an extension problem and this fixed the problem