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 - Deskcom

Pages: [1] 2 3
1
Danke für das Informieren ich. Ich arbeite an ihm morgen, wenn ich oder Mittwoch kann. Bekannt gibt die Verlegenheit a bald tgibt, wie möglich.

2
I'm sorry for the long delay. Here is the fix for the problem you been having. I also updated the original scripting. Have fun.

Open member.php

Find
Code: [Select]
 elseif ($afg == "false")
  {
    $id = $_GET['user_id'];
  }
    if ($user_info['user_level'] == GUEST)
    {
       show_error_page($lang['no_permission']);
    exit;
  }

Replace it with:

Code: [Select]
 elseif ($afg == "false")
  {
    $id = $_GET['user_id'];
  }

Hope this helps everyone out. Thank you for your patients.

3
i will try to work on it later tonight or tom. ty for letting me know of the bug

4
Change In your user_gb_new.html

Code: [Select]
<textarea class=input name=comment_text rows=6 cols=120></textarea>
To:

Code: [Select]
<textarea class=textarea name=comment_text rows=6 cols=120></textarea>

5
Mods & Plugins (Releases & Support) / Re: [MOD] Support Ticket System
« on: October 22, 2008, 07:08:19 PM »
I can setup an anti-spam system to it. It will delay you creating a ticket within so many minutes, which can be set in the admin panel
Well... In "good code" all data must be terminated after sending. And it may redirect to "thanks" page. If user refresh page he will get an error page.
Maybe I write this fix by myself, but now I have a little time. So if anyone would like to fix it, please.

Even with redirect, most browsers will cache the data. All a user will need to do is back the page 1 - 2 times and resend the data. To stop it from posting all together it may be best to use a time delay to not allow any sending of tickets for a certain time frame. I most cases a user should not need to send more than one ticket at a time. Even still if he does need to send it in. It takes some time to write a new one, giving it time for the delay to run out.

6
Mods & Plugins (Releases & Support) / Re: [MOD] Support Ticket System
« on: October 22, 2008, 05:04:00 PM »
I can setup an anti-spam system to it. It will delay you creating a ticket within so many minutes, which can be set in the admin panel

7
Mods & Plugins (Releases & Support) / Re: [MOD] Support Ticket System
« on: October 22, 2008, 10:44:00 AM »
Quote
1.) "Date Created" will be always "01/01/70 01:00"

Hey Nicky,

I tried to duplicate the same problem with the date. And i do not see it doing to the same on my size. I might be missing it some where. If you or anyone is still seeing the error. Can you please post a screen shot so i can find it.

Thank you

BTW. I set the message on the first box to be the first message that is posted.

Post Edit!!

8
Mods & Plugins (Releases & Support) / Re: [MOD] Support Ticket System
« on: October 15, 2008, 12:28:44 AM »
Sorry about the delay, I have been on another project that I had to get done by Oct 10. I will have an update of the fixes and also the admin ticket mod that I pomised not to far back. Please check back. I will begin work on it tonight.

Thank you

9
Mods & Plugins (Releases & Support) / Re: [MOD] Support Ticket System
« on: September 22, 2008, 11:43:40 PM »
lol, o my. I did not no that. I will get it fix soon.

10
Mods & Plugins (Releases & Support) / Re: [MOD] Support Ticket System
« on: September 21, 2008, 04:48:56 PM »
Make sure this section of script is in your includes/function.php file. I just checked the install and seem to have not placed it in the installation setup.

Code: [Select]
function new_ticket_check($user_id,$user_name){
global $site_db;
  $sql = "SELECT *
          FROM ".SUPPORT_TABLE."
          WHERE user_id = '$user_id' AND is_read = '0' AND last_reply != '$user_name'"; 
$result = $site_db->query($sql);
$num_tick = $site_db->get_numrows($result);
if($num_tick != 0){
return true;
}
else{
return false;
}

}

11
Mods & Plugins (Releases & Support) / Re: [MOD] Support Ticket System
« on: September 20, 2008, 11:52:56 AM »
not at the moment, but I'm working it to were all admins will be able to look at tickets when they login to the gallery in the user info panel.

12
Please post your page_header.php file and any mods that are installed in your gallery

13
I have made an installer to install the database. place install_gd.php in your root directory and run it. It will auto install the database for you.

14
Mods & Plugins (Releases & Support) / Re: [MOD] Support Ticket System
« on: September 07, 2008, 02:34:08 AM »
I am working a feature for the admin side. It will take the ticket system from the admin and make there ticket system a admin center for all tickets. So pretty much change from only seeing and making tickets on there side, it will change it to were they can view and access all tickets without having to go to the admin panel and it will be set to blink when a ticket is updated and when a new on is posted.

15
Mods & Plugins (Releases & Support) / Re: [MOD] Support Ticket System
« on: September 07, 2008, 12:31:50 AM »
Ok, I see, I will have a modified version and i will post it soon

Pages: [1] 2 3