Is there a way to find image upload history?
-
Hey guys,
Someone uploaded an image on top of one of my images today. I can tell from the timestamp of the image file in Linux. Is there anyway i can find out which host or fog user uploaded that image?
-
yeah, but only with CLI on the server
some roughly written history is in the history table.
mysql
use fog
select * from history;
or
select * from history where longtext like '%some image name here%';
Just simply doing the select * statement, you’ll see the sort of entries being made. You can then format a
like
search for the field you want and the sort of data you’re looking for.AND… I can’t be positive on my SQL syntax above… but I think you get the idea…