HESK version 2.4 BETA (test version)
Moderator: mkoch227
-
- Posts: 48
- Joined: Wed Jun 16, 2010 2:52 pm
Re: HESK version 2.4 BETA (test version)
hi there i dont get to specify a prefix on the upgrade screen
-
- Posts: 48
- Joined: Wed Jun 16, 2010 2:52 pm
Re: HESK version 2.4 BETA (test version)
Hi there,
deleted the default entry on the 2.4 settings.php file and changed them to the prefix from 2.3 settings.php
deleted the default entry on the 2.4 settings.php file and changed them to the prefix from 2.3 settings.php
Re: HESK version 2.4 BETA (test version)
No, because upgrade uses the one set in the hesk_settings.inc.php. Note that when upgrading you mustn't upload a new settings file, the old one (version 2.3 with correct MySQL settings) needs to be there for the upgrade to work properly.
Klemen, creator of HESK and PHPJunkyardWas this helpful? You can buy me a drink here 
You should follow me on Twitter here
Help desk software | Cloud help desk | Guestbook | Link manager | Click counter | more PHP Scripts ...
Also browse for php hosting companies, read php books, find php resources and use webmaster tools


Help desk software | Cloud help desk | Guestbook | Link manager | Click counter | more PHP Scripts ...
Also browse for php hosting companies, read php books, find php resources and use webmaster tools
-
- Posts: 48
- Joined: Wed Jun 16, 2010 2:52 pm
Re: HESK version 2.4 BETA (test version)
Hi Klemen,
Working a treat thus far
Quick query if i may
Is it possible for anyone to reply to a ticket email and get the update on the call or is it limited to the email address that logged the call? if not is it easy to change?
Working a treat thus far
Quick query if i may
Is it possible for anyone to reply to a ticket email and get the update on the call or is it limited to the email address that logged the call? if not is it easy to change?
Re: HESK version 2.4 BETA (test version)
I don't recommend it as it could lead to issues.
That said, you would have to delete this from inc/pipe_functions.inc.php
That said, you would have to delete this from inc/pipe_functions.inc.php
Code: Select all
// Do email addresses match?
if ( strpos( strtolower($ticket['email']), strtolower($tmpvar['email']) ) === false )
{
$tmpvar['trackid'] = '';
}
Klemen, creator of HESK and PHPJunkyardWas this helpful? You can buy me a drink here 
You should follow me on Twitter here
Help desk software | Cloud help desk | Guestbook | Link manager | Click counter | more PHP Scripts ...
Also browse for php hosting companies, read php books, find php resources and use webmaster tools


Help desk software | Cloud help desk | Guestbook | Link manager | Click counter | more PHP Scripts ...
Also browse for php hosting companies, read php books, find php resources and use webmaster tools
Re: HESK version 2.4 BETA (test version)
Not possible to add another email to the ticket with "," separator. Both fron en back-office.
Re: HESK version 2.4 BETA (test version)
Do you have "Multiple emails" enabled?
Settings > Email > Other > Multiple emails: [?] Allow customers to enter multiple contact emails
Settings > Email > Other > Multiple emails: [?] Allow customers to enter multiple contact emails
Klemen, creator of HESK and PHPJunkyardWas this helpful? You can buy me a drink here 
You should follow me on Twitter here
Help desk software | Cloud help desk | Guestbook | Link manager | Click counter | more PHP Scripts ...
Also browse for php hosting companies, read php books, find php resources and use webmaster tools


Help desk software | Cloud help desk | Guestbook | Link manager | Click counter | more PHP Scripts ...
Also browse for php hosting companies, read php books, find php resources and use webmaster tools
Re: HESK version 2.4 BETA (test version)
Klemen wrote:Do you have "Multiple emails" enabled?
Settings > Email > Other > Multiple emails: [?] Allow customers to enter multiple contact emails
haha .. new option, that did the trick!
ps my attachments still doesnt work, it was a clean update 2.3 to 2.4 ..
Re: HESK version 2.4 BETA (test version)
Have you checked php.ini settings?
Can you upload a simple small text file or no file at all?
Can you upload a simple small text file or no file at all?
Klemen, creator of HESK and PHPJunkyardWas this helpful? You can buy me a drink here 
You should follow me on Twitter here
Help desk software | Cloud help desk | Guestbook | Link manager | Click counter | more PHP Scripts ...
Also browse for php hosting companies, read php books, find php resources and use webmaster tools


Help desk software | Cloud help desk | Guestbook | Link manager | Click counter | more PHP Scripts ...
Also browse for php hosting companies, read php books, find php resources and use webmaster tools
-
- Posts: 48
- Joined: Wed Jun 16, 2010 2:52 pm
Re: HESK version 2.4 BETA (test version)
thanks - that has worked.
Re: HESK version 2.4 BETA (test version)
Klemen wrote:Have you checked php.ini settings?
Can you upload a simple small text file or no file at all?
I cannot check my php.ini setting (shared server), but with 2.3 i can send any attachment, with the upgraded version any. The error is that the path issent oke.
Re: HESK version 2.4 BETA (test version)
Version 2.4 uses the same code for file handling as 2.3.
If you save this code as "test.php", upload to your server and open it in browser, what does it say?
If you save this code as "test.php", upload to your server and open it in browser, what does it say?
Code: Select all
<i>upload_max_filesize</i>: <?php echo @ini_get('upload_max_filesize'); ?><br />
<?php
if ( version_compare(phpversion(), '5.2.12', '>=') )
{
echo '<i>max_file_uploads</i>: ' . @ini_get('max_file_uploads') . '<br />';
}
?>
<i>post_max_size</i>: <?php echo @ini_get('post_max_size'); ?><br />
Klemen, creator of HESK and PHPJunkyardWas this helpful? You can buy me a drink here 
You should follow me on Twitter here
Help desk software | Cloud help desk | Guestbook | Link manager | Click counter | more PHP Scripts ...
Also browse for php hosting companies, read php books, find php resources and use webmaster tools


Help desk software | Cloud help desk | Guestbook | Link manager | Click counter | more PHP Scripts ...
Also browse for php hosting companies, read php books, find php resources and use webmaster tools
Re: HESK version 2.4 BETA (test version)
My info:upload_max_filesize: 32MKlemen wrote:Version 2.4 uses the same code for file handling as 2.3.
If you save this code as "test.php", upload to your server and open it in browser, what does it say?Code: Select all
<i>upload_max_filesize</i>: <?php echo @ini_get('upload_max_filesize'); ?><br /> <?php if ( version_compare(phpversion(), '5.2.12', '>=') ) { echo '<i>max_file_uploads</i>: ' . @ini_get('max_file_uploads') . '<br />'; } ?> <i>post_max_size</i>: <?php echo @ini_get('post_max_size'); ?><br />
max_file_uploads: 20
post_max_size: 32M
Found the problem! It looks like it have chanced my root setting ... it have put /admin behind it. Doent know how but its there. Maybe its a nice addon to use the output ass max size in the admin pannel?
Re: HESK version 2.4 BETA (test version)
Already done - final release of 2.4 will show these settings and show a warning when HESK setting is larger than what php.ini allows.
If you find any other problems with 2.4 (few have already been found and fixed) please do let me know.
If you find any other problems with 2.4 (few have already been found and fixed) please do let me know.
Klemen, creator of HESK and PHPJunkyardWas this helpful? You can buy me a drink here 
You should follow me on Twitter here
Help desk software | Cloud help desk | Guestbook | Link manager | Click counter | more PHP Scripts ...
Also browse for php hosting companies, read php books, find php resources and use webmaster tools


Help desk software | Cloud help desk | Guestbook | Link manager | Click counter | more PHP Scripts ...
Also browse for php hosting companies, read php books, find php resources and use webmaster tools
Re: HESK version 2.4 BETA (test version)
How to cronjob the POP email? And wenn receiving mail on with category would the ticket get?