Quote:
Originally Posted by dirtycrow
also is there any way to make all images public?
|
owner can set it public only ..
When a user upload an image it will be by defualt private .
If you want it all images uploaded to be public by defult
open the file vbimghost.php
and find the line 402
PHP Code:
$sql="INSERT INTO ".TABLE_PREFIX."vbimghost ( `imgid` , `userid` , `imgfile` , `imgname` , `imgfilesize` , `imgwidth` , `imgheight` , `imgdate` , `imgprivate` )
VALUES ('', '".$userid."', '".$imguname."', '".$upfilename."', '".$upfilesize."', '".$dime[0]."', '".$dime[1]."', '".TIMENOW."', '1')";
and replace it with
PHP Code:
$sql="INSERT INTO ".TABLE_PREFIX."vbimghost ( `imgid` , `userid` , `imgfile` , `imgname` , `imgfilesize` , `imgwidth` , `imgheight` , `imgdate` , `imgprivate` )
VALUES ('', '".$userid."', '".$imguname."', '".$upfilename."', '".$upfilesize."', '".$dime[0]."', '".$dime[1]."', '".TIMENOW."', '0')";
but the main idea is to give your user the freedom to set what ever they want to public view