/includes/classes/shopping_cart.php
line 1574-1575 contain:php $products_options_file = new upload('id'); $products_options_file->set_destination(DIR_FS_UPLOADS); add one more statement, turning the two lines into three, like this:```php
$products_options_file = new upload('id');
$products_options_file->set_destination(DIR_FS_UPLOADS);
$products_options_file->set_output_messages('session');
And update your template:
includes/templates/YOURTEMPLATE/common/tpl_main_page.php
around line 110 you have:```php
<?php
/**
* prepares and displays center column
*
*/
require($body_code); ?>
```insert this above that:```php
<!-- bof upload alerts -->
<?php if ($messageStack->size('upload') > 0) echo $messageStack->output('upload'); ?>
<!-- eof upload alerts -->