Hello,
I have OSticket 1.12 Installed (migrated from 1.10) with Attachement Storage On disk
System : Windows 2008 IIS7.5
Everything is working good
I want to extract all attached files in a ticket for certain help topics i'm still exploring DB, after viewing the forum i ended with a sql script like this
`
SELECT f.key, f.name ,attach.name, thre.body, thre.poster , t.number, ost_ticket__cdata.agence , lisit.value
FROM ost_file f
INNER JOIN ost_attachment attach
ON f.id=attach.file_id
INNER JOIN ost_thread_entry thre
ON thre.id=attach.object_id
INNER JOIN ost_ticket t
ON t.ticket_id=thre.thread_id
INNER JOIN ost_ticketcdata
ON ost_ticketcdata.ticket_id=t.ticket_id
INNER JOIN ost_list_items lisit
ON lisit.id=ost_ticket__cdata.agence
WHERE f.bk='F' `
The problem is : it's showing only attachment in thread response not the uploads from custom form attached to the ticket
i don't know how to link attachment type "E" with very high object_id to the ticket itself