Re: OFFICIAL v1.4.9.3 BUG THREAD. POST ALL BUGS HERE
Posted: Sat Jan 22, 2011 7:44 am
The example provided above for opencartStuff is version 1.48B. I just wanted to note this out
OpenCart Community Forum - Discuss shopping cart and e-commerce solutions.
https://forum.opencart.com/
Good find!Fyshell wrote:See hereQphoria wrote:Not sure where you are seeing this.. I dont have this in my information linksFyshell wrote:Bug:URl like:http://www.yoursite.com/index.php?route ... nformation&
It seems get a wrong way .Site physical path will be discover,try it(v1.4.9.1andV1.4.9.3,maybe other)
demo1: http://opencart.maleeqa4us.com/index.ph ... formation&
demo2: http://demo1.opencartstuff.com/index.ph ... formation&
======================================================================================================
Normal:http://opencart.maleeqa4us.com/index.ph ... rmation123
Error:http://opencart.maleeqa4us.com/index.ph ... nformation&
Code: Select all
'href' => HTTP_SERVER . 'index.php?route=information/information&information_id=' . $this->request->get['information_id'],
Code: Select all
'href' => HTTP_SERVER . 'index.php?route=information/information&information_id=' . $information_id,
Checked page 4 of this topic here?navimeister wrote:I have mail Subject encoding issues as well. Clean 1.4.9.3 install.
In Gmail the subject shows up as it should. But I tested it in the 2 biggest hungarian mail providers and I see this:
RendelĂŠsĂŠt rĂśgzĂtettĂźk
instead of
Rendelését rögzítettük.
A quick fix would be appreciated.
Yes, I did. Qphoria said that the subject is correct in Gmail. I said the same. However, I tested in 2 other systems as well, and it was not correct there. People who earlier reported the issue was mentioning Hotmail, not Gmail.i2Paq wrote:Checked page 4 of this topic here?navimeister wrote:I have mail Subject encoding issues as well. Clean 1.4.9.3 install.
In Gmail the subject shows up as it should. But I tested it in the 2 biggest hungarian mail providers and I see this:
RendelĂŠsĂŠt rĂśgzĂtettĂźk
instead of
Rendelését rögzítettük.
A quick fix would be appreciated.
Solution for Subject by adding base64 encode:Qphoria wrote:Try changing the mail.php file and use iso-8859-1 instead of utf-8
Code: Select all
if ($this->parameter) {
mail($to, '=?UTF-8?B?'.base64_encode($this->subject).'?=', $message, $header, $this->parameter);
}
else {
mail($to, '=?UTF-8?B?'.base64_encode($this->subject).'?=', $message, $header);
}
Code: Select all
$header .= 'From: ' . '=?UTF-8?B?'.base64_encode($this->sender).'?=' . '<' . $this->from . '>' . $this->newline;
Code: Select all
http://localhost:8888/index.php?route=product/search&keyword=CS1224C&model=1
Code: Select all
http://localhost:8888/index.php?route=product/search&keyword=CS1224C&manufacturer_id=13&model=1
Code: Select all
http://localhost:8888/index.php?route=product/search&keyword=CS1224C&manufacturer_id=0&model=1
you must have some mod installed that is not part of the base opencart. In base opencart there is nothing in the search for manufacturer_id. Literally nothing. If you add the parameter it will simply be ignored. You can try it on the demo site.marc_cole wrote:When searching for an item # and I add manufacturer_id to the URL, the search fails.
[1]Here's a normal search that works:[2]When I add the manufacturer_id, it returns nothing:Code: Select all
http://localhost:8888/index.php?route=product/search&keyword=CS1224C&model=1
[3]However, if I use manufacturer_id=0, it works again:Code: Select all
http://localhost:8888/index.php?route=product/search&keyword=CS1224C&manufacturer_id=13&model=1
What code needs to be changed to get #2 to work?Code: Select all
http://localhost:8888/index.php?route=product/search&keyword=CS1224C&manufacturer_id=0&model=1
Thanks,
Marc
Code: Select all
http://localhost:8888/index.php?route=product/manufacturer&manufacturer_id=13
Are you sure the totals are correct in the 2 examples? Looks like you have shipping enabled in your paypal account if you are not passing shipping in from the cart. Follow this guide to disable paypal shipping:waabay wrote:Hi,
Have anyone encoutering same issue like me. Each time when click confirm by using paypal standard, the currency convertion of shipping and handling fees also wrong. If it is default currency as I configure in my opencart, the fees are correct.
I realize it happend only if I apply the coupon. Any idea ?
Code: Select all
<?php foreach ($sorts as $sorts) { ?>
Code: Select all
<?php foreach ($sorts as $sort) { ?>
Code: Select all
<?php foreach ($sorts as $sort) { ?>
<?php if (($sort . '-' . $order) == $sort['value']) { ?>
<option value="<?php echo $sort['href']; ?>" selected="selected"><?php echo $sort['text']; ?></option>
<?php } else { ?>
<option value="<?php echo $sort['href']; ?>"><?php echo $sort['text']; ?></option>
Code: Select all
<?php foreach ($sorts as $sorts) { ?>
Code: Select all
<?php foreach ($sorts as $sort) { ?>
Darn — and here I thought I'd really found something.Qphoria wrote:No. There is already a $sort for url in most cases.
That's what caught my eye — it just looked out of place. But then again, I haven't gotten to that part of the book just yet.Qphoria wrote:It is true that using the same variable for the foreach is bad practice...
julugu wrote:Hello,
Everyday I get a lot of errors like these:
2011-01-19 19:08:21 - PHP Warning: session_start() [<a href='function.session-start'>function.session-start</a>]: Cannot send session cache limiter - headers already sent (output started at /home/julugu/public_html/index.php:48) in /home/julugu/public_html/system/library/session.php on line 11
2011-01-19 19:08:22 - PHP Notice: Undefined index: HTTP_HOST in /home/julugu/public_html/index.php on line 173
2011-01-19 19:08:22 - PHP Warning: Cannot modify header information - headers already sent by (output started at /home/julugu/public_html/index.php:48) in /home/julugu/public_html/index.php on line 173
2011-01-20 8:36:06 - PHP Warning: unlink(/home/julugu/public_html/system/cache/cache.category.38.2.0.1295512099) [<a href='function.unlink'>function.unlink</a>]: No such file or directory in /home/julugu/public_html/system/library/cache.php on line 14
I know they are Warnings but I don't want them in the log.
Thanks
Make sure your meta-keywords are unique.bader rashed wrote:helloo ..
ive got problem when i add new product
i got this message :
Error: Duplicate entry '63-2' for key 1
Error No: 1062
INSERT INTO product_description SET product_id = '63', language_id = '2', name = 'hhh', meta_keywords = '', meta_description = '', description = ''
how can i fix it ?