forked from osCommerce/oscommerce2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CHANGELOG
1029 lines (726 loc) · 35.2 KB
/
CHANGELOG
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
$Id$
osCommerce Online Merchant Changelog
Copyright (c) 2013 osCommerce
------------------------------------------------------------------------------
09/25/2013 osCommerce Online Merchant v2.3.3.4
------------------------------------------------------------------------------
* MySQL Error Functions
Don't pass a null parameter to the MySQL error functions otherwise PHP will
display a warning message.
* UTF-8 Conversion
Also manually convert existing data records to UTF-8 and detect encodings
to prevent double encodings. Allow a dry-run to show which queries would be
performed.
* LC_NUMERIC Locale
As LC_ALL is now being used to set the locale, some languages other than
English were using commas in float/decimal values which conflicted with
MySQL. LC_NUMERIC is now set and forced to the system locale after the main
language file has loaded.
------------------------------------------------------------------------------
09/20/2013 osCommerce Online Merchant v2.3.3.3
------------------------------------------------------------------------------
* Database Query Logging
Improve database query error logging.
* Administration Tool Navigation Menu
Dynamically load navigation boxes.
* HTTPS -> HTTP Browser Alert
Have forms posting from a HTTPS to HTTP page post to a HTTPS version to
prevent the browser (Firefox) from alerting the user of being directed to
an insecure page.
* Currencies
Force decimal places value to an integer value.
* Action Recorder
When expiring logged entries, don't pass the database connection link to
tep_db_affected_rows().
* UTF-8
Set the MySQL character set to UTF-8 after a connection is made.
Create the database tables in utf8_unicode_ci for new installations.
Set the English locale to en_US.UTF-8, en_US.UTF8, enu_usa.
* Date of Birth
Take the Configuration -> Minimum Values -> Date of Birth value into
consideration to make the date of birth field optional.
* Administration Tool Automatic HTTP Authentication Login
Don't use the HTTP Authentication values when the login form is being
submitted.
Don't show an invalid administrator notice when an automatic HTTP
Authentication fails.
Don't record failed automatic HTTP Authentication log ins.
* Canonical Manufacturer ID
Force the Manufacturer ID to an integer value.
* Administration Tool -> Who's Online
Remove the session_decode() functionality and show shopping cart contents
only for logged in customers.
When regenerating a session ID, update the session ID in the who's online
database table to prevent duplicate entries.
* MailChimp 360
Fix module title.
* Administration Tool Extended Security Check Modules
Introduce new extended security check modules that are called in the new
Administration Tool -> Tools -> Security Checks page. These modules are
not called on the Administration Tool Dashboard page as normal security
check modules as these modules are more resource intensive. New modules
include:
- admin/backups directory public accessibility check
- admin/backups file public accessibility check
- admin http authentication check
- ext/ directory public accessibility check
- mysql utf8 database tables check
- version update performed check (30 days)
A normal extended_last_run security check module is also added to check if
the extended checks have run in the last 30 days.
* Administration Tool -> Tools -> Database Tables
Introduce a new Database Tables page to check, analyze, optimize, and
repair database tables. A Convert to UTF8 action is also available to
convert existing database tables to utf8_unicode_ci.
------------------------------------------------------------------------------
09/04/2013 osCommerce Online Merchant v2.3.3.2
------------------------------------------------------------------------------
* PHP 5.5 Compatibility
Replace mysql_* database function calls with mysqli_*.
* Administration Tool -> Dashboard -> Partner News
Add new Administration Tool Dashboard module.
* Administrator Account Initialization
Prevent empty administrator account from being initialized.
* tep_catalog_href_link()
Take the catalog HTTPS path into consideration for HTTPS links.
* Administration Tool Navigation Menu
Collapse navigation menu on the Dashboard page.
* Google+ +1 and Google+ Share Social Bookmark Modules
Show the button images in the chosen language.
* Template Modules
Only include template module class files and language definitions if their
files exist.
* Canonical Header Tag Module
Link to the main product information page and ignore product attribute
combinations.
* New Twitter Product Card Header Tag Module
Add Twitter Product Card meta tags to the product information page.
* New Google AdWords Conversion Tracking Header Tag Module
Add Google AdWords Conversion Tracking code to the checkout success page.
------------------------------------------------------------------------------
08/26/2013 osCommerce Online Merchant v2.3.3.1
------------------------------------------------------------------------------
* Who's Online
Parse REQUEST_URI with tep_db_prepare_input() before storing the value in
the database.
Replace REMOTE_ADDR with tep_get_ip_address().
* Administration Tool -> Catalog -> Categories/Products
Fix product price gross tax calculations when adding or editing products.
* Sessions
Register a shutdown function to close and write the session data.
* tep_redirect()
When redirecting from HTTPS -> HTTP and replacing the url with a HTTPS
version, also take DIR_WS_HTTPS_CATALOG into consideration which may differ
from DIR_WS_HTTP_CATALOG.
* Session
Also check for and allow , (comma) and - (minus) characters in the session
ID.
------------------------------------------------------------------------------
08/15/2012 osCommerce Online Merchant v2.3.3
------------------------------------------------------------------------------
* Administration Tool -> Tools -> Send E-Mail
Convert HTML e-mail to plain-text if HTML E-Mails is disabled.
* tep_redirect()
Fix URL encoding by replacing '&' with '&'.
* Administration Tool -> Tools -> Define Languages
Keep the selected language in the language selection pull down menu.
* Checkout Process
Improve checking of shopping cart product attributes.
* Shopping Cart
Replace hardcoded text with new TEXT_OR and TEXT_REMOVE language
definitions.
* Product Info
Redirect to store index if no product ID exists in the request URL.
* Administration Tool Dashboard Modules
Properly close HTML links.
* New Products Module
Fix check on new products existing.
* Administration Tool -> Catalog -> Reviews
Fix typo in table width.
* tep_image()
Remove extra space in image title.
* Administration Tool -> Tools -> Action Recorder
Fix paging of action recorder listing.
* Administration Tool -> Catalog -> Categories/Products
Fix casing of onkeyup HTML attribute.
* Administration Tool -> Catalog -> Categories/Products
Remove legacy product preview code.
* Checkout Confirmation
Improve checking of order comments.
* Shopping Cart
Remove legacy TABLE_HEADING_REMOVE, TABLE_HEADING_QUANTITY,
TABLE_HEADING_MODEL, and TABLE_HEADING_TOTAL language definitions.
* Manufacturers
Improve filtering of manufacturers.
* Product Information
Fix the total number of product reviews to count only the reviews in the
selected language.
* Sessions - tep_session_register()
Also reference and keep track of null variables in the session. This
general bug fix also addresses a compatibility issue with PHP 5.4.0.
* Sessions - tep_session_recreate()
Replace internal logic to use session_regenerate_id() for PHP 5.1+ servers.
If $SID is defined, also update its value with the new session ID.
* Product Information
Prevent the session ID being added to product images.
* Payment Class
Remove legacy PHP 3 code.
* GZIP Compression
Automatically disable if PHP 5.4.0 to PHP 5.4.5 is used due to PHP bug
#55544.
* Checkout Shipping
Improve checking of the shopping cart ID.
* Time Zone Compatibility
Improve PHP 5.2 Time Zone compatibility by setting the time zone to
CFG_TIME_ZONE or to the default time zone if it is not defined.
* General
Typecast remaining variables used in SQL queries.
* Administration Tool -> Modules
Fix edit button link containing the module code.
* Administration Tool -> Tools -> Banner Manager
Properly delete banner image when the banner is being deleted.
* Social Bookmark Modules
Replace hardcoded 'images/' path with DIR_WS_IMAGES.
* New Robot NoIndex Header Tag Module
Adds a noindex meta tag to specified pages.
* New Google+ +1 Button and Google+ Share Social Bookmark Modules
Adds Google+ +1 and Google+ Share buttons to the product information page.
* New Canonical Header Tag Module
Adds canonical meta links to the product information and category listing
pages.
* New Pinterest Social Bookmark Module
Adds Pinterest share button to the product information page.
* Libraries Update
- 960gs updated to latest version.
- jQuery 1.4.2 to 1.8.0.
- jQuery UI 1.8.6 to 1.8.22.
- bxGallery compatibility changes for jQuery 1.8.0.
------------------------------------------------------------------------------
07/17/2012 osCommerce Online Merchant v2.3.2
------------------------------------------------------------------------------
* Changed customer password forgotten feature to e-mail a personal link to
the customer where they can change their password up to 24 hours, instead
of directly changing the password to a random string and e-mailing it to
the customer.
Added new password_reset.php page to manage personal password reset links.
Added new ar_password_reset.php Action Recorder module to log and limit
the request of personal password reset links to once every 5 minutes.
* Improve logic of tep_create_random_value() by using Phpass' random number
generator.
If function parameter $type is not 'mixed', 'chars', or
'digits', return a 'mixed' string instead of false.
* Add openssl_random_pseudo_bytes() and mcrypt_create_iv() to Phpass'
get_random_bytes() class method. These are used if /dev/urandom is not
available.
* Only seed the random number generator if PHP < 4.2 is used.
------------------------------------------------------------------------------
11/15/2010 osCommerce Online Merchant v2.3.1
------------------------------------------------------------------------------
* Confirm new Product Reviews to the customer.
* Fix a PHP notice in Phpass.
* Fix Reviews Box language definition.
* Fix pre-defined Australian Dollar currency code.
* Label the HTML Content field for large product images.
* XHTML fixes for pop-up pages.
------------------------------------------------------------------------------
11/13/2010 osCommerce Online Merchant v2.3
------------------------------------------------------------------------------
* Payment module updates:
- 2Checkout
- PayPal Website Payments Pro - Direct Payments
- PayPal Website Payments Pro (Payflow Edition) - Direct Payments
- PayPal Website Payments Pro - Express Checkout
- PayPal Website Payments Pro (Payflow Edition) - Express Checkout
- Sage Pay Form, Server, and Direct
- iPayment
- RBS WorldPay Hosted
- Moneybookers
- InPay
- PayPoint.net SECPay
* Shipping module updates:
- USPS
* Allow new template group modules to be created to inject HTML content into
the page layout.
* Update boxes to modules which can be installed, configured, and sorted.
* Show only installed modules on the Administration Tool Modules page, and
link to a listing showing new and available modules.
* Moderate product reviews.
* Load either includes/local/configure.php or includes/configure.php, not
both.
* Modularize Administration Tool Modules page.
* Allow multiple large product images and HTML content (eg, Flash video) for
products.
* Replace usage of SpiffyCal with jQuery UI DatePicker widgets.
* Update layout to XHTML Transitional.
* Integrate 960 Grid System CSS Framework into the layout.
* Update buttons with jQuery UI Buttons.
* Add jQuery, jQuery UI, Flot, bxGallery, Fancybox javascript libraries.
* Introduce Administration Tool Dashboard modules.
* Migrate customer and administrator passwords to phpass.
* Introduce Social Bookmark modules for products.
- Facebook and Facebook Like
- Twitter and Twitter Button
- Google Buzz
- Digg
* Introduce Store Logo for the Administration Tool.
* Allow anonymous server statics to be sent from the Administration Tool
Server Information page.
* Add a is_writable() compatibility function for Windows.
* Introduce Header Tags modules.
- Google Analytics and E-Commerce Tracking
- MailChimp E-Commerce 360
- OpenSearch
* Move HTML layout to template_top.php/template_bottom.php files.
* Add new tep_get_version() function to retrieve the installed version.
* Introduce Version Checker for the Administration Tool.
* Set session.use_only_cookies to match SESSION_FORCE_COOKIE_USE.
* Show list of pre-defined currencies when adding new currencies.
* Example Credit Card payment module removed.
* German and Spanish language definitions removed from the core. (To be
maintained as add-ons)
* Remove File Manager from the Administration Tool.
* Don't show languages or currencies box if only one language or currency is
defined.
* Add API tag to modules.
* Introduce Security Check modules for the Administration Tool.
* Introduce Security Directory Permissions feature for the Administration
Tool.
* PHP v3 compatibility code removed.
* Recreate session IDs by default when customers login or create an account.
* Introduce Action Recorder to log and limit actions.
* Strengthen Administration Tool login routine.
* Replace ereg functions with preg functions for PHP v5.3.
* Fix timezone warning messages on PHP v5.3 servers.
* Protect forms with a token ID that is assigned to the customers session.
* Generate a new $cartID value when restoring shopping cart contents.
* Calculate shipping fees only for shippable products and not virtual/download
products.
* Parse Date of Birth values.
* Escape the filename and parameters in tep_href_link().
* Escape shell arguments in the checkdnsrr() compatibility function.
* Apply magic_quotes to GET parameters when Search Engine Friendly URLs is
enabled.
* Support automatic HTTP Authentication logins for the Administration Tool.
------------------------------------------------------------------------------
01/30/2008 osCommerce Online Merchant 2.2 RC2a
------------------------------------------------------------------------------
Due to two bugs that were introduced with 2.2 RC2, it has been repackaged as
2.2 RC2a with the following changes:
* The Administration Tool -> Backup Manager -> Restoration routine failed on
PHP <5 servers due to the use of stripos(). A compatibility function has
been added to fix this.
[r1829]
* The reference of $_SESSION in the tep_session_is_registered() function
produces a PHP warning when the session has not been started (ie, for search
engine spiders). This has been fixed by checking if $_SESSION is set.
[r1830]
------------------------------------------------------------------------------
01/16/2008 osCommerce Online Merchant 2.2 RC2
------------------------------------------------------------------------------
* Payment module changes:
- Authorize.net module replaced with newer AIM and SIM modules.
- New PayPal Express Checkout, PayPal Express Checkout (UK), PayPal Direct,
PayPal Direct (UK), and PayPal Website Payments Standard modules.
- Removed paypal.php and paypal_ipn.php modules.
- Removed PayQuake module (the gateway now uses Authorize.net).
* Shipping module changes:
- USPS updated to match new shipping methods. The test/production server
parameter has been removed as the test server only works with specific
test-cases.
* Retrieve product names in one query for the new products module.
[r1806]
* When restoring a database, only drop tables that are being restored.
[r1804, r1805]
* Display module version on the Administration Tool if it contains a version
signature string.
[r1802]
* Add a .htaccess file to the admin/includes/ directory to prevent direct HTTP
requests to PHP files.
[r1775]
* Fix the pagination links on the Administration Tool -> Products Attributes
page.
[r1774, r1776]
* Verify the customers primary address when it is being updated.
Verify the number of address book entries before inserting a new one.
[r1766]
* Avoid removal of products when deleting a category in a search result
listing.
[r1754]
* Make the database session storage handler return an empty string for
variables that don't exist in the session instead of returning a boolean
false value.
[r1752]
* Fix a variable name being checked against in the
Administration Tool -> Tools -> Newsletter Manager section.
[r1751]
* Improve the product nofitication logic on the checkout success page.
[r1749]
* Fix http_build_query() compatibility function in the Administration Tool.
[r1748]
* Increase the orders.payment_method database table field length to 255
characters.
[r1747]
* MySQL 5.0 Strict Mode compatibility fixes.
[r1746, 1755, 1810]
* Fix logic with nested tables in the Administration Tool tableBlock class.
[r1745]
* Add checks when creating files and directories on the
Administration Tool -> Tools -> File Manager section.
[r1744]
* Remove HTML formatting from credit card processing error messages.
[r1743]
* Move the logic of storing the credit card number from the order class to
the payment module level.
[r1736]
* Use the free shipping language definition for the shipping title when free
shipping is active.
[r1732]
* Add indexes to database tables.
[r1729]
* Introduce an active download flag and a public status flag to the order
status levels.
[r1724, r1725, r1728] (r1724 was reverted in r1725)
* Fix the shipping address when a virtual product was added to the cart and
replaced with a physical product.
[r1716]
* Improve register_globals compatibility layer when registering session
variables.
[r1704, r1705, r1723, r1741] (r1704, r1705, and r1723 were all reverted in r1741)
* Correctly parse the products to remove from the product notifications list.
[r1703]
* Introduce the ability to show additional checkout buttons on the shopping
cart page for certain payment methods (eg, PayPal Express Checkout).
Introduce the ability to define foreign shipping and billing addresses
during the checkout procedure (eg, the shipping address provided by PayPal
Express Checkout).
Add further checks to the checkout process page to prevent fraud orders.
[r1699, r1750]
* Calling $order_total_modules->process() multiple times would duplicate the
output data due to the order total modules already being instantiated.
[r1698]
* Make sure $parameters is an array in the navigation history class.
[r1696]
* Remove secondary pre-euro currencies from display.
[r1695]
* Fix downloads when "Download by redirect" and "SEFU" are both enabled.
Fallback to readfile() download delivery mechanism if direct download files.
[r1681, r1720]
* Add toggleDivBlock() Javascript function to admin/includes/general.js.
[r1663]
------------------------------------------------------------------------------
07/03/2007 osCommerce Online Merchant 2.2 RC1
------------------------------------------------------------------------------
* Remove additional slashes when editing a file in the Administration Tool ->
Tools -> File Manager section.
[r1652]
* Update Administration Tool pages. Introduce index summary modules
(backported from v3.0).
[r1633, r1634, r1635]
* Increase configuration_title and configuration_key field sizes
[r1631]
* Update project version. Update osCommerce logo. Use standard store_logo.png
image to easily allow the store logo to be changed.
[r1626]
* New administrators page to create, edit, and delete administrators
[r1625]
* Filter the parameters to not include any containing '_nh_dns' in the name so
they do not get stored in the navigation history session file.
[r1619, r1620]
* Add a public_title variable to the payment modules so the payment method can
display "Credit Card" instead of the name of the payment service provider.
[r1617, r1621]
* When editing reviews, strip additional slashes in the reviews text before
storing it in the database.
[r1614]
* PHP < 4.1 compatibility update.
[r1612]
* Backport v3.0 installation procedure.
[r1611, r1613, r1629]
* Add a simple administrator login routine to the Administrator Tool.
[r1610, r1632]
* Process the order total modules earlier on the checkout confirmation page.
[r1609]
* Fix typo in the products new page.
[r1608]
* Add the session ID to the GET based forms as a hidden field value.
[r1606, r1607]
* Updating category settings without selecting a category image was removing
the previous category image.
[r1603]
* Check the selected payment module radio field.
[r1601]
* Load the payment modules after the order total modules to get the proper
final order total value. This will break some payment modules duplicating
the checkout_process.php logic (ie, PayPal IPN contribution).
[r1600]
* Improve the logic of accepting state names.
[r1598]
* Add a new configuration parameter to control the maximum quantity a product
can be added to the shopping cart (99 by default).
[r1596]
* The quantity is added to the database as an integer so the quantity in the
shopping cart session should also be treated as an integer.
[r1595]
* Fix the display of the country name on the order history page.
[r1594]
* Don't calculate prices with tax by rounding the net value, as this brings
down the default precision of 4 to the decimal places the selected currency
has.
[r1592, r1593]
* Fix sql injection vulnerability when sorting product listings.
[r1591]
* Pass the connection identifier link to the mysql_insert_id() function.
[r1590]
* Reset the array index counter after working through its elements.
[r1589]
* Respect the Configuration -> Minimum Values settings.
[r1587, r1588]
* Correct the display of the billing address on the invoice and packing slip
pages.
[r1586]
* Fix currency case-sensitivity bug.
[r1585]
* Add a register_globals compatibility layer for PHP 4.3+ servers.
[r1583, r1584, r1597, r1599, r1647]
* Allow payment modules to display input fields on the checkout confirmation
page.
[r1582]
* Add fulltext support into the database backup dumps.
Don't backup the data from the sessions table nor the who's online table.
Delete the contents of the sessions table and who's online table after a
restoration has been performed.
[r1274]
* Fix manufacturers caching block.
[r726]
------------------------------------------------------------------------------
08/17/2006 osCommerce 2.2 Milestone 2 Update 060817
------------------------------------------------------------------------------
Please review the update-20060817.txt file for the important changes made.
------------------------------------------------------------------------------
11/13/2005 osCommerce 2.2 Milestone 2 Update 051113
------------------------------------------------------------------------------
* Fixed bug 1662; update of customers address through the My Account page
resulted in the country value not being stored properly and affected tax
rate values.
------------------------------------------------------------------------------
11/12/2005 osCommerce 2.2 Milestone 2 Update 051112
------------------------------------------------------------------------------
Please review the update-20060817.txt file for the important changes made.
* Index language definition: updated the Wiki link to point to the Knowledge
Base site
* Reviews Box: Renamed the following variables due to naming conflicts:
$review_query -> $rand_review_query
$review -> $rand_review
$review -> $rand_review_text
* Wrapped all input parameters with tep_output_string() in the tep_image()
function on the administration tool
(admin/includes/functions/html_output.php)
* UPS shipping module removed due to it violating the UPS terms of service.
An alternative module can be found here:
http://www.oscommerce.com/community/contributions,1323
* Updated codebase for PHP 5.0 compatibility
* Updated database structure for MySQL 5.0 compatibility
------------------------------------------------------------------------------
12/07/2003 osCommerce 2.2 Milestone 2
------------------------------------------------------------------------------
* Shared SSL servers are now properly supported with cookie parameters
existing for both normal and secure servers.
* The installation/upgrade procedure was simplified with a new layout.
* Internally set PHPs error reporting to E_ALL to remove all notice messages
on the Catalog module.
* Renamed default.php to index.php.
* Sanitize all user input on the Catalog module before inserting it into the
database.
* Updated the layout of the shopping cart page.
* Fixed linefeed issues with emails.
* Modules are now installed at the Administration Tool via Install/Remove
buttons located in the infobox; no longer through clicking on the status
icons. This is to be consistent with other areas of the Administration
Tool.
* Updated the layout of the product listing page.
* Updated the splitPageResults class to use the benefits a class provides.
* Realized the My Account Proposal as discussed on the developers forum
channel.
* Introduced the message stack class used on the Administration Tool to the
Catalog module. It has been extended to store messages in groups allowing
to display the messages in groups at separate sections of the page.
* Removed old European currencies (Deutsche Mark and Spanish Peseta)
* Update the default configuration parameters to meet the needs of USA (it
was previously meeting a mix of USA and European regulations)
* IP Address and Client Browser User Agent validations implemented for the
Security And Privacy Proposal.
* Session ID Regeneration feature implemented as part of the Security And
Privacy Proposal.
* New file upload class implemented.
* Search Engine Spider Session Prevention feature implemented as part of the
Security And Privacy Proposal.
* Manually round numbers in the tep_round() function, bypassing PHPs round()
and number_format() functions.
The PHP round() and number_format() functions return different results when
strings or floats are being processed.
* Added data validation to the Customers section on the Administration Tool.
* Tax Compounding logic corrected.
* Cross site scripting vulnerabilities fixed.
* Moved filename and database table definitions from application_top.php to
their own files.
* The Tax Priority can now be inserted when creating new tax rates in the
Administration Tool.
* Implement the force cookie usage and ssl_session_id validations features
from the Security and Privacy Proposal.
* Virtual products tax update (virtual products were not being updated as no
shipping address is in use. Instead, the billing address is used to base
the taxes on.
------------------------------------------------------------------------------
02/17/2003 osCommerce 2.2 Milestone 1
------------------------------------------------------------------------------
*** The changelog entry for the 2.2 Milestone releases will be updated ***
*** throughout the Milestone release path. The information here is ***
*** currently old. ***
* Manufacturer now saved when adding products. (bug fix)
* Added .htaccess file in the 'includes' directory for some security (blocks
direct http requests to .php files).
ie, http://server/catalog/includes/application_top.php
* New cache class added for the categoies box (only for PHP4)
- Note, this is disabled by default due to our run out-of-the-box approach.
Can also be used in other areas of the catalog.
* New Who's Online section in the administration tool.
* Updated payment and shipping modules structure - no longer has multiple
include statements - and are now classes.
* Administration Tool sections now with opened/closed box approach (the list
of functions was getting too long!).
* New login and create account option page (ala Amazon style)
* Click on the products image (in products details) and a new browser window
will open and resize itself to the image shown - used to display larger
pictures of the product.
* All font styles are now in stylesheets.
* Full locaization support (ie, categories title, products descriptions,
image buttons, etc)
* Table names now as constants (variables)
* Banner support functionality
* Products expected now as normal products (with descriptions)
* Stock control functionality
* Products with different attributes can now be added to the shopping cart.
(feature fix)
* Authorize.net support added
* Sessions can now be stored in the database
* Tell-A-Friend function for products
* Information box, with all informations about shipping & returns, privacy
notice and conditions of use
* Newsletter function in the administration tool.
* New zones for germany, swiss and austria.
* Prices can now be handled with/without tax. The tax would be correct
calculated.
* Prices in all countries which joined the euro currency, displays the prices
in euro and national currency. This is a european guideline which is now
support by TEP.
* All address information is now stored in the address_book table only. This
change was made to reduce redundancy and allow more feautures in the
checkout part (e.g. selection of different BillTo and SendTo addresses)
------------------------------------------------------------------------------
03/06/2001 The Exchange Project Preview Release 2.1
------------------------------------------------------------------------------
* Payment methods are now modules, makes it easier to implement other payment
methods. Supported methods COD, Credit Card, Paypal. CC also supports
storing only part of the CC# in the DB with the other digits being emailled
to a specific email address.
* Shipping Modules - Modular shipping methods with support for UPS, USPS,
FEDEX(Ground), Per Item and Flat rate shipping.
* Db query clean up a few AS clauses were added for earlier MySQL versions.
Error checking added for when no records exist.
* Added languages box - customers can now choose their language anywhere
except during the checkout procedure (due to POST variables in forms)
* Added currencies box - customers can now choose their currency independent
from the language chosen
* Currencies can be added/deleted/modified through the administration tool -
no longer through individual language files in the include directory
* Added a 'Contact Us' Page.
* Added COMMENTS field to Orders table - an order history
Need to ALTER TABLE orders ADD comments TEXT not null;
* Selectable columns in 'Product Listings'.
* Added a delete button to the orders in the admin tool.
* Solved a problem with the session id not being passed to the secure server.
* Countries added to the admin tool.
* The 'Add a Quickie' box now uses the model number instead of the product
id.
* The 'Search' box and the 'Advanced Search' now use the same engine.
* Backup in the admin tool.
* Numerous bugs fixed.
* Categories box has been updated to display path taken in bold, and display
the parent categories (tree navigation)
* Font styles implemented
* tep_image now optionally calculates image size if omitted
* products_to_manufacturers table removed. Manufacturers are now directly
link to products, via manufacturers_id record in the products table
* tep_href_link now removes extra & and ? characters in the URL
* Products with no manufacturers are now listed in the catalog module
* New DIR_* definitions for easier understanding ->
FS = Filesystem (physical)
WS = Webserver (virtual)
------------------------------------------------------------------------------
12/13/2000 The Exchange Project Preview Release 2.0a
------------------------------------------------------------------------------
* Added FedEx shipping module
* Bugfixes
------------------------------------------------------------------------------
12/02/2000 The Exchange Project Preview Release 2.0
------------------------------------------------------------------------------
* Manufacturers pull-down select box
* Number of products in each category displayed
* Bestsellers box
* See what other customers have brought (linked to current product displayed)
* Administration Tool now user-friendlier via new layout
* Categories-to-Categories structure
* Spanish added to the official languages supported
* Dynamic product attributes
* Tax zones, classes, and rates
* Now PHP3/PHP4 compatible
* Some configuration parameters now in database
* Manufacturers now directly linked to products
* Status of orders can now be modified
* New advanced search page
* Order confirmation emails can now be sent to multiple addresses
* Address formating function implemented
* PayPal payments implemented
* Currencies are now formated to the selected locale
------------------------------------------------------------------------------
05/14/2000 The Exchange Project Preview Release 1.1
------------------------------------------------------------------------------
* Customization variables and constants
* English and German localization
* New products and upcoming products modularized
* Added custom tep_db_* database functions
* Added custom tep_session_* session functions
* Added tep_href_link function
* Added tep_image function
* Added tep_image_submit function
* Added tep_black_line function
* Added tep_break_string function
* Added tep_products_in_cart function
* Added tep_exit function