Quote:
Originally Posted by beebi
OK
open uplaoder.php
find
PHP Code:
$msgcode = '[IMG]' . $fileurl . '[/IMG]';
replace it with
PHP Code:
$msgcode = '[IMG2]' . $path . $vbulletin->GPC['file']['name'] . '[/IMG2]';
|
I managed to figure that out.. let me try again
the $fileurl presents the full domain name to the user once the picture has been sucessfully uploaded.. so IMG]http://www.domain.com/uploaded/1/image.jpg /IMG]
I don't want that.
when the file has been uploaded, i would like it to present only the users folder name, and the picture name whcih they uploaded. so 1/image.jpg.
That make more sense?
edit: im trying to think of a better way to explain it.