• 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

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