• 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.

Redirect to image URL after upload

karma23

Chevereto Noob
I'm not well versed in PHP or web development. I'm primarily a web designer. Anyway, how do I redirect users to the image URL after they upload an image? So that they can just copy the URL at the top of the page after they upload something. Currently it just stays as http://mydomain.com and I want it to say http://mydomain.com/?v=myimage.png instead.

Thanks in advance!
 
Open engine.php and at the very bottom add this:

PHP:
if ($up) { header("Location: $URLimg"); }

Regards.
 
Back
Top