help desk login

Helpdesk for my helpdesk software

Moderator: mkoch227

Post Reply
nickko
Posts: 4
Joined: Mon Feb 22, 2021 12:57 pm

help desk login

Post by nickko »

Script URL:
Version of script: 3.2.1
Hosting company: own OVH server

URL of session_test.php:
What terms did you try when SEARCHING for a solution: help desk login

Write your message below:

Hello,
i just download and install help desk but i can't login in admin panel, nothing happend...

i reset admin password, ok i can log but when i close browser and open it again on login page, i can't log anymore, it need to reset password on each login :s

i installed session_test.php and have "OK: PHP sessions work fine".

Can you help me ?
Thanks
Didier
Last edited by nickko on Mon Feb 22, 2021 8:13 pm, edited 1 time in total.
Klemen
Site Admin
Posts: 10142
Joined: Fri Feb 11, 2005 4:04 pm

Re: help desk login

Post by Klemen »

Not sure what is happening. Have you manually modified any files (even opening one and saving without making changes can sometimes cause this)?

What happens if you:
- download hesk_settings.inc.php from your server
- open it in Notepad++
- find

Code: Select all

$hesk_settings['debug_mode']=0;
and set it to

Code: Select all

$hesk_settings['debug_mode']=1;
- upload to the server
- test

Do you get any additional error messages?
Klemen, creator of HESK and PHPJunkyardWas this helpful? You can buy me a drink here Image

Image 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
nickko
Posts: 4
Joined: Mon Feb 22, 2021 12:57 pm

Re: help desk login

Post by nickko »

Thanks for your answer.

i just upload and install your package, no file have been modify.

So i have debug_mode to 1
but nothing else, no error msg, login have no effect :(

i need reset password each time to login correctly.
i check cookie i have 1 name HESK8812a4b574f58079526b805a063e4c15cceb5f74
the desk use session and cookie ?
Klemen
Site Admin
Posts: 10142
Joined: Fri Feb 11, 2005 4:04 pm

Re: help desk login

Post by Klemen »

Are you able to give me FTP access to your server to run some tests? I would need access to your Hesk folder only, nowhere else.

If yes, please send me login details in a private message.
Klemen, creator of HESK and PHPJunkyardWas this helpful? You can buy me a drink here Image

Image 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
nickko
Posts: 4
Joined: Mon Feb 22, 2021 12:57 pm

Re: help desk login

Post by nickko »

i sent you PM with an ftp access

Thank you for your great support
Klemen
Site Admin
Posts: 10142
Joined: Fri Feb 11, 2005 4:04 pm

Re: help desk login

Post by Klemen »

Hi, I found the issue :)

You have a .htaccess with some mod_rewrite rules in your website, in a folder parent to your Hesk folder. Your mod rewrite rules were preventing the admin index page to properly post data (all requests were rewritten as HTTP GET).

I fixed the issue by turning mod_rewrite off for the Hesk folder by placing a .htaccess file inside it with this content:

Code: Select all

<IfModule mod_rewrite.c>
#Disable rewriting
RewriteEngine Off
</IfModule>
This should prevent mod_rewrite from interfering with Hesk operations.
Klemen, creator of HESK and PHPJunkyardWas this helpful? You can buy me a drink here Image

Image 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
nickko
Posts: 4
Joined: Mon Feb 22, 2021 12:57 pm

Re: help desk login

Post by nickko »

Whaouuu ! Great job ! :)))
Many thanks for your fast and great support !

And your software is really great, it's not a gas factory with unnecessary functions, everything is well thought out, simple and efficient! bravo :) I'm buying!
Post Reply