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)
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.Qphoria wrote: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.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.
( 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?
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.
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
It has always been there and I'm not sure why this discussion is in the BUGS topic?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.
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.
Qphoria wrote:Find /catalog/model/catalog/product.phpallenshea wrote: I've tried your code, but looks it doesn't work. I only can get one page
public function getTotalProductSpecialsChange it to this:Code: Select all
if (isset($query->row['total'])) { return $query->num_rows; } else { return 0; }
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.
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).rph wrote:Just a guess but go to System->Settings->Option and see if Default Items per Page (Catalog) has been set.i2Paq wrote:Confirmed, it is a bug on the Specials page.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.
We have to wait on Q for this.
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 getTotalProductSpecialsTryCode: Select all
if (isset($query->row['total'])) { return $query->num_rows; } else { return 0; }
Code: Select all
if ($query->num_rows) { return $query->num_rows; } else { return 0; }
Export/Import Tool * SpamBot Buster * Unused Images Manager * Instant Option Price Calculator * Number Option * Google Tag Manager * Survey Plus * OpenTwig
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.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).
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.
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'
i just edited the category filter module, and when i select category and click filter i get this error
what is the problem?
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;
}
I know nothing about PHP and SQL, but I still try my best to understand it.
Thanks Q, The problem solved.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.
I know nothing about PHP and SQL, but I still try my best to understand it.
Qphoria wrote:Perhaps it should have been mentioned thenBrightMindProds wrote:
Bug was present on 1.4.6 and still on 1.4.7
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
Be sure your image/cache folder is 755 or 777meiomhe1 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?
As long as I take out slightly more bugs than I put in I'm doing better than usual.Qphoria wrote:I'm afraid we're going to have to whip you now.rph wrote:You're right, Q. I did screw up. I could have sworn I'd tested it out on the default install.

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
Ok... i see "something" like this but not exactly. I see the same issue in 1.4.6 as wellBrightMindProds 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
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
Users browsing this forum: No registered users and 11 guests