• Welcome to the Chevereto User Community!

    Here, users from all over the world come together to learn, share, and collaborate on everything related to Chevereto. It's a place to exchange ideas, ask questions, and help improve the software.

    Please keep in mind:

    • This community is user-driven. Always be polite and respectful to others.
    • Support development by purchasing a Chevereto license, which also gives you priority support.
    • Go further by joining the Community Subscription for even faster response times and to help sustain this space

Exif doesn't display

Status
Not open for further replies.
Any old image uploaded while you didn't have the exif extension won't should exif information.
 
System fetchs the EXIF data on upload. Anything uploaded before you properly enable the exif extension won't show exif info because it doesn't have exif info in the database.
 
Hi
I understand that, I 've check that exif plugin has been install and enable, and I just upload a new pic, but exif still doesn't display
 
Just like I told you... Enable the exif extension, which means that you also need to enable the functions otherwise the system can't do anything. A simple phpinfo(); shows that you have disabled several functions of your webserver, one of them exif_read_data.

Use this snippet to test if the thing is turned on/off:

PHP:
print_r("exif_read_data is " . (function_exists('exif_read_data') ? "enabled" : "disabled")); die();
 
Status
Not open for further replies.
Back
Top