Zen Cart Logo
Forums / All Other Contributions/Addons / Simple SEO URL (OLD version) [support thread]

Simple SEO URL (OLD version) [support thread]

Views: 1,113,827

Results 2,121 to 2,140 of 5,058
4 Feb 2009, 11:12 PM
#2121
yellow1912 avatar

yellow1912

Totally Zenned

Join Date:
Oct 2006
Posts:
5,422
Plugin Contributions:
0

Simple SEO URL (OLD version) [support thread]

tameron:

Even when I turn SSU off I still have the same problem...

http://www.munchiegifts.com/index.php?main_page=_info&cPath=78_1048&products_id=1465

Getting page not found still.

Will upgrade to RC5 in about 15min. Have something to do real fast.

Will post again when it's uploaded.

Thanks for helping me with this!Okie, I suspect something went wrong here, it is neither ssu bug or any other module bug, I suspect something like this:
you somehow deleted part of the file name def.

Use your developer tool kit to find this:
FILENAME_PRODUCT_INFO

4 Feb 2009, 11:14 PM
#2122
yellow1912 avatar

yellow1912

Totally Zenned

Join Date:
Oct 2006
Posts:
5,422
Plugin Contributions:
0

Re: Simple SEO URL (OLD version) [support thread]

MikeyG:

yellow1912

Thank you for the very quick response.

I have installed the debug file but get no log. (I have changed the cache to writable but each time I go back to it it is read only) Running WAMP with PHP5 on vista pc for testing purposes localy.

If I get not log I am guessing this means no issue identified. The page is not blank it is the product lising page but the heading changes to that of the product clicked on.

I have reloaded your files just incase I had missed one on install. but still the same issue.

ThanksYou can use the debug option b) Attempt to show errors on-screen in the link I posted, sometimes it can show more error. Usually a blank page or part of the page goes blank means the script encounters a fatal error somewhere.

4 Feb 2009, 11:24 PM
#2123
yellow1912 avatar

yellow1912

Totally Zenned

Join Date:
Oct 2006
Posts:
5,422
Plugin Contributions:
0

Re: Simple SEO URL (OLD version) [support thread]

yellow1912:

Okie, I suspect something went wrong here, it is neither ssu bug or any other module bug, I suspect something like this:
you somehow deleted part of the file name def.

Use your developer tool kit to find this:
FILENAME_PRODUCT_INFO
This is how the product link is normally built

$lc_text = '<a href="' . zen_href_link(zen_get_info_page($listing->fields['products_id']), 'cPath=' . (($_GET['manufacturers_id'] > 0 and $_GET['filter_id']) > 0 ?  zen_get_generated_category_path_rev($_GET['filter_id']) : ($_GET['cPath'] > 0 ? zen_get_generated_category_path_rev($_GET['cPath']) : zen_get_generated_category_path_rev($listing->fields['master_categories_id']))) . '&products_id=' . $listing->fields['products_id']) . '">' . zen_image(DIR_WS_IMAGES . $listing->fields['products_image'], $listing->fields['products_name'], IMAGE_PRODUCT_LISTING_WIDTH, IMAGE_PRODUCT_LISTING_HEIGHT, 'class="listingProductImage"') . '</a>';
```And here is the function to get the product type

```php
function zen_get_info_page($zf_product_id) {
    global $db;
    $sql = "select products_type from " . TABLE_PRODUCTS . " where products_id = '" . (int)$zf_product_id . "'";
    $zp_type = $db->Execute($sql);
    if ($zp_type->RecordCount() == 0) {
      return 'product_info';
    } else {
      $zp_product_type = $zp_type->fields['products_type'];
      $sql = "select type_handler from " . TABLE_PRODUCT_TYPES . " where type_id = '" . (int)$zp_product_type . "'";
      $zp_handler = $db->Execute($sql);
      return $zp_handler->fields['type_handler'] . '_info';
    }
  }
```As you can see, turning of ssu didnt solve it, so ssu is not the cause of this. My wild guess is that you somehow messed up the product type field. Perhaps all the product type is missing (are you using eazy populate by any chance?)

This is rare tho.

Perhaps you can use your phpmyadmin, and go to table product_types and see if something is wrong there, you can get the list of records there and post here, tho it is not really related to SSU.
4 Feb 2009, 11:25 PM
#2124
mikeyg avatar

mikeyg

Totally Zenned

Join Date:
May 2005
Posts:
515
Plugin Contributions:
0

Re: Simple SEO URL (OLD version) [support thread]

yellow1912

no error messages showing using method b)

further info - I can add a product to cart but when trying to look a the shopping cart it bring up the home page only as does trying to log in.

might this be an .htaccess rewrite issue?

4 Feb 2009, 11:30 PM
#2125
yellow1912 avatar

yellow1912

Totally Zenned

Join Date:
Oct 2006
Posts:
5,422
Plugin Contributions:
0

Re: Simple SEO URL (OLD version) [support thread]

@MikeyG: link to the specific site and page with the issue will help
@tameron: yes the description module is the cause

You need to contact the author to get it solved. But in short it created a new product type, and now when you uninstall it that product type is removed yet your products still point to it. You need to mass update all your product to the old product type.
If nothing serious has been changed you can do this:

Back up your db
Go to sql patch tool and run
Update products set products_type=1;

GLuck, you will need that

4 Feb 2009, 11:32 PM
#2127
mikeyg avatar

mikeyg

Totally Zenned

Join Date:
May 2005
Posts:
515
Plugin Contributions:
0

Re: Simple SEO URL (OLD version) [support thread]

testing as a local site on my laptop so not url to give. going to start again and see if that helps

4 Feb 2009, 11:44 PM
#2128
yellow1912 avatar

yellow1912

Totally Zenned

Join Date:
Oct 2006
Posts:
5,422
Plugin Contributions:
0

Re: Simple SEO URL (OLD version) [support thread]

tameron:

Are you talking about getting the download from here:

http://public.rubikintegration.com/ if so which one

or here

http://www.zen-cart.com/index.php?main_page=product_contrib_info&products_id=1013
This will help you to decide which one to get
http://wiki.rubikintegration.com/zencart/modules/ssu/changelog

4 Feb 2009, 11:46 PM
#2129
tameron avatar

tameron

New Zenner

Join Date:
Dec 2008
Posts:
10
Plugin Contributions:
0

Re: Simple SEO URL (OLD version) [support thread]

I dropped my products table and then restored it with my backup from this morning and then ran the sql statement and that fixed it.

Thank You!!!

Should I still upgrade SSU, and if so, where should I download the latest version from?

4 Feb 2009, 11:48 PM
#2130
yellow1912 avatar

yellow1912

Totally Zenned

Join Date:
Oct 2006
Posts:
5,422
Plugin Contributions:
0

Re: Simple SEO URL (OLD version) [support thread]

tameron:

I dropped my products table and then restored it with my backup from this morning and then ran the sql statement and that fixed it.

Thank You!!!

Should I still upgrade SSU, and if so, where should I download the latest version from?
If things work fine, and you dont need the new features, no need to upgrade.

Newest versions should always be downloaded from http://public.rubikintegration.com/

4 Feb 2009, 11:59 PM
#2131
yellow1912 avatar

yellow1912

Totally Zenned

Join Date:
Oct 2006
Posts:
5,422
Plugin Contributions:
0

Re: Simple SEO URL (OLD version) [support thread]

MikeyG:

testing as a local site on my laptop so not url to give. going to start again and see if that helps
If something is wrong with the htaccess, you should see all links not working at all. Meaning that clicking on any link should either lead to a 404 page, or homepage.

If it works for some links and not for others, then it's usually not htaccess related. I cant tell what is wrong tho, unless I really see it. I guess you are using 3.5.8 or 3.6.0RC5 with latest bug fixes?

5 Feb 2009, 9:25 AM
#2132
mikeyg avatar

mikeyg

Totally Zenned

Join Date:
May 2005
Posts:
515
Plugin Contributions:
0

Re: Simple SEO URL (OLD version) [support thread]

using the 3.6 RC5 from you site

5 Feb 2009, 9:43 PM
#2133
kdiscrete avatar

kdiscrete

New Zenner

Join Date:
Jan 2009
Posts:
43
Plugin Contributions:
0

Re: Simple SEO URL (OLD version) [support thread]

I have sent you pms

Pleaaase help me sort this problem out...

5 Feb 2009, 9:44 PM
#2134
yellow1912 avatar

yellow1912

Totally Zenned

Join Date:
Oct 2006
Posts:
5,422
Plugin Contributions:
0

Re: Simple SEO URL (OLD version) [support thread]

kdiscrete:

I have sent you pms

Pleaaase help me sort this problem out...
Next time please use this topic for help request if possible. My PM box has very limited space.

5 Feb 2009, 9:44 PM
#2135
yellow1912 avatar

yellow1912

Totally Zenned

Join Date:
Oct 2006
Posts:
5,422
Plugin Contributions:
0

Re: Simple SEO URL (OLD version) [support thread]

MikeyG:

using the 3.6 RC5 from you site
I guess I will have to see it to know what is going on. If you can have a test site to show me it would be very helpful.

6 Feb 2009, 2:29 AM
#2136
r1formetoo avatar

r1formetoo

Zen Follower

Join Date:
Sep 2008
Posts:
429
Plugin Contributions:
0

Re: Simple SEO URL (OLD version) [support thread]

Hey Yellow, I might have one that could use your expertise. I've moved my zencart from mowerpartsupply.com to redlinestands.com but I'm getting the huge error below plus a white screen when I go to redlinestands.com/catalog

Ian

Notice: Use of undefined constant SSU_STATUS - assumed 'SSU_STATUS' in /home/redlines/public_html/catalog/includes/classes/ssu/config.php on line 22

Notice: Use of undefined constant SSU_LINK_ALIAS - assumed 'SSU_LINK_ALIAS' in /home/redlines/public_html/catalog/includes/classes/ssu/config.php on line 23

Notice: Use of undefined constant SSU_MULTI_LANGUAGE_STATUS - assumed 'SSU_MULTI_LANGUAGE_STATUS' in /home/redlines/public_html/catalog/includes/classes/ssu/config.php on line 24

Notice: Use of undefined constant SSU_FILE_EXTENSION - assumed 'SSU_FILE_EXTENSION' in /home/redlines/public_html/catalog/includes/classes/ssu/config.php on line 25

Notice: Use of undefined constant SSU_MAX_LEVEL - assumed 'SSU_MAX_LEVEL' in /home/redlines/public_html/catalog/includes/classes/ssu/config.php on line 26

Notice: Use of undefined constant SSU_MINIMUM_WORD_LENGTH - assumed 'SSU_MINIMUM_WORD_LENGTH' in /home/redlines/public_html/catalog/includes/classes/ssu/config.php on line 27

Notice: Use of undefined constant SSU_MAX_NAME_LENGTH - assumed 'SSU_MAX_NAME_LENGTH' in /home/redlines/public_html/catalog/includes/classes/ssu/config.php on line 28

Notice: Use of undefined constant SSU_EXCLUDE_LIST - assumed 'SSU_EXCLUDE_LIST' in /home/redlines/public_html/catalog/includes/classes/ssu/config.php on line 29

Notice: Use of undefined constant SSU_QUERY_EXCLUDE_LIST - assumed 'SSU_QUERY_EXCLUDE_LIST' in /home/redlines/public_html/catalog/includes/classes/ssu/config.php on line 30

Notice: Use of undefined constant SSU_ID_DELIMITER - assumed 'SSU_ID_DELIMITER' in /home/redlines/public_html/catalog/includes/classes/ssu/config.php on line 39

Notice: Use of undefined constant SSU_NAME_DELIMITER - assumed 'SSU_NAME_DELIMITER' in /home/redlines/public_html/catalog/includes/classes/ssu/config.php on line 40

Parse error: syntax error, unexpected T_STATIC, expecting T_OLD_FUNCTION or T_FUNCTION or T_VAR or '}' in /home/redlines/public_html/catalog/includes/classes/ssu/core.php on line 3

Plus when I go to my admin and click on extras/Simpe SEO URL manager I get this error message. Have you seen any of this before?

Parse error: syntax error, unexpected T_STATIC, expecting T_OLD_FUNCTION or T_FUNCTION or T_VAR or '}' in /home/redlines/public_html/catalog/admin/includes/classes/ssu.php on line 12

6 Feb 2009, 2:31 AM
#2137
yellow1912 avatar

yellow1912

Totally Zenned

Join Date:
Oct 2006
Posts:
5,422
Plugin Contributions:
0

Re: Simple SEO URL (OLD version) [support thread]

All the notices mean that the database patches are not installed for some reason? Did you move the sql database as well?

The errors mean that the new server is running php4, SSU requires php5. Contact your host for that matter.

6 Feb 2009, 2:36 AM
#2138
r1formetoo avatar

r1formetoo

Zen Follower

Join Date:
Sep 2008
Posts:
429
Plugin Contributions:
0

Re: Simple SEO URL (OLD version) [support thread]

yellow1912:

All the notices mean that the database patches are not installed for some reason? Did you move the sql database as well?

The errors mean that the new server is running php4, SSU requires php5. Contact your host for that matter.

My web hosting guys were the ones responsible for moving the database. We had planned on porting my site over to a php5 server (if that's the right terminology) tonight. Maybe that will work. We'll see. Thank you.

Ian

6 Feb 2009, 5:15 AM
#2139
yellow1912 avatar

yellow1912

Totally Zenned

Join Date:
Oct 2006
Posts:
5,422
Plugin Contributions:
0

Re: Simple SEO URL (OLD version) [support thread]

SSU 3.6.0 stable is now released.

3.5.8 and other release candidate versions are now removed from server to avoid any confusion.

Changelog can be viewed here:
http://wiki.rubikintegration.com/zencart/modules/ssu/changelog

Upgraders please check:
http://wiki.rubikintegration.com/zencart/modules/ssu/upgrade

3.6.0 is a major release, it adds a bunch of new features as well as have many bugs fixed. 3.5.8 is stable and it should work fine for you. However I strongly recommend upgrading when you have time. You will like the new features, and it should make things easier and faster if your store has lots of products and categories.

6 Feb 2009, 10:44 AM
#2140
merrydown avatar

merrydown

New Zenner

Join Date:
Jan 2009
Posts:
51
Plugin Contributions:
0

Re: Simple SEO URL (OLD version) [support thread]

Hi Yellow, I just updated to 3.6.0 (from a working 3.x configuration) and firefox now gives me the message:

Redirection limit for this URL exceeded. Unable to load the requested page. This may be caused by cookies that are blocked.

Have you any idea why this might occur? I read your explanation above, but I don't know how I'd troubleshoot this. Any help would be gratefully received. I also wondered if the problem with - malfunctioning when installed in a subfolder rather than root - would ever be fixed, or if it is just one of those things?

Thanks for a great mod and generous support,

Jim