this script still working?
what about in 1.4.5?

Will try to explain a little more, hope you can read my english ( may be I'm out of practice )

I have the cutenews install in a dir call "news"
The page where the news are shown, is outside of this dir

When i use the image manager to upload a jpg or gif image it works fine, when I try to show the image on my page it was not show, so I apply the solution superhero had posted, now images are shown ok, BUT if I use the opction of clickable thumb it just refuse to show full image on click.
I check the path and on full image is something like "site/data/upimages/IMAGE.JPG " and it must be : site/news/data/upimage/IMAGE.JPG"

Hope you understand me now


try my fix above  https://cutephp.com/forum/style_emoticons/default/tongue.gif

this little changes that I have post works for me, I think ppl can try do  the same! https://cutephp.com/forum/style_emoticons/default/smile.gif

I got the fix  https://cutephp.com/forum/style_emoticons/default/smile.gif
for me  https://cutephp.com/forum/style_emoticons/default/tongue.gif

u can try do this:

[OPEN]
index.php

[FIND]
config_path_image_upload        = "./data/upimages";

[REPLACE WITH]
$config_path_image_upload        = "data/upimages";

[SAVE & CLOSE]

[OPEN]
inc/images.mdu

[FIND]
finalImage = link1 +\"<img border=\\\"\"+ imageBorder +\"\\\" align=\\\"\"+ imageAlign +\"\\\" alt=\\\"\"+ alternativeText +\"\\\" hspace=\\\"\"+ hSpace +\"\\\" vspace=\\\"\"+ vSpace +\"\\\" src=\\\"$config_path_image_upload/

[IN-LINE ADD]
finalImage = link1 +\"<img border=\\\"\"+ imageBorder +\"\\\" align=\\\"\"+ imageAlign +\"\\\" alt=\\\"\"+ alternativeText +\"\\\" hspace=\\\"\"+ hSpace +\"\\\" vspace=\\\"\"+ vSpace +\"\\\" src=\\\"YOUR_DIR/$config_path_image_upload/

[FIND]
$link1 = htmlspecialchars('<a target="_blank" href="'.$config_path_image_upload.'/'.$file.'">');

[IN-LINE ADD]
$link1 = htmlspecialchars('<a target="_blank" href="YOUR_DIR/'.$config_path_image_upload.'/'.$file.'">');

[SAVE & CLOSE]

ps: YOUR_DIR means NEWS, NOTICIAS, or where u put your cutenews folder! https://cutephp.com/forum/style_emoticons/default/smile.gif