Report bugs Version 1.2.2 beta
Posted: Sat Apr 24, 2010 6:33 pm
Use this topic for bug reports on the beta version of 1.2.2.
Thanks
Thanks
AlegroCart open source E-commerce
http://forum.alegrocart.com/
Code: Select all
CREATE TABLE currencies (
currencies_id int(11) NOT NULL auto_increment,
title varchar(32) NOT NULL default '',
code char(3) NOT NULL default '',
symbol_left varchar(24) default NULL,
symbol_right varchar(24) default NULL,
decimal_point char(1) default NULL,
thousands_point char(1) default NULL,
decimal_places char(1) default NULL,
value float(13,8) default NULL,
last_updated datetime default NULL,
PRIMARY KEY (currencies_id)
) ENGINE=MyISAM;
Fields decimal_point, thousands_point are not in Alegro.
INSERT INTO currencies VALUES (1,'US Dollar','USD','$','','.',',','2','1.0000', now());
INSERT INTO currencies VALUES (2,'Euro','EUR','€','','.',',','2','0.7730', now());
INSERT INTO currencies VALUES (3,'GB Pound','GBP','£','','.',',','2','0.6726', now());
INSERT INTO currencies VALUES (4,'Canadian Dollar','CAD','$','','.',',','2','1.1042', now());
INSERT INTO currencies VALUES (5,'Australian Dollar','AUD','$','','.',',','2','1.1789', now());
The structure is utf8_unicode_ci. I think it did not like the short format I used. It cut off the regions at the accent.01] Accents missing in DB for french regions/zones -> default.sql not recorded in UTF8-DOS
I'll add the Euro.02] Euro support out of the box missing.
Code: Select all
$_['decimal_point'] = '.';
$_['thousand_point'] = ',';I have a link to flags here03] Images of flags could be borrowed from OpenCart and put in some directory.
04] I have not found a length_class.php for mesurements (present in OpenCart)
Code: Select all
$_['text_powered_by'] = 'Powered by <a href="http://www.alegrocart.com">AlegroCart</a><br /> %s © %s';05 I confirm. Must close my browser and restart for the language change to take place.05 I confirm. Must close my browser and restart for the language change to take place.
Yes, if you use the first version I uploaded, the need to be in the image folder.Have same pb with flags in the shop part. Copied them in ALEGROCART-1.2.2beta\upload\catalog\styles\default\image to work.
Code: Select all
<input type="image" src="catalog/styles/<?php echo $this->style?>/image/language/<?php echo $language['image']; ?>" alt="<?php echo $language['name']; ?>">