Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - elvedix

Pages: [1]
1
works fine on IE but not on Firefox "JUPLOAD" hmm
maybe my firefox not suport java or?

sorry for bad english.....

2
Mods & Plugins (Releases & Support) / Re: Signature image v2.22
« on: April 08, 2006, 02:59:46 PM »
V@no tnx for nice code....

3
Mods & Plugins (Releases & Support) / Re: [MOD] guestbook
« on: March 02, 2006, 08:06:44 PM »
Also a big thank you from me

Can anybody tell me, how can i only allow registered user to write into the book`?


guestbook.php

After
 
Code: [Select]
include(ROOT_PATH.'includes/page_header.php');
Add
Code: [Select]
if ($user_info['user_level'] == GUEST || $user_info['user_level'] == USER_AWAITING) {
  show_error_page($lang['no_permission']);
  exit;
}

Pages: [1]