Seite 1 von 1

Green Icon

Verfasst: Mi 28.Jul, 2004 20:32
von Anonymous
By default all users get the Red Icon (Not enough traffic)

If I set a value I get the Yellow Icon (Traffic will be deducted from user account)
But how do I set it to get the Green Icon (No deductions from user account) ?
Also can I set it so that Guests cant download when users have unlimited?

Verfasst: Mi 28.Jul, 2004 20:39
von Anonymous
Hi,

you must enable the field "Free". You cand find this in the Admin Panel -> Files -> Edit File

You can set this option for each File separetly.

Verfasst: Mi 28.Jul, 2004 23:37
von Anonymous
Thanks :) But guests can still download :?

Verfasst: So 01.Aug, 2004 02:22
von Anonymous
Easy Solution !!!

Code: Alles auswählen

# 
#-----[ open Downloads.php, FIND ]------------------------------------------ 
#

//
// End session management
//

# 
#-----[ AFTER, ADD ]------------------------------------------ 
#

// Begin 'Restrict Guest Access' MOD
if ( !$userdata['session_logged_in'] )
	{
		redirect(append_sid("login.".$phpEx."?redirect=memberlist.".$phpEx, true));
		exit;
	}
// End 'Restrict Guest Access' MOD
This little addon retricts Guest Access completly...