Will do, thanks for looking!
I thought I did. This is my config file:
` location / {
index index.php;
try_files $uri $uri/ /index.php$is_args$args;
}set $path_info ""; location ~ ^/include { deny all; return 403; } if ($request_uri ~ "^/api(/[^\?]+)") { set $path_info $1; } location ~ ^/api/(tickets|tasks)(.*)$ { try_files $uri $uri/ /api/http.php; } if ($request_uri ~ "^/scp/.*\.php(/[^\?]+)") { set $path_info $1; } location ~ ^/scp/ajax.php/(.*)$ { try_files $uri $uri/ /scp/ajax.php; }
location ~ .php$ {
fastcgi_pass unix:/var/run/php/php8.0-fpm.sock;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
fastcgi_param PATH_INFO $path_info;
fastcgi_buffer_size 16k;
fastcgi_buffers 4 16k;
fastcgi_read_timeout 300;
}`
I know it’s not supported but I nearly have this running on nginx (1.23.1, PHP 8.0.22).
The only issue that I have is after the admin consent to the Microsoft app, I get redirected back to the OSTicket user login page, but nothing happens.
I can see the token info in the address bar.
Does anyone have any ideas? Or do I have to uninstall nginx and move to Apache on October 1st?
My guess is that if this last redirect was to work, the OAuth2 would as well.
Thanks for your help and thanks to the team for developing the plugin.
Thanks for your help! I would like to increase it as the attachments contain important ticket related data and some tickets take a week or more to close...
Can I change these values to extend it or will that break something?
$minage = @$options['minage'] ?: 43200; $gmnow = Misc::gmtime() + $options['minage']; $expires = $gmnow + 86400 - ($gmnow % 86400);
Hello,
I'm having an issue with attachments and links expiring. Is there a way to remove this or increase the expiry? I see in the help bubble the explanation:
From a security perspective, be aware that the user's browser may retain previously-viewed files in its cache. Furthermore, all file links on your helpdesk automatically expire after about 24 hours.
The link to the attachment contains a timestamp:
The attachements are saved to the database. We do have the file storage plugin installed but it's disabled.
Running v1.12 (a076918)
MySQL Version 5.5.60
PHP Version 5.6.40Thanks
Hello,
I'm also having a issue with attachments and links expiring. Is there a way to remove this or increase the expiry? I see in the help bubble the explanation:
From a security perspective, be aware that the user's browser may retain previously-viewed files in its cache. Furthermore, all file links on your helpdesk automatically expire after about 24 hours.
The link to the attachment contains a timestamp:
The attachements are saved to the database. We do have the file storage plugin installed but it's disabled.
Running v1.12 (a076918)
MySQL Version 5.5.60
PHP Version 5.6.40Thanks