company_logo is not an actual column on the admin_setting table, but rather one of the administration settings stored in the table.
mysql> SELECT * FROM admin_setting;
+------------+-----------------------------+-----------+
| setting_id | short_description | value |
+------------+-----------------------------+-----------+
| 1 | company_id | NULL |
| 2 | image_upload_prefix | NULL |
| 3 | fedex_gateway_URI | NULL |
| 4 | company_logo | empty.gif |
| 5 | packing_list_terms | NULL |
| 6 | packing_list_logo | NULL |
| 7 | min_asset_code | NULL |
| 8 | fedex_account_id | NULL |
| 9 | autodetect_tracking_numbers | NULL |
| 10 | custom_shipment_numbers | NULL |
| 11 | custom_receipt_numbers | NULL |
| 12 | receive_to_last_location | NULL |
| 13 | portable_pin_required | 1 |
+------------+-----------------------------+-----------+
So if you upload an image called "mylogo.jpg" to the images directory, you could run the following SQL on your tracmor database to use it:
UPDATE `admin_setting` SET `value` = 'mylogo.jpg' WHERE `short_description` = 'company_logo';
Justin Sinclair
Got Inventory? Get Tracmor.