Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: Bad session handling for GLPI mode cron #17983

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions front/cron.php
Original file line number Diff line number Diff line change
Expand Up @@ -54,9 +54,6 @@
// Ensure current directory when run from crontab
chdir(__DIR__);

// Ensure that session is not used
ini_set('session.use_cookies', 0);

// Try detecting if we are running with the root user (Not available on Windows)
if (function_exists('posix_geteuid') && posix_geteuid() === 0) {
// Translation functions not available here
Expand Down
1 change: 1 addition & 0 deletions src/Glpi/Config/LegacyConfigurators/SessionStart.php
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ final class SessionStart implements LegacyConfigProviderInterface, ConfigProvide
private const NO_COOKIE_PATHS = [
'/api(rest)?\.php.*',
'/caldav\.php.*',
'/front/cron\.php.*',
];

private const NO_SESSION_PATHS = [
Expand Down