Bugs in theme

office4662

New Member
YetiShare User
Jan 16, 2015
6
0
0
Hi guys, just bought the script and its pretty nice but i got some problems :

1) is there a option to display all files in the control panel ?

Let me give you a example :

User A uploads a file and can see it in his uploads, User B uploads one too.

Can another User C see all files under folder " all files " ? this is not working for me :S

2) heres a screenshot attached, there are no pics in the bootstrap theme. Do i have to install anything serverside ?

Also buttons dont work on bootstrap theme.

Big thanks for your support,

steven
 

Attachments

ysmods

New Member
Jan 29, 2013
860
1
0
UK
www.ysmods.com
Display all files to all users you mean?

I think, the only way of displaying files to other users is, if the files are in a folder and the url to that folder is given to other users.
 

office4662

New Member
YetiShare User
Jan 16, 2015
6
0
0
Yes exactly.

Oh ok , we thought thats possible since in the demo there are 600 files and in your uploads there were less..

Is there any way to mod it that it shows all uploads from all users in one folder ?
 

ysmods

New Member
Jan 29, 2013
860
1
0
UK
www.ysmods.com
There's always a way to modify the script to do whatever you want.

Something like the following will show all files from one users folder:
Code:
$files = $db->getRows("SELECT * FROM file WHERE userId = '".USER_ID_HERE."' AND folderId = '".FOLDER_ID_HERE."' AND statusId = 1");

foreach($files AS $file)
{
     echo "<a href='".file::getFileUrl($file['id'])."'>validation::safeOutputToScreen($file['originalFilename'])."</a><br />";
}
 

office4662

New Member
YetiShare User
Jan 16, 2015
6
0
0
Hi , actually we thougt it may work like users can upload and every user can browse all uploaded files.

Is that possible to mod ? If yes, do you do paid modding services ?
 

ysmods

New Member
Jan 29, 2013
860
1
0
UK
www.ysmods.com
It's certainly possible, its already partially coded in the Advanced Search Plugin that I made. (https://www.ysmods.com/advanced-search-plugin.html).

It would have to be on a separate page like shown below:



And yes I do custom work. Contact me on my site (link below) if you want to discuss it further.

https://www.ysmods.com/contact.html
 

Attachments

office4662

New Member
YetiShare User
Jan 16, 2015
6
0
0
Ok i sent you a request on your contact form :) would be really happy if you could look over it :D

thanks