Green Icon

Enthält archivierte Beiträge von Hotschi's Board zum Download MOD.
Posten ist hier nicht möglich, bitte das Supportforum dafür verwenden!
Gesperrt
Anonymous

Green Icon

Beitrag 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?
Anonymous

Beitrag 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.
Anonymous

Beitrag von Anonymous »

Thanks :) But guests can still download :?
Anonymous

Beitrag 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...
Gesperrt