Hola buen día quisiera saber donde se almacena los adjuntos de los tickets ya sea imagenes etc si lo descargue mediante XAMPP y tengo phpmyadmin
ALMACENAMIENTO
By default they are stored in the ost_file
, ost_file_chunk
, and ost_attachment
tables.
ERDs:
Cheers.
Ya lo cheque, pero por ejemplo si yo quiero ver el archivo adjunto si es que exporto las tablas solo se vera img/png
Original post
--- Google Translate ---
Hello, good day, I would like to know where the attachments of the tickets are stored, whether images, etc. If I download it through XAMPP and I have phpmyadmin
--- end Google Translate ---
No one can really answer that because we dont know how you set things up.
If you are using the default and storing them in the database then @KevinTheJedi answer above is correct.
If you installed a Storage plugin then they would not be in the database and would be in the filesystem, or Amazon S3.
response
--- Google Translate ---
I already checked it, but for example if I want to see the attached file if I export the tables it will only be img/png
--- End Google Translate ---
Exporting the tables would result in a plain text file with the contents of the tables. It would not result in a img/png unless you wrong some sort of code to export the attachments from the tables... You would need to write something to do this for you.
If you want to be able to see the files while they are being stored then you will need to move them outside of the database using one of the storage plugins:
- Storage :: Attachments on the Filesystem
- Storage :: Attachments in Amazon S3
Then you could look at and open the files using your file browser on your computer assuming that you had a program that opened that file type.
hello
I also want to be able to see the images if I connect to the database and bring that data how can I see it
somewhere other than in the system
Cheers
Please see my last response, second to last paragraph.