Quote:
Originally Posted by bhxtyrant
I notice that when i import files from one of my site directories Links Database automatically adds a decription of the file showing the file path where the file is located.This requires manual editing of hundreds of files for me as i do not want the file path to be shown.Is there a way i can disable the option so it doesnt automatically add descriptions?
|
You can disable this 'automatic title' quite easily by editing local_links_admin.php. Find (about line 1316):
Code:
list ($insert_status, $linkid) = insert_link ($bbuserinfo['username'], $bbuserinfo['userid'], $title, $key, '', $vbphrase['ll_trawled'].' '.$dir, $pcatid, $pforum, $statuscheck, $moderate, 0);
Replace the string
Code:
$vbphrase['ll_trawled'].' '.$dir
with whatever you like, e.g.
to have a blank description.
Quote:
Originally Posted by bhxtyrant
I also cant seem to get the thumbnail images working.I uploaded the "local_resize" file to my forum directory and am using the "links_linkbit" template.But when i add the link to the image i wish to use all i can get is the red X.my settings in the admin pnale are as follows "allow_images" 1,"link_imagesize" -100.Am i doing something wrong?
|
It works ok for me with these settings. If the image is on your site in, e.g.
http://yoursite/dir1/dir2/file.jpg, then you can point to the image either with the full url or as /dir1/dir2/file.jpg. Maybe you're missing the first slash or something?