I no longer provide installation support on forum for all my modules. However, if there are real bugs with the modules please feel free to contact me
This is how the product link is normally built
And here is the function to get the product typePHP Code:
$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>';
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?)PHP Code:
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';
}
}
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.
I no longer provide installation support on forum for all my modules. However, if there are real bugs with the modules please feel free to contact me
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?
@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
[FONT="]Update products set products_type=1;
GLuck, you will need that
[/FONT]
I no longer provide installation support on forum for all my modules. However, if there are real bugs with the modules please feel free to contact me
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?ma...oducts_id=1013
testing as a local site on my laptop so not url to give. going to start again and see if that helps
This will help you to decide which one to get
http://wiki.rubikintegration.com/zen.../ssu/changelog
I no longer provide installation support on forum for all my modules. However, if there are real bugs with the modules please feel free to contact me
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/
I no longer provide installation support on forum for all my modules. However, if there are real bugs with the modules please feel free to contact me
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?
I no longer provide installation support on forum for all my modules. However, if there are real bugs with the modules please feel free to contact me
Bookmarks