[BUG/FIX] 6.1.1 intel in one thread.

For articles specific to version 6.x
Post Reply
Martin
Site Admin
Site Admin
Posts: 1854
Joined: Wed Jun 17, 2009 6:30 pm
Location: South Yorkshire UK
Contact:

[BUG/FIX] 6.1.1 intel in one thread.

Post by Martin »

Using this space to add a few bugs that still exist or are new to the 6.1.1 system
Martin
Site Admin
Site Admin
Posts: 1854
Joined: Wed Jun 17, 2009 6:30 pm
Location: South Yorkshire UK
Contact:

Re: [BUG/FIX] 6.1.1 intel in one thread.

Post by Martin »

The breadcrumbs fix to show only one breadcrumb is now no longer required..

Ref: http://www.interspire.com/forum/showpos ... stcount=26
Martin
Site Admin
Site Admin
Posts: 1854
Joined: Wed Jun 17, 2009 6:30 pm
Location: South Yorkshire UK
Contact:

[6.x] Where have product reviews gone?

Post by Martin »

I had to do a bit searching to figure out what the heck had happened to reviews today but the problem you're having is that Interspire have re-coded the review system to allow the use of other third party review services as well as the internal system that was there before.

To get your old review functionality back you need to go to:

Admin > Settings > Comment Settings
Tick the "Built-in" option
Click on "Save"
When the page has re-loaded choose the "Built-in" tab and make sure the "Product reviews" box is ticked (if not, tick it and save).

You should now find the reviews system is working again.
Martin
Site Admin
Site Admin
Posts: 1854
Joined: Wed Jun 17, 2009 6:30 pm
Location: South Yorkshire UK
Contact:

Re: [BUG/FIX] 6.1.1 intel in one thread.

Post by Martin »

Wondering why you can't see the email integration functionality, able to change the 301 redirect, take store down for maintenance, etc.. ?

For some bizarre reason the upgrade has not upgraded the standard admin account to include access to all the new functionality so you need to create a new account and give that store admin permissions.

Hopefully I'll figure a fix for this soon but it's an "interesting" bug to say the least..
meules
Confirmed
Confirmed
Posts: 95
Joined: Wed Jun 17, 2009 8:56 pm
Location: NL

Re: [BUG/FIX] 6.1.1 intel in one thread.

Post by meules »

Did all of the above, but I still can't bulk edit my products. not the right permissions :?: :?: :( Any solution for this??
ISC v6
Martin
Site Admin
Site Admin
Posts: 1854
Joined: Wed Jun 17, 2009 6:30 pm
Location: South Yorkshire UK
Contact:

Admin inventory shows ALL possible combinations

Post by Martin »

This bug may not exist for everyone as I have a custom code module hooked into the file affected but in case it is..

Open: /admin/includes/classes/class.remote.php

Find:

Code: Select all

					// Fetch out the variation combinations for this product
					$query = "SELECT * FROM [|PREFIX|]product_variation_combinations WHERE vcproductid='".$prodId."'";
After, Add:

Code: Select all

					// MOD fix unexpected combinations from appearing
					$query .= " AND vcenabled = 1";
					// MOD END
This will ensure that only the combinations that are active will show up for inventory adjustment and not every possible combination there is...
Post Reply