Post by Qphoria » Tue Apr 13, 2010 6:04 am

There is one in
catalog/controller/information/information.php
for the catalog side

The error shows that the controller process can't read that file. This means that either the file isn't there, or maybe the parent directory has no read options set. Be sure the parent "information" folder is set to 755 (at least 644)

Image


User avatar
Administrator

Posts

Joined
Tue Jul 22, 2008 3:02 am

Post by lashman » Tue Apr 13, 2010 6:21 am

Qphoria wrote:
muflon wrote:My friend noticed wrong behaviour in route=checkout/guest_step_3

There are two addresses Shiping and Payment and under each address there is a link to change this address. If I change Shipping address I change Payment address too. I think that this is wrong. Payment and Shipping can be different. This should be fixed.

Great relase btw.
This has always been there. Guest Checkout only supports 1 address at this time. This hasn't change with 1.4.7. Perhaps in 1.4.8 or later we can add separate addresses.
This is a big problem, I have quite a few customers who have the goods delivered to their works and some customers work and live away from home but the card is registered at their main home.

Active Member

Posts

Joined
Sun Feb 21, 2010 9:02 pm
Location - North Yorkshire

Post by Qphoria » Tue Apr 13, 2010 6:31 am

lashman wrote: This is a big problem, I have quite a few customers who have the goods delivered to their works and some customers work and live away from home but the card is registered at their main home.
It's a small problem. Just disable Guest Checkout

Image


User avatar
Administrator

Posts

Joined
Tue Jul 22, 2008 3:02 am

Post by meiomhe1 » Tue Apr 13, 2010 6:44 am

I get this on my firefox when editing or insert category, products dan Manufacturer
( i tried on IE8 also not working)

Content Encoding Error
The page you are trying to view cannot be shown because it uses an invalid or unsupported form of compression.
* Please contact the website owners to inform them of this problem.



But Download, review and information working fine.

I just upgrade from 1.3.4 to 1.4.7 by using upgrade script.



Update:
I try to set Output Compression Level to 0

So now I able to create category and products. but with this error in admin area
Warning: imagejpeg() [function.imagejpeg]: Unable to open '/home/admin/myshop.com/image/cache/no_image-100x100.jpg' for writing: Permission denied in /home/admin/myshop.com/system/library/image.php on line 43

What should i do?
Last edited by meiomhe1 on Tue Apr 13, 2010 11:00 am, edited 2 times in total.

New member

Posts

Joined
Sat Jan 30, 2010 4:41 am

Post by lashman » Tue Apr 13, 2010 7:04 am

Sorry Q I don't think it is a small problem, I don't like sites where I have to open an acount to buy unless it is something I will return for regularly, if its not I will look elswhere for the product.
We have plenty of regular customers who would probably have no problem with opening an account but the biggest majority are probably impulse buyers who would go elsewhere.
The site we have at the moment *knip* has no option for opening an account but it does hold their info for next time (address). We have quite a few customers from overseas who do not speak English that good but manage to find their way to checkout ok, I think opening an account may confuse them. Maybe I'm wrong. You and Daniel are creating a super cart and I certanly hope to use it in the next few months.

Active Member

Posts

Joined
Sun Feb 21, 2010 9:02 pm
Location - North Yorkshire

Post by BrightMindProds » Tue Apr 13, 2010 7:13 am

Option Value in Products Bug - with Languages


You create your options, whatever they are and save the page. When you come back and ty to edit it, you just can't. The system insists in not identifying it.

Bug happens only when a second language is installed and what makes me believe that it is a Bug is because after reinstaling a fresh version, I have duplicated the english folder and the problem remains.

It looks like it only happens when you've got more than one field for Option Value.

Get it on every Browser.

Bug was present on 1.4.6 and still on 1.4.7


Could you guys please let me know if you can do something about it? Otherwise I will need to downgrade ASAP.

Cheers


Posts

Joined
Wed Feb 17, 2010 9:14 pm

Post by i2Paq » Tue Apr 13, 2010 1:12 pm

lashman wrote:Sorry Q I don't think it is a small problem, I don't like sites where I have to open an acount to buy unless it is something I will return for regularly, if its not I will look elswhere for the product.

We have plenty of regular customers who would probably have no problem with opening an account but the biggest majority are probably impulse buyers who would go elsewhere.
The site we have at the moment *knip* has no option for opening an account but it does hold their info for next time (address). We have quite a few customers from overseas who do not speak English that good but manage to find their way to checkout ok, I think opening an account may confuse them. Maybe I'm wrong. You and Daniel are creating a super cart and I certanly hope to use it in the next few months.
It has always been there and I'm not sure why this discussion is in the BUGS topic?

For the time beeing you have to stick with the cart you have.

You will have to wait as this is a feature request and NOT a bug so please take this discusion there: Features request.

Norman in 't Veldt
Moderator OpenCart Forums

_________________ READ and Search BEFORE POSTING _________________

Our FREE search: Find your answer FAST!.

[How to] BTW + Verzend + betaal setup.


User avatar
Global Moderator

Posts

Joined
Mon Nov 09, 2009 7:00 pm
Location - Winkel - The Netherlands

Post by allenshea » Tue Apr 13, 2010 1:19 pm

Qphoria wrote:
allenshea wrote: I've tried your code, but looks it doesn't work. I only can get one page
Find /catalog/model/catalog/product.php
public function getTotalProductSpecials

Code: Select all

		if (isset($query->row['total'])) {
			return $query->num_rows;
		} else {
			return 0;	
		}
Change it to this:

Code: Select all

if (isset($query->row['total'])) {
	return $query->row['total'];
} else {
	return 0;	
}

Where I can get my search result back? I have only got one page, I think it must limited somewhere, but not in catalog\model\catalog. Can you point me how to revise it?

Thanks.

Allen

I know nothing about PHP and SQL, but I still try my best to understand it.


Active Member

Posts

Joined
Mon Dec 14, 2009 10:01 pm

Post by JNeuhoff » Tue Apr 13, 2010 5:27 pm

rph wrote:
i2Paq wrote:
allenshea wrote:This is clean install, with EXPORT/IMPORT module.
The problem isn't in System -> Settings -> Option:,
If I set in 48 items, the SPECIAL OFFER can show all items in one page, but if I set it in 16 or 20, I still only got one page, where is the code limited my SPECIAL ITEMS.
Confirmed, it is a bug on the Specials page.
We have to wait on Q for this.
Just a guess but go to System->Settings->Option and see if Default Items per Page (Catalog) has been set.

Q set up a nice new system which allows users to control the items per page now.

EDIT: Actually looks like this is caused by:

/catalog/model/catalog/product.php
public function getTotalProductSpecials

Code: Select all

		if (isset($query->row['total'])) {
			return $query->num_rows;
		} else {
			return 0;	
		}
Try

Code: Select all

		if ($query->num_rows) {
			return $query->num_rows;
		} else {
			return 0;	
		}
Just a reminder I have not yet ported the Export/Import module to 1.4.7, will do so in a few days, am quite busy at the moment. Hence, try the same without this module to see whether the problem still persists then (which it probably will).

Export/Import Tool * SpamBot Buster * Unused Images Manager * Instant Option Price Calculator * Number Option * Google Tag Manager * Survey Plus * OpenTwig


User avatar
Guru Member

Posts

Joined
Wed Dec 05, 2007 3:38 am


Post by allenshea » Tue Apr 13, 2010 5:49 pm

JNeuhoff wrote: Just a reminder I have not yet ported the Export/Import module to 1.4.7, will do so in a few days, am quite busy at the moment. Hence, try the same without this module to see whether the problem still persists then (which it probably will).
Your MOD is working in 1.4.7, as Q's help, I have solved problem with SPECIAL OFFERS, but now, I have the similar problem with SEARCH RESULT. It only get back with one page.

Please kindly help to find how can I display all the search results. I don't have pages in search bottom

Allen

I know nothing about PHP and SQL, but I still try my best to understand it.


Active Member

Posts

Joined
Mon Dec 14, 2009 10:01 pm

Post by Qphoria » Tue Apr 13, 2010 8:08 pm

BrightMindProds wrote:
Bug was present on 1.4.6 and still on 1.4.7
Perhaps it should have been mentioned then

Image


User avatar
Administrator

Posts

Joined
Tue Jul 22, 2008 3:02 am

Post by Qphoria » Tue Apr 13, 2010 8:10 pm

the search result fix is in catalog/model/catalog/product.php under getTotalProductSpecials() function

Image


User avatar
Administrator

Posts

Joined
Tue Jul 22, 2008 3:02 am

Post by crazymaster » Tue Apr 13, 2010 8:23 pm

Code: Select all

Error: Unknown column 'p2c.category_id' in 'where clause'
Error No: 1054
SELECT COUNT(*) AS total FROM product p LEFT JOIN product_description pd ON (p.product_id = pd.product_id) WHERE pd.language_id = '1' AND p2c.category_id ='62'
what may be the problem?

i just edited the category filter module, and when i select category and click filter i get this error

what is the problem?

New member

Posts

Joined
Wed Apr 07, 2010 10:29 pm

Post by allenshea » Tue Apr 13, 2010 8:39 pm

Qphoria wrote:the search result fix is in catalog/model/catalog/product.php under getTotalProductSpecials() function

Hi, Q. I have changed getTotalProductSpecials() to below

Code: Select all

    if (isset($query->row['total'])) {
       return $query->row['total'];
    } else {
       return 0;   
    }
The SPECIAL OFFER is working, but SEARCH doesn't work. Only returns ONE PAGE SEARCH RESULT. It should be more than 1 page.

I know nothing about PHP and SQL, but I still try my best to understand it.


Active Member

Posts

Joined
Mon Dec 14, 2009 10:01 pm

Post by Qphoria » Tue Apr 13, 2010 9:27 pm

same fix in getTotalProductsByKeyword()
Or just get the fixed file from the 146 to 147 patch only on the main announcement thread. All the fixes for this stuff is in there.

Image


User avatar
Administrator

Posts

Joined
Tue Jul 22, 2008 3:02 am

Post by allenshea » Tue Apr 13, 2010 9:32 pm

Qphoria wrote:same fix in getTotalProductsByKeyword()
Or just get the fixed file from the 146 to 147 patch only on the main announcement thread. All the fixes for this stuff is in there.
Thanks Q, The problem solved.

I know nothing about PHP and SQL, but I still try my best to understand it.


Active Member

Posts

Joined
Mon Dec 14, 2009 10:01 pm

Post by BrightMindProds » Tue Apr 13, 2010 9:44 pm

Qphoria wrote:
BrightMindProds wrote:
Bug was present on 1.4.6 and still on 1.4.7
Perhaps it should have been mentioned then

I was about to when 1.4.7 came out.

Were you able to reproduce the bug? As I said, I tried it simply duplicating the english folder and when the system ads the extrafield to describe the Option on the second language, save and come back, the Bug happens.

Cheers


Posts

Joined
Wed Feb 17, 2010 9:14 pm

Post by Qphoria » Tue Apr 13, 2010 10:33 pm

meiomhe1 wrote:
Update:
I try to set Output Compression Level to 0

So now I able to create category and products. but with this error in admin area
Warning: imagejpeg() [function.imagejpeg]: Unable to open '/home/admin/myshop.com/image/cache/no_image-100x100.jpg' for writing: Permission denied in /home/admin/myshop.com/system/library/image.php on line 43

What should i do?
Be sure your image/cache folder is 755 or 777

Image


User avatar
Administrator

Posts

Joined
Tue Jul 22, 2008 3:02 am

Post by rph » Tue Apr 13, 2010 10:53 pm

Qphoria wrote:
rph wrote:You're right, Q. I did screw up. I could have sworn I'd tested it out on the default install.
I'm afraid we're going to have to whip you now. ;D
As long as I take out slightly more bugs than I put in I'm doing better than usual. ;)

Weird thing is for getTotalProductsByKeyword num_rows works and row['total'] doesn't on the old site I've got and they're the only thing that's different on the function. I think there might be gremlins in the code somewhere.

-Ryan


rph
Expert Member

Posts

Joined
Fri Jan 08, 2010 5:05 am
Location - Lincoln, Nebraska

Post by Qphoria » Tue Apr 13, 2010 11:08 pm

BrightMindProds wrote:Option Value in Products Bug - with Languages


You create your options, whatever they are and save the page. When you come back and ty to edit it, you just can't. The system insists in not identifying it.

Bug happens only when a second language is installed and what makes me believe that it is a Bug is because after reinstaling a fresh version, I have duplicated the english folder and the problem remains.

It looks like it only happens when you've got more than one field for Option Value.

Get it on every Browser.

Bug was present on 1.4.6 and still on 1.4.7

Could you guys please let me know if you can do something about it? Otherwise I will need to downgrade ASAP.

Cheers
Ok... i see "something" like this but not exactly. I see the same issue in 1.4.6 as well
1. Have 2 languages enabled
2. Add an option and 2 values. Example (Color: Red and Blue)
3. Add it in both languages
4. Save
5. Edit the product again
6. Options listbox shows:
Color
Red
Blue
Red
Blue

The first Red and Blue work fine.
The second Red and Blue are empty and show nothing

Image


User avatar
Administrator

Posts

Joined
Tue Jul 22, 2008 3:02 am
Who is online

Users browsing this forum: No registered users and 19 guests