• Welcome to the Chevereto user community!

    Here users from all over the world gather around to learn the latest about Chevereto and contribute with ideas to improve the software.

    Please keep in mind:

    • 😌 This community is user driven. Be polite with other users.
    • 👉 Is required to purchase a Chevereto license to participate in this community (doesn't apply to Pre-sales).
    • 💸 Purchase a Pro Subscription to get access to active software support and faster ticket response times.

Date and time of loading image

Jan

Chevereto Noob
Preview
http://phillypic.netsons.org/img/preqwqw.png
http://phillypic.netsons.org/?v=ihazfounda.gif

Description
This "plug-in" add the date and the time of loading image on the viewing mode.

Guide
On the index.php change (line 217)
$mensaje = $quehace.' <a href="'.PATH_SCRIPT.DIR_IM.$folhost.$name.'">'.$name.'</a> ('.$tamano_kb.' KB - '.$ancho.'x'.$alto.'px)'.$colita;
to this
$file = 'thumbs/'.$name.'';
$last_time_modified = filemtime($file);
$last_mod = date("d/m/y H:i", $last_time_modified);
$mensaje = $quehace.'<a href="'.PATH_SCRIPT.DIR_IM.$folhost.$name.'">'.$name.'</a> ('.$tamano_kb.' KB - '.$ancho.'x'.$alto.'px - '.$last_mod.')'.$colita;
 
Back
Top