[LOCKED] Mods for HESK "archive" Thread
Moderator: mkoch227
Re: [UPDATED Nov-30-14] Mods for HESK v1.6.0
Hi Mike,
It does not change anything.
I still get just a white / blank page when I go into the Settings.
What do I do?
I installed it this way:
1. Download Mods for Hesk udnytte de button above.
2. Take the contents of the .zip file and replace of your current Hesk / Mods for Hesk installation.
3. If you are running Mods for Hesk 1.2.4 two 1.5.0
Run the appropriate update scripts for your current version by going two http: // <path-to-Hesk installation> / install (simply click on the "Install / Upgrade Mods for Hesk" button).
It does not change anything.
I still get just a white / blank page when I go into the Settings.
What do I do?
I installed it this way:
1. Download Mods for Hesk udnytte de button above.
2. Take the contents of the .zip file and replace of your current Hesk / Mods for Hesk installation.
3. If you are running Mods for Hesk 1.2.4 two 1.5.0
Run the appropriate update scripts for your current version by going two http: // <path-to-Hesk installation> / install (simply click on the "Install / Upgrade Mods for Hesk" button).
Re: [UPDATED Nov-30-14] Mods for HESK v1.6.0
Hello,
Upgrading from Mods for HESK v1.5.0 to v1.6.0 I had same issue going to settings page from Admin, I had error line 82, in order to load the page, I had changed line to
$modsForHeskVersion = hesk_dbFetchAssoc($modsForHeskVersionRS);
The issue now, the settings page is working but Mods Hesk value do not display on the page.
Upgrading from Mods for HESK v1.5.0 to v1.6.0 I had same issue going to settings page from Admin, I had error line 82, in order to load the page, I had changed line to
$modsForHeskVersion = hesk_dbFetchAssoc($modsForHeskVersionRS);
The issue now, the settings page is working but Mods Hesk value do not display on the page.
Re: [UPDATED Nov-30-14] Mods for HESK v1.6.0
jones, stepe,
The fix for this issue has been pushed into GitHub and can be downloaded at https://github.com/mkoch227/Mods-for-HE ... v1.6.1.zip. I haven't had a chance to update the actual website yet with the new version number, so don't go there
You will need to run the 1.6.1 update script in the install folder as well
The fix for this issue has been pushed into GitHub and can be downloaded at https://github.com/mkoch227/Mods-for-HE ... v1.6.1.zip. I haven't had a chance to update the actual website yet with the new version number, so don't go there

You will need to run the 1.6.1 update script in the install folder as well
Last edited by mkoch227 on Wed Dec 03, 2014 6:16 pm, edited 1 time in total.
Mike, Lead Developer of
HESK: A surprisingly simple, user-friendly and FREE help desk software with integrated knowledgebase.
Re: [UPDATED Nov-30-14] Mods for HESK v1.6.0
Thanks Mike:-)
What was the error?
What was the error?
Re: [UPDATED Dec-03-14] Mods for HESK v1.6.1
In older version of PHP, you're not allowed to take the result of a function and grab a value from it without explicitly assigning it to a variable. The problem was that I was trying to do exactly what PHP didn't allow, so it resulted in a white screen.
Either in the root directory of your HESK installation or in the admin folder is most likely a file called error_log that might say something about it
Either in the root directory of your HESK installation or in the admin folder is most likely a file called error_log that might say something about it

Mike, Lead Developer of
HESK: A surprisingly simple, user-friendly and FREE help desk software with integrated knowledgebase.
Re: [UPDATED Dec-03-14] Mods for HESK v1.6.1
Mods for HESK v1.6.1
Mods for HESK v1.6.1 has been released. This release fixes the settings screen for some users where they would receive a white screen instead of the actual page.
Download link and installation instructions are available at http://mods-for-hesk.mkochcs.com
Mods for HESK v1.6.1 has been released. This release fixes the settings screen for some users where they would receive a white screen instead of the actual page.
Download link and installation instructions are available at http://mods-for-hesk.mkochcs.com
Mike, Lead Developer of
HESK: A surprisingly simple, user-friendly and FREE help desk software with integrated knowledgebase.
Re: [UPDATED Dec-03-14] Mods for HESK v1.6.1
Upgrading to 1.6.1 fixed my settings page issue, thanks for quick release of the fix.
-
- Posts: 142
- Joined: Sat Jun 22, 2013 9:24 pm
Re: [UPDATED Dec-03-14] Mods for HESK v1.6.1
On line 246 in /admin/delete_tickets.php, change
to
Code: Select all
$closedStatusRS = hesk_dbQuery("SELECT * FROM `".hesk_dbEscape($hesk_settings['db_pfix'])."tickets` WHERE `IsStaffClosedOption` = 1");
Code: Select all
$closedStatusRS = hesk_dbQuery("SELECT * FROM `".hesk_dbEscape($hesk_settings['db_pfix'])."statuses` WHERE `IsStaffClosedOption` = 1");
Mike, Lead Developer of
HESK: A surprisingly simple, user-friendly and FREE help desk software with integrated knowledgebase.
-
- Posts: 142
- Joined: Sat Jun 22, 2013 9:24 pm
Re: [UPDATED Dec-03-14] Mods for HESK v1.6.1
Thanks very much 

Re: [UPDATED Dec-03-14] Mods for HESK v1.6.1
I would like to have more features and settings in the custom fields.
Custom fields:
date and time
Select multiple enter values
Dependent fields from each other that you could create a constructor.
And as a restriction on access to the fields, between the user and the administrator
I could clearly explained?
Custom fields:
date and time
Select multiple enter values
Dependent fields from each other that you could create a constructor.
And as a restriction on access to the fields, between the user and the administrator
I could clearly explained?
Re: [UPDATED Dec-03-14] Mods for HESK v1.6.1
Adding date and time shouldn't be too difficult to implement. What exactly do you mean by "Select multiple enter values"? Can you provide me an example to look at (such as an existing site that has this functionality)?confignsk wrote:I would like to have more features and settings in the custom fields.
Custom fields:
date and time
Select multiple enter values
Dependent fields from each other that you could create a constructor.
And as a restriction on access to the fields, between the user and the administrator
I could clearly explained?
Adding dependent fields would be a large project and is definitely beyond the scope of 2.0.0.
Mike, Lead Developer of
HESK: A surprisingly simple, user-friendly and FREE help desk software with integrated knowledgebase.
Re: [UPDATED Dec-03-14] Mods for HESK v1.6.1
Drop-down list where you can select multiple values.mkoch227 wrote: Adding date and time shouldn't be too difficult to implement. What exactly do you mean by "Select multiple enter values"? Can you provide me an example to look at (such as an existing site that has this functionality)?
Adding dependent fields would be a large project and is definitely beyond the scope of 2.0.0.
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>List</title>
</head>
<body>
<form>
<p><select name="select" size="3" multiple>
<option selected value="s1">1</option>
<option value="s2">2</option>
<option value="s3">3</option>
<option value="s4">4</option>
</select>
<input type="submit" value="submit"></p>
</form>
</body>
</html>
Re: [UPDATED Dec-03-14] Mods for HESK v1.6.1
Oooh ok. That makes sense. I should be able to add that in 

Mike, Lead Developer of
HESK: A surprisingly simple, user-friendly and FREE help desk software with integrated knowledgebase.
Re: [UPDATED Dec-03-14] Mods for HESK v1.6.1
Still very necessary!
Field groups, and assignment to categories. That is to say that you could create different forms for categories.
Field groups, and assignment to categories. That is to say that you could create different forms for categories.