HTTP ERROR 500 / Duplicate entry for key 'sessions_pkey'

Hi,

When using the original SessionDAO.php and SessionManager.php files (without the patches), the HTTP 500 error appears again.

[Tue Apr 28 09:28:29.059298 2026] [proxy_fcgi:error] [pid 634232:tid 634309] [remote 201.179.22.230:44290] AH01071: Got error 'PHP message: PHP Fatal error:  Uncaught PDOException: SQLSTATE[23000]: Integrity constraint violation: 1062 Duplicate entry 'vmjr1nf131mpa5je3egrljstfv' for key 'sessions_pkey' in /var/www/FCEyS/revistas/lib/pkp/lib/vendor/laravel/framework/src/Illuminate/Database/Connection.php:570\nStack trace:\n#0 /var/www/FCEyS/revistas/lib/pkp/lib/vendor/laravel/framework/src/Illuminate/Database/Connection.php(570): PDOStatement->execute()\n#1 /var/www/FCEyS/revistas/lib/pkp/lib/vendor/laravel/framework/src/Illuminate/Database/Connection.php(753): Illuminate\\Database\\Connection->Illuminate\\Database\\{closure}('INSERT INTO ses...', Array)\n#2 /var/www/FCEyS/revistas/lib/pkp/lib/vendor/laravel/framework/src/Illuminate/Database/Connection.php(720): Illuminate\\Database\\Connection->runQueryCallback('INSERT INTO ses...', Array, Object(Closure))\n#3 /var/www/FCEyS/revistas/lib/pkp/lib/vendor/laravel/framework/src/Illuminate/Database/Connection.php(558): Illuminate\\Database\\Connection->run('INSERT INTO ses...', Array, Obje...', referer: https://eco.mdp.edu.ar/revistas/
[Tue Apr 28 09:28:39.124985 2026] [proxy_fcgi:error] [pid 640696:tid 640716] [remote 201.179.22.230:57408] AH01071: Got error 'PHP message: PHP Fatal error:  Uncaught PDOException: SQLSTATE[23000]: Integrity constraint violation: 1062 Duplicate entry 'vmjr1nf131mpa5je3egrljstfv' for key 'sessions_pkey' in /var/www/FCEyS/revistas/lib/pkp/lib/vendor/laravel/framework/src/Illuminate/Database/Connection.php:570\nStack trace:\n#0 /var/www/FCEyS/revistas/lib/pkp/lib/vendor/laravel/framework/src/Illuminate/Database/Connection.php(570): PDOStatement->execute()\n#1 /var/www/FCEyS/revistas/lib/pkp/lib/vendor/laravel/framework/src/Illuminate/Database/Connection.php(753): Illuminate\\Database\\Connection->Illuminate\\Database\\{closure}('INSERT INTO ses...', Array)\n#2 /var/www/FCEyS/revistas/lib/pkp/lib/vendor/laravel/framework/src/Illuminate/Database/Connection.php(720): Illuminate\\Database\\Connection->runQueryCallback('INSERT INTO ses...', Array, Object(Closure))\n#3 /var/www/FCEyS/revistas/lib/pkp/lib/vendor/laravel/framework/src/Illuminate/Database/Connection.php(558): Illuminate\\Database\\Connection->run('INSERT INTO ses...', Array, Obje...'

The last plugin we enabled was the DOAJ plugin, a little over a week before the issue started. It was working correctly—DOAJ successfully harvested all records from the FACES journal without any problems.

The mystery continues…

Could upgrading to version 3.5 be a possible solution? Time is passing, and the editorial teams of our journals are increasingly insisting on regaining access to the platform.

One of our concerns about upgrading to version 3.5 is the PKP Preservation Network plugin, which is not yet compatible with this new version.

Thanks

Hi, this is good. lets not apply those patches as I can not re-reproduce the issue locally, so can not confirm the validity of those patches . Those was a possible solution based on some theory .

in that case, does the HTTP 500 happening for everyone ? can you try to login from a different browser or from incognito/private mode and see if this works ?

Hi,

I’ve removed the patches. The website is down again.

We’ve already tried several things: logging in from different browsers, using incognito/private mode, and even testing from different computers, but the issue persists.

Same result for everyone.

Hi, I see that without that patches , the system is getting unavailable at a second load . lets do the following

  1. re-add the patches that described at HTTP ERROR 500 / Duplicate entry for key 'sessions_pkey' - #10 by touhidur and add few debug loggings along with those patches as
// SessionDAO::insertObject()                                                                                                                                   
  public function insertObject($session)                                                                                                                          
  {                                                                                                                                                               
      try {                                             
          $this->update('INSERT INTO sessions ...', [...]);                                                                                                       
          error_log("SESSION INSERT: id={$session->getId()} success"); // just a logging here, rest of code remain same as it is in the code base
      } catch (Exception $e) {                                                                                                                                    
          error_log("SESSION INSERT: id={$session->getId()} duplicate — ignored. Error: " . $e->getMessage()); // As we commented out the $this->updateObject($session);, a logging after that
      }                                                                                                                                                           
  }                                                     
                                                                                                                                                                  
  // SessionManager::createSession()                    
  private function createSession(): void
  {                                                                                                                                                               
      $existingSession = $this->sessionDao->getSession(session_id());
      if ($existingSession) {                                                                                                                                     
          error_log("SESSION CREATE: id=" . session_id() . " already exists — adopted, user_id=" . ($existingSession->getUserId() ?? 'NULL'));
          $this->userSession = $existingSession;                                                                                                                  
          return;                                                                                                                                                 
      }                                                                                                                                                           
                                                                                                                                                                  
      error_log("SESSION CREATE: id=" . session_id() . " new session"); // a logging here 
      // ... rest of method
  }
  1. The update the SessionManager::write method as
/**
 * Save session data to database.
 */
public function write(string $sessionId, string $data): bool
{
    if ($this->userSession) {
        $this->userSession->setSessionData($data);

        error_log("SESSION WRITE: id={$sessionId} user_id=" . ($this->userSession->getUserId() ?? 'NULL') . " data_length=" . strlen($data));

        // If this request has no authenticated user, preserve any existing
        // user_id in the DB to prevent concurrent requests from overwriting
        // the login state set by another request (e.g., the login POST)
        if (!$this->userSession->getUserId()) {
            $existing = $this->sessionDao->getSession($sessionId);
            if ($existing?->getUserId()) {
                $this->userSession->setUserId((int) $existing->getUserId());
                error_log("SESSION WRITE: preserved user_id=" . $existing->getUserId() . " from DB for session {$sessionId}");
            }
        }

        $this->sessionDao->updateObject($this->userSession);
    }
    
    return true;
}

If the problem still persist, then from these logging we can get some details about where the problem is happening .

Hi,

I’ve applied the new changes, but the issue still persists. The following errors are appearing in the Apache error log:

[Wed Apr 29 10:39:08.561733 2026] [proxy_fcgi:error] [pid 727869:tid 727872] [remote 10.1.24.81:49899] AH01071: Got error 'PHP message: SESSION CREATE: id=0kn2gpp7fcfivedmh94n94uusc already exists \xe2\x80\x94 adopted, user_id=NULL; PHP message: SESSION INSERT: id=vvmetsln6fjbu75a1tkc8pfv2n success', referer: https://eco.mdp.edu.ar/revistas/index.php/aportes/login
[Wed Apr 29 10:39:08.602420 2026] [proxy_fcgi:error] [pid 727869:tid 727870] [remote 10.1.24.81:49899] AH01071: Got error 'PHP message: SESSION CREATE: id=vvmetsln6fjbu75a1tkc8pfv2n already exists \xe2\x80\x94 adopted, user_id=NULL', referer: https://eco.mdp.edu.ar/revistas/index.php/aportes/login
[Wed Apr 29 10:39:08.658504 2026] [proxy_fcgi:error] [pid 727869:tid 727894] [remote 10.1.24.81:49899] AH01071: Got error 'PHP message: SESSION CREATE: id=vvmetsln6fjbu75a1tkc8pfv2n already exists \xe2\x80\x94 adopted, user_id=NULL', referer: https://eco.mdp.edu.ar/revistas/index.php/aportes/login

[Wed Apr 29 10:39:10.416609 2026] [proxy_fcgi:error] [pid 727671:tid 727673] [remote 201.179.22.230:55954] AH01071: Got error 'PHP message: SESSION CREATE: id=6b328ri6dql4ngsp53mqmris8o already exists \xe2\x80\x94 adopted, user_id=NULL; PHP message: SESSION INSERT: id=sp9ugee26iflc9mnod54naln6n success', referer: https://eco.mdp.edu.ar/revistas/index.php/index/login
[Wed Apr 29 10:39:10.537455 2026] [proxy_fcgi:error] [pid 727671:tid 727694] [remote 201.179.22.230:55954] AH01071: Got error 'PHP message: SESSION CREATE: id=sp9ugee26iflc9mnod54naln6n already exists \xe2\x80\x94 adopted, user_id=NULL', referer: https://eco.mdp.edu.ar/revistas/index.php/index/login
[Wed Apr 29 10:39:10.650190 2026] [proxy_fcgi:error] [pid 727671:tid 727691] [remote 201.179.22.230:55954] AH01071: Got error 'PHP message: SESSION CREATE: id=sp9ugee26iflc9mnod54naln6n already exists \xe2\x80\x94 adopted, user_id=NULL', referer: https://eco.mdp.edu.ar/revistas/index.php/index/index
[Wed Apr 29 10:39:10.663018 2026] [proxy_fcgi:error] [pid 727671:tid 727677] [remote 201.179.22.230:55954] AH01071: Got error 'PHP message: SESSION CREATE: id=sp9ugee26iflc9mnod54naln6n already exists \xe2\x80\x94 adopted, user_id=NULL', referer: https://eco.mdp.edu.ar/revistas/index.php/index/index
[Wed Apr 29 10:39:26.938594 2026] [proxy_fcgi:error] [pid 725921:tid 725945] [remote 201.179.22.230:34768] AH01071: Got error 'PHP message: SESSION CREATE: id=sp9ugee26iflc9mnod54naln6n already exists \xe2\x80\x94 adopted, user_id=NULL', referer: https://eco.mdp.edu.ar/revistas/index.php/index/index
[Wed Apr 29 10:39:27.046850 2026] [proxy_fcgi:error] [pid 725921:tid 725926] [remote 201.179.22.230:34768] AH01071: Got error 'PHP message: SESSION CREATE: id=sp9ugee26iflc9mnod54naln6n already exists \xe2\x80\x94 adopted, user_id=NULL', referer: https://eco.mdp.edu.ar/revistas/index.php/aportes
[Wed Apr 29 10:39:27.057610 2026] [proxy_fcgi:error] [pid 725921:tid 725996] [remote 201.179.22.230:34768] AH01071: Got error 'PHP message: SESSION CREATE: id=sp9ugee26iflc9mnod54naln6n already exists \xe2\x80\x94 adopted, user_id=NULL', referer: https://eco.mdp.edu.ar/revistas/index.php/aportes
[Wed Apr 29 10:39:29.580460 2026] [proxy_fcgi:error] [pid 725921:tid 725995] [remote 201.179.22.230:34768] AH01071: Got error 'PHP message: SESSION CREATE: id=sp9ugee26iflc9mnod54naln6n already exists \xe2\x80\x94 adopted, user_id=NULL', referer: https://eco.mdp.edu.ar/revistas/index.php/aportes
[Wed Apr 29 10:39:29.590289 2026] [proxy_fcgi:error] [pid 725921:tid 725927] [remote 201.179.22.230:34768] AH01071: Got error 'PHP message: SESSION CREATE: id=sp9ugee26iflc9mnod54naln6n already exists \xe2\x80\x94 adopted, user_id=NULL', referer: https://eco.mdp.edu.ar/revistas/index.php/aportes
[Wed Apr 29 10:39:37.480426 2026] [proxy_fcgi:error] [pid 727671:tid 727675] [remote 201.179.22.230:33950] AH01071: Got error 'PHP message: SESSION CREATE: id=it30r7vgbh6k55vdmd8scjkgg9 new session; PHP message: SESSION INSERT: id=it30r7vgbh6k55vdmd8scjkgg9 success', referer: https://eco.mdp.edu.ar/revistas/index.php/aportes
[Wed Apr 29 10:39:37.586309 2026] [proxy_fcgi:error] [pid 727671:tid 727689] [remote 201.179.22.230:33950] AH01071: Got error 'PHP message: SESSION CREATE: id=it30r7vgbh6k55vdmd8scjkgg9 already exists \xe2\x80\x94 adopted, user_id=NULL', referer: https://eco.mdp.edu.ar/revistas/index.php/aportes/login
[Wed Apr 29 10:39:37.596261 2026] [proxy_fcgi:error] [pid 727671:tid 727683] [remote 201.179.22.230:33950] AH01071: Got error 'PHP message: SESSION CREATE: id=it30r7vgbh6k55vdmd8scjkgg9 already exists \xe2\x80\x94 adopted, user_id=NULL', referer: https://eco.mdp.edu.ar/revistas/index.php/aportes/login
[Wed Apr 29 10:40:05.965537 2026] [proxy_fcgi:error] [pid 727869:tid 727884] [remote 201.179.22.230:57134] AH01071: Got error 'PHP message: SESSION CREATE: id=it30r7vgbh6k55vdmd8scjkgg9 already exists \xe2\x80\x94 adopted, user_id=NULL; PHP message: SESSION INSERT: id=rceg04flb6hdv8mk1c4dqjjv2j success', referer: https://eco.mdp.edu.ar/revistas/index.php/aportes/login
[Wed Apr 29 10:40:06.022354 2026] [proxy_fcgi:error] [pid 727869:tid 727877] [remote 201.179.22.230:57134] AH01071: Got error 'PHP message: SESSION CREATE: id=rceg04flb6hdv8mk1c4dqjjv2j already exists \xe2\x80\x94 adopted, user_id=NULL', referer: https://eco.mdp.edu.ar/revistas/index.php/aportes/login
[Wed Apr 29 10:40:06.130783 2026] [proxy_fcgi:error] [pid 727869:tid 727886] [remote 201.179.22.230:57134] AH01071: Got error 'PHP message: SESSION CREATE: id=rceg04flb6hdv8mk1c4dqjjv2j already exists \xe2\x80\x94 adopted, user_id=NULL', referer: https://eco.mdp.edu.ar/revistas/index.php/aportes/login
[Wed Apr 29 10:40:06.251154 2026] [proxy_fcgi:error] [pid 727869:tid 727879] [remote 201.179.22.230:57134] AH01071: Got error 'PHP message: SESSION CREATE: id=rceg04flb6hdv8mk1c4dqjjv2j already exists \xe2\x80\x94 adopted, user_id=NULL', referer: https://eco.mdp.edu.ar/revistas/index.php/aportes/login?source=%2Frevistas%2Findex.php%2Faportes%2Fsubmissions
[Wed Apr 29 10:40:06.260542 2026] [proxy_fcgi:error] [pid 727869:tid 727889] [remote 201.179.22.230:57134] AH01071: Got error 'PHP message: SESSION CREATE: id=rceg04flb6hdv8mk1c4dqjjv2j already exists \xe2\x80\x94 adopted, user_id=NULL', referer: https://eco.mdp.edu.ar/revistas/index.php/aportes/login?source=%2Frevistas%2Findex.php%2Faportes%2Fsubmissions
[Wed Apr 29 10:40:37.889446 2026] [proxy_fcgi:error] [pid 727869:tid 727871] [remote 201.179.40.206:56920] AH01071: Got error 'PHP message: [client 201.179.40.206]  https://eco.mdp.edu.ar/cv  Invalid Login Token:  asencioluz47@gmail.com  Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/147.0.0.0 Safari/537.36', referer: https://eco.mdp.edu.ar/cv/login/index.php?loginredirect=1
[Wed Apr 29 10:40:38.625504 2026] [proxy_fcgi:error] [pid 722756:tid 722796] [client 185.191.171.5:42446] AH01071: Got error 'PHP message: SESSION CREATE: id=h9gvgg2o7m6hur1erlpjrk18ek new session; PHP message: SESSION INSERT: id=h9gvgg2o7m6hur1erlpjrk18ek success'

Thanks

Hi, based on the last provided log, I don’t see a single log like SESSION WRITE ? was the patch SessionManager::write being applied ? if applied and provided logs are correct (without anything missing), then this points that for some reason, session not being written . Also logs points that for every request createSession being called which is also not right .

At this point, we need add more detailed log to see what is happening as truthfully, I am really out of ideas at this point .

we can update the following methods as

private function __construct()                        
  {                                                                                                                                                               
      $this->sessionDao = DAORegistry::getDAO('SessionDAO');
      $this->request = Application::get()->getRequest();                                                                                                          
                                                                                                                                                                  
      $this->configure();
      $this->start();                                                                                                                                             
                                                        
      error_log("SESSION INIT: session_id=" . session_id() . " userSession=" . ($this->userSession ? "found(user_id=" . ($this->userSession->getUserId() ??       
  'NULL') . ")" : "NULL"));
                                                                                                                                                                  
      if ($this->userSession) {                         
          if ($this->isValid($this->userSession)) {
              error_log("SESSION INIT: valid — refreshing");
              return $this->refresh();                                                                                                                            
          }
          error_log("SESSION INIT: INVALID — regenerating");                                                                                                      
          session_regenerate_id();                                                                                                                                
      }
                                                                                                                                                                  
      $this->createSession();                           
  }

public function write(string $sessionId, string $data): bool
  {                                                                                                                                                               
      error_log("SESSION WRITE: id={$sessionId} userSession=" . ($this->userSession ? "exists(user_id=" . ($this->userSession->getUserId() ?? 'NULL') . ")" :
  "NULL") . " data_length=" . strlen($data));                                                                                                                     
                                                        
      if ($this->userSession) {                                                                                                                                   
          $this->userSession->setSessionData($data);    
                                                                                                                                                                  
          if (!$this->userSession->getUserId()) {
              $existing = $this->sessionDao->getSession($sessionId);                                                                                              
              if ($existing?->getUserId()) {            
                  $this->userSession->setUserId((int) $existing->getUserId());                                                                                    
                  error_log("SESSION WRITE: preserved user_id=" . $existing->getUserId());
              }                                                                                                                                                   
          }                                             
                                                                                                                                                                  
          $this->sessionDao->updateObject($this->userSession);
      }
      return true;                                                                                                                                                
  }

private function isValid(Session $session): bool      
  {
      $ipCheckEnabled = Config::getVar('security', 'session_check_ip');
      $ipMatch = $session->getIpAddress() === $this->request->getRemoteAddr();
      $ipOk = !$ipCheckEnabled || $ipMatch;                                                                                                                       
   
      $uaOk = $session->getUserAgent() === substr($this->request->getUserAgent(), 0, 255);                                                                        
      $domainOk = !$session->getDomain() || str_ends_with(strtolower($this->request->getServerHost(includePort: false)), strtolower($session->getDomain()));
                                                                                                                                                                  
      if (!$ipOk) error_log("SESSION INVALID: IP — stored=" . $session->getIpAddress() . " current=" . $this->request->getRemoteAddr());                          
      if (!$uaOk) error_log("SESSION INVALID: UA — stored=" . $session->getUserAgent() . " current=" . substr($this->request->getUserAgent(), 0, 255));           
      if (!$domainOk) error_log("SESSION INVALID: Domain — stored=" . $session->getDomain() . " current=" . strtolower($this->request->getServerHost(includePort: 
  false)));                                                                                                                                                       
                                                                                                                                                                  
      if (!$ipOk || !$uaOk || !$domainOk) {                                                                                                                       
          error_log("SESSION CHECK CONFIG: session_check_ip=" . ($ipCheckEnabled ? 'On' : 'Off') . " ip_match=" . ($ipMatch ? 'yes' : 'no'));
      }                                                                                                                                                           
   
      return $ipOk && $uaOk && $domainOk;                                                                                                                         
  }

So need to update 3 methods in the SessionManager.php with more logging to see if we can figure out anything .

Hi, following your previous suggestion, I applied all the requested updates, specifically the last three you mentioned. The error log shows more types of error (SESSION CREATE, SESSION INIT, SESSION INSERT…).

[Thu Apr 30 10:12:37.656629 2026] [proxy_fcgi:error] [pid 794523:tid 805354] [remote 201.179.22.230:47102] AH01071: Got error 'PHP message: SESSION INIT: session_id=7ken4puad6tvfjluvsnsfep9ot userSession=NULL; PHP message: SESSION CREATE: id=7ken4puad6tvfjluvsnsfep9ot already exists \xe2\x80\x94 adopted, user_id=NULL; PHP message: SESSION INSERT: id=pr99b483qn201ke944be5r2f9s success', referer: https://eco.mdp.edu.ar/revistas/index.php/faces/login
[Thu Apr 30 10:12:37.806000 2026] [proxy_fcgi:error] [pid 794523:tid 794600] [remote 201.179.22.230:47102] AH01071: Got error 'PHP message: SESSION INIT: session_id=pr99b483qn201ke944be5r2f9s userSession=NULL; PHP message: SESSION CREATE: id=pr99b483qn201ke944be5r2f9s already exists \xe2\x80\x94 adopted, user_id=NULL', referer: https://eco.mdp.edu.ar/revistas/index.php/faces/login
[Thu Apr 30 10:12:37.894792 2026] [proxy_fcgi:error] [pid 794523:tid 794578] [remote 201.179.22.230:47102] AH01071: Got error 'PHP message: SESSION INIT: session_id=pr99b483qn201ke944be5r2f9s userSession=NULL; PHP message: SESSION CREATE: id=pr99b483qn201ke944be5r2f9s already exists \xe2\x80\x94 adopted, user_id=NULL', referer: https://eco.mdp.edu.ar/revistas/index.php/faces/login
[Thu Apr 30 10:12:38.050189 2026] [proxy_fcgi:error] [pid 794523:tid 794547] [remote 201.179.22.230:47102] AH01071: Got error 'PHP message: SESSION INIT: session_id=pr99b483qn201ke944be5r2f9s userSession=NULL; PHP message: SESSION CREATE: id=pr99b483qn201ke944be5r2f9s already exists \xe2\x80\x94 adopted, user_id=NULL', referer: https://eco.mdp.edu.ar/revistas/index.php/faces/login?source=%2Frevistas%2Findex.php%2Ffaces%2Fsubmissions
[Thu Apr 30 10:12:38.060771 2026] [proxy_fcgi:error] [pid 794523:tid 805353] [remote 201.179.22.230:47102] AH01071: Got error 'PHP message: SESSION INIT: session_id=pr99b483qn201ke944be5r2f9s userSession=NULL; PHP message: SESSION CREATE: id=pr99b483qn201ke944be5r2f9s already exists \xe2\x80\x94 adopted, user_id=NULL', referer: https://eco.mdp.edu.ar/revistas/index.php/faces/login?source=%2Frevistas%2Findex.php%2Ffaces%2Fsubmissions
[Thu Apr 30 10:12:44.803987 2026] [proxy_fcgi:error] [pid 794762:tid 794764] [remote 201.179.22.230:42066] AH01071: Got error 'PHP message: SESSION INIT: session_id=pr99b483qn201ke944be5r2f9s userSession=NULL; PHP message: SESSION CREATE: id=pr99b483qn201ke944be5r2f9s already exists \xe2\x80\x94 adopted, user_id=NULL', referer: https://eco.mdp.edu.ar/revistas/index.php/faces/login?source=%2Frevistas%2Findex.php%2Ffaces%2Fsubmissions
[Thu Apr 30 10:12:44.963541 2026] [proxy_fcgi:error] [pid 794762:tid 802381] [remote 201.179.22.230:42066] AH01071: Got error 'PHP message: SESSION INIT: session_id=pr99b483qn201ke944be5r2f9s userSession=NULL; PHP message: SESSION CREATE: id=pr99b483qn201ke944be5r2f9s already exists \xe2\x80\x94 adopted, user_id=NULL', referer: https://eco.mdp.edu.ar/revistas/
[Thu Apr 30 10:12:44.973364 2026] [proxy_fcgi:error] [pid 794762:tid 802386] [remote 201.179.22.230:42066] AH01071: Got error 'PHP message: SESSION INIT: session_id=pr99b483qn201ke944be5r2f9s userSession=NULL; PHP message: SESSION CREATE: id=pr99b483qn201ke944be5r2f9s already exists \xe2\x80\x94 adopted, user_id=NULL', referer: https://eco.mdp.edu.ar/revistas/
[Thu Apr 30 10:12:50.352059 2026] [proxy_fcgi:error] [pid 794762:tid 794774] [remote 201.179.22.230:58442] AH01071: Got error 'PHP message: SESSION INIT: session_id=pr99b483qn201ke944be5r2f9s userSession=NULL; PHP message: SESSION CREATE: id=pr99b483qn201ke944be5r2f9s already exists \xe2\x80\x94 adopted, user_id=NULL', referer: https://eco.mdp.edu.ar/revistas/
[Thu Apr 30 10:12:50.362514 2026] [proxy_fcgi:error] [pid 794762:tid 794767] [remote 201.179.22.230:58442] AH01071: Got error 'PHP message: SESSION INIT: session_id=pr99b483qn201ke944be5r2f9s userSession=NULL; PHP message: SESSION CREATE: id=pr99b483qn201ke944be5r2f9s already exists \xe2\x80\x94 adopted, user_id=NULL', referer: https://eco.mdp.edu.ar/revistas/
[Thu Apr 30 10:12:58.412265 2026] [proxy_fcgi:error] [pid 794762:tid 794771] [remote 201.179.22.230:58444] AH01071: Got error 'PHP message: SESSION INIT: session_id=3e9i2mn4piei3likfqbgtd93s1 userSession=NULL; PHP message: SESSION CREATE: id=3e9i2mn4piei3likfqbgtd93s1 new session; PHP message: SESSION INSERT: id=3e9i2mn4piei3likfqbgtd93s1 success', referer: https://eco.mdp.edu.ar/revistas/
[Thu Apr 30 10:12:58.554494 2026] [proxy_fcgi:error] [pid 794762:tid 794763] [remote 201.179.22.230:58444] AH01071: Got error 'PHP message: SESSION INIT: session_id=3e9i2mn4piei3likfqbgtd93s1 userSession=NULL; PHP message: SESSION CREATE: id=3e9i2mn4piei3likfqbgtd93s1 already exists \xe2\x80\x94 adopted, user_id=NULL', referer: https://eco.mdp.edu.ar/revistas/index.php/index/login
[Thu Apr 30 10:12:58.564429 2026] [proxy_fcgi:error] [pid 794762:tid 794770] [remote 201.179.22.230:58444] AH01071: Got error 'PHP message: SESSION INIT: session_id=3e9i2mn4piei3likfqbgtd93s1 userSession=NULL; PHP message: SESSION CREATE: id=3e9i2mn4piei3likfqbgtd93s1 already exists \xe2\x80\x94 adopted, user_id=NULL', referer: https://eco.mdp.edu.ar/revistas/index.php/index/login
[Thu Apr 30 10:13:22.994800 2026] [proxy_fcgi:error] [pid 794522:tid 794546] [remote 201.179.22.230:38406] AH01071: Got error 'PHP message: SESSION INIT: session_id=3e9i2mn4piei3likfqbgtd93s1 userSession=NULL; PHP message: SESSION CREATE: id=3e9i2mn4piei3likfqbgtd93s1 already exists \xe2\x80\x94 adopted, user_id=NULL; PHP message: SESSION INSERT: id=1vbko55sn01kc760gj25ghcn4j success', referer: https://eco.mdp.edu.ar/revistas/index.php/index/login
[Thu Apr 30 10:13:23.180070 2026] [proxy_fcgi:error] [pid 794522:tid 797828] [remote 201.179.22.230:38406] AH01071: Got error 'PHP message: SESSION INIT: session_id=1vbko55sn01kc760gj25ghcn4j userSession=NULL; PHP message: SESSION CREATE: id=1vbko55sn01kc760gj25ghcn4j already exists \xe2\x80\x94 adopted, user_id=NULL', referer: https://eco.mdp.edu.ar/revistas/index.php/index/login
[Thu Apr 30 10:13:23.322585 2026] [proxy_fcgi:error] [pid 794522:tid 794545] [remote 201.179.22.230:38406] AH01071: Got error 'PHP message: SESSION INIT: session_id=1vbko55sn01kc760gj25ghcn4j userSession=NULL; PHP message: SESSION CREATE: id=1vbko55sn01kc760gj25ghcn4j already exists \xe2\x80\x94 adopted, user_id=NULL', referer: https://eco.mdp.edu.ar/revistas/index.php/index/index
[Thu Apr 30 10:13:23.333808 2026] [proxy_fcgi:error] [pid 794522:tid 794534] [remote 201.179.22.230:38406] AH01071: Got error 'PHP message: SESSION INIT: session_id=1vbko55sn01kc760gj25ghcn4j userSession=NULL; PHP message: SESSION CREATE: id=1vbko55sn01kc760gj25ghcn4j already exists \xe2\x80\x94 adopted, user_id=NULL', referer: https://eco.mdp.edu.ar/revistas/index.php/index/index
[Thu Apr 30 10:13:28.286127 2026] [proxy_fcgi:error] [pid 794523:tid 794547] [remote 201.179.22.230:38416] AH01071: Got error 'PHP message: SESSION INIT: session_id=1vbko55sn01kc760gj25ghcn4j userSession=NULL; PHP message: SESSION CREATE: id=1vbko55sn01kc760gj25ghcn4j already exists \xe2\x80\x94 adopted, user_id=NULL', referer: https://eco.mdp.edu.ar/revistas/index.php/index/index
[Thu Apr 30 10:13:28.435667 2026] [proxy_fcgi:error] [pid 794523:tid 805352] [remote 201.179.22.230:38416] AH01071: Got error 'PHP message: SESSION INIT: session_id=1vbko55sn01kc760gj25ghcn4j userSession=NULL; PHP message: SESSION CREATE: id=1vbko55sn01kc760gj25ghcn4j already exists \xe2\x80\x94 adopted, user_id=NULL', referer: https://eco.mdp.edu.ar/revistas/index.php/aportes


[Thu Apr 30 10:14:35.371488 2026] [proxy_fcgi:error] [pid 794762:tid 794778] [remote 45.172.19.104:49731] AH01071: Got error 'PHP message: SESSION INIT: session_id=blogdlq79hh7julcu6vl3i6l9d userSession=NULL; PHP message: SESSION CREATE: id=blogdlq79hh7julcu6vl3i6l9d already exists \xe2\x80\x94 adopted, user_id=NULL', referer: https://eco.mdp.edu.ar/revistas/plugins/generic/pdfJsViewer/pdf.js/web/viewer.html?file=https%3A%2F%2Feco.mdp.edu.ar%2Frevistas%2Findex.php%2Faportes%2Farticle%2Fdownload%2F584%2F539%2F1439

[Thu Apr 30 10:14:44.444360 2026] [proxy_fcgi:error] [pid 794681:tid 794702] [remote 201.179.22.230:48160] AH01071: Got error 'PHP message: SESSION INIT: session_id=06qvatnmudjlgbn62onofcha73 userSession=NULL; PHP message: SESSION CREATE: id=06qvatnmudjlgbn62onofcha73 new session; PHP message: SESSION INSERT: id=06qvatnmudjlgbn62onofcha73 success'
[Thu Apr 30 10:14:44.578733 2026] [proxy_fcgi:error] [pid 794681:tid 800807] [remote 201.179.22.230:48160] AH01071: Got error 'PHP message: SESSION INIT: session_id=06qvatnmudjlgbn62onofcha73 userSession=NULL; PHP message: SESSION CREATE: id=06qvatnmudjlgbn62onofcha73 already exists \xe2\x80\x94 adopted, user_id=NULL', referer: https://eco.mdp.edu.ar/revistas/
[Thu Apr 30 10:14:44.588677 2026] [proxy_fcgi:error] [pid 794681:tid 800808] [remote 201.179.22.230:48160] AH01071: Got error 'PHP message: SESSION INIT: session_id=06qvatnmudjlgbn62onofcha73 userSession=NULL; PHP message: SESSION CREATE: id=06qvatnmudjlgbn62onofcha73 already exists \xe2\x80\x94 adopted, user_id=NULL', referer: https://eco.mdp.edu.ar/revistas/
[Thu Apr 30 10:14:46.434075 2026] [proxy_fcgi:error] [pid 794681:tid 794695] [remote 201.179.22.230:48160] AH01071: Got error 'PHP message: SESSION INIT: session_id=06qvatnmudjlgbn62onofcha73 userSession=NULL; PHP message: SESSION CREATE: id=06qvatnmudjlgbn62onofcha73 already exists \xe2\x80\x94 adopted, user_id=NULL', referer: https://eco.mdp.edu.ar/revistas/
[Thu Apr 30 10:14:46.556827 2026] [proxy_fcgi:error] [pid 794681:tid 800814] [remote 201.179.22.230:48160] AH01071: Got error 'PHP message: SESSION INIT: session_id=06qvatnmudjlgbn62onofcha73 userSession=NULL; PHP message: SESSION CREATE: id=06qvatnmudjlgbn62onofcha73 already exists \xe2\x80\x94 adopted, user_id=NULL', referer: https://eco.mdp.edu.ar/revistas/index.php/index/login
[Thu Apr 30 10:14:46.574186 2026] [proxy_fcgi:error] [pid 794681:tid 800813] [remote 201.179.22.230:48160] AH01071: Got error 'PHP message: SESSION INIT: session_id=06qvatnmudjlgbn62onofcha73 userSession=NULL; PHP message: SESSION CREATE: id=06qvatnmudjlgbn62onofcha73 already exists \xe2\x80\x94 adopted, user_id=NULL', referer: https://eco.mdp.edu.ar/revistas/index.php/index/login
[Thu Apr 30 10:15:09.349228 2026] [proxy_fcgi:error] [pid 794762:tid 802387] [remote 10.1.24.81:62271] AH01071: Got error 'PHP message: SESSION INIT: session_id=fhcejou1o2sbll4kkmf3u2mqil userSession=NULL; PHP message: SESSION CREATE: id=fhcejou1o2sbll4kkmf3u2mqil new session; PHP message: SESSION INSERT: id=fhcejou1o2sbll4kkmf3u2mqil success'
[Thu Apr 30 10:15:09.423832 2026] [proxy_fcgi:error] [pid 794762:tid 794769] [remote 10.1.24.81:62271] AH01071: Got error 'PHP message: SESSION INIT: session_id=fhcejou1o2sbll4kkmf3u2mqil userSession=NULL; PHP message: SESSION CREATE: id=fhcejou1o2sbll4kkmf3u2mqil already exists \xe2\x80\x94 adopted, user_id=NULL', referer: https://eco.mdp.edu.ar/revistas/
[Thu Apr 30 10:15:09.433990 2026] [proxy_fcgi:error] [pid 794762:tid 794787] [remote 10.1.24.81:62271] AH01071: Got error 'PHP message: SESSION INIT: session_id=fhcejou1o2sbll4kkmf3u2mqil userSession=NULL; PHP message: SESSION CREATE: id=fhcejou1o2sbll4kkmf3u2mqil already exists \xe2\x80\x94 adopted, user_id=NULL', referer: https://eco.mdp.edu.ar/revistas/
[Thu Apr 30 10:15:14.009889 2026] [proxy_fcgi:error] [pid 794762:tid 794787] [remote 201.179.22.230:40234] AH01071: Got error 'PHP message: SESSION INIT: session_id=06qvatnmudjlgbn62onofcha73 userSession=NULL; PHP message: SESSION CREATE: id=06qvatnmudjlgbn62onofcha73 already exists \xe2\x80\x94 adopted, user_id=NULL; PHP message: SESSION INSERT: id=abdgn7o6498c3s8m6hrt6sf1s9 success', referer: https://eco.mdp.edu.ar/revistas/index.php/index/login
[Thu Apr 30 10:15:14.178861 2026] [proxy_fcgi:error] [pid 794762:tid 802381] [remote 201.179.22.230:40234] AH01071: Got error 'PHP message: SESSION INIT: session_id=abdgn7o6498c3s8m6hrt6sf1s9 userSession=NULL; PHP message: SESSION CREATE: id=abdgn7o6498c3s8m6hrt6sf1s9 already exists \xe2\x80\x94 adopted, user_id=NULL', referer: https://eco.mdp.edu.ar/revistas/index.php/index/login
[Thu Apr 30 10:15:14.305254 2026] [proxy_fcgi:error] [pid 794762:tid 802392] [remote 201.179.22.230:40234] AH01071: Got error 'PHP message: SESSION INIT: session_id=abdgn7o6498c3s8m6hrt6sf1s9 userSession=NULL; PHP message: SESSION CREATE: id=abdgn7o6498c3s8m6hrt6sf1s9 already exists \xe2\x80\x94 adopted, user_id=NULL', referer: https://eco.mdp.edu.ar/revistas/index.php/index/index
[Thu Apr 30 10:15:14.314725 2026] [proxy_fcgi:error] [pid 794762:tid 794768] [remote 201.179.22.230:40234] AH01071: Got error 'PHP message: SESSION INIT: session_id=abdgn7o6498c3s8m6hrt6sf1s9 userSession=NULL; PHP message: SESSION CREATE: id=abdgn7o6498c3s8m6hrt6sf1s9 already exists \xe2\x80\x94 adopted, user_id=NULL', referer: https://eco.mdp.edu.ar/revistas/index.php/index/index
[Thu Apr 30 10:15:16.152141 2026] [proxy_fcgi:error] [pid 794762:tid 794781] [remote 201.179.22.230:40234] AH01071: Got error 'PHP message: SESSION INIT: session_id=abdgn7o6498c3s8m6hrt6sf1s9 userSession=NULL; PHP message: SESSION CREATE: id=abdgn7o6498c3s8m6hrt6sf1s9 already exists \xe2\x80\x94 adopted, user_id=NULL', referer: https://eco.mdp.edu.ar/revistas/index.php/index/index
[Thu Apr 30 10:15:16.269385 2026] [proxy_fcgi:error] [pid 794762:tid 794784] [remote 201.179.22.230:40234] AH01071: Got error 'PHP message: SESSION INIT: session_id=abdgn7o6498c3s8m6hrt6sf1s9 userSession=NULL; PHP message: SESSION CREATE: id=abdgn7o6498c3s8m6hrt6sf1s9 already exists \xe2\x80\x94 adopted, user_id=NULL', referer: https://eco.mdp.edu.ar/revistas/index.php/faces
[Thu Apr 30 10:15:16.280707 2026] [proxy_fcgi:error] [pid 794762:tid 794772] [remote 201.179.22.230:40234] AH01071: Got error 'PHP message: SESSION INIT: session_id=abdgn7o6498c3s8m6hrt6sf1s9 userSession=NULL; PHP message: SESSION CREATE: id=abdgn7o6498c3s8m6hrt6sf1s9 already exists \xe2\x80\x94 adopted, user_id=NULL', referer: https://eco.mdp.edu.ar/revistas/index.php/faces
[Thu Apr 30 10:15:18.569149 2026] [proxy_fcgi:error] [pid 794762:tid 794770] [remote 201.179.22.230:40234] AH01071: Got error 'PHP message: SESSION INIT: session_id=abdgn7o6498c3s8m6hrt6sf1s9 userSession=NULL; PHP message: SESSION CREATE: id=abdgn7o6498c3s8m6hrt6sf1s9 already exists \xe2\x80\x94 adopted, user_id=NULL', referer: https://eco.mdp.edu.ar/revistas/index.php/faces
[Thu Apr 30 10:15:18.699317 2026] [proxy_fcgi:error] [pid 794762:tid 802392] [remote 201.179.22.230:40234] AH01071: Got error 'PHP message: SESSION INIT: session_id=abdgn7o6498c3s8m6hrt6sf1s9 userSession=NULL; PHP message: SESSION CREATE: id=abdgn7o6498c3s8m6hrt6sf1s9 already exists \xe2\x80\x94 adopted, user_id=NULL', referer: https://eco.mdp.edu.ar/revistas/index.php/faces/login
[Thu Apr 30 10:15:18.712511 2026] [proxy_fcgi:error] [pid 794762:tid 794781] [remote 201.179.22.230:40234] AH01071: Got error 'PHP message: SESSION INIT: session_id=abdgn7o6498c3s8m6hrt6sf1s9 userSession=NULL; PHP message: SESSION CREATE: id=abdgn7o6498c3s8m6hrt6sf1s9 already exists \xe2\x80\x94 adopted, user_id=NULL', referer: https://eco.mdp.edu.ar/revistas/index.php/faces/login
[Thu Apr 30 10:15:25.131788 2026] [proxy_fcgi:error] [pid 794762:tid 794776] [remote 10.1.24.81:62276] AH01071: Got error 'PHP message: SESSION INIT: session_id=fhcejou1o2sbll4kkmf3u2mqil userSession=NULL; PHP message: SESSION CREATE: id=fhcejou1o2sbll4kkmf3u2mqil already exists \xe2\x80\x94 adopted, user_id=NULL', referer: https://eco.mdp.edu.ar/revistas/
[Thu Apr 30 10:15:25.225510 2026] [proxy_fcgi:error] [pid 794762:tid 794764] [remote 10.1.24.81:62276] AH01071: Got error 'PHP message: SESSION INIT: session_id=fhcejou1o2sbll4kkmf3u2mqil userSession=NULL; PHP message: SESSION CREATE: id=fhcejou1o2sbll4kkmf3u2mqil already exists \xe2\x80\x94 adopted, user_id=NULL', referer: https://eco.mdp.edu.ar/revistas/index.php/faces
[Thu Apr 30 10:15:25.236536 2026] [proxy_fcgi:error] [pid 794762:tid 794772] [remote 10.1.24.81:62276] AH01071: Got error 'PHP message: SESSION INIT: session_id=fhcejou1o2sbll4kkmf3u2mqil userSession=NULL; PHP message: SESSION CREATE: id=fhcejou1o2sbll4kkmf3u2mqil already exists \xe2\x80\x94 adopted, user_id=NULL', referer: https://eco.mdp.edu.ar/revistas/index.php/faces
[Thu Apr 30 10:15:36.318466 2026] [proxy_fcgi:error] [pid 794523:tid 794555] [remote 10.1.24.81:62277] AH01071: Got error 'PHP message: SESSION INIT: session_id=fhcejou1o2sbll4kkmf3u2mqil userSession=NULL; PHP message: SESSION CREATE: id=fhcejou1o2sbll4kkmf3u2mqil already exists \xe2\x80\x94 adopted, user_id=NULL', referer: https://eco.mdp.edu.ar/revistas/index.php/faces
[Thu Apr 30 10:15:38.424630 2026] [proxy_fcgi:error] [pid 794522:tid 794535] [remote 201.179.22.230:55702] AH01071: Got error 'PHP message: SESSION INIT: session_id=abdgn7o6498c3s8m6hrt6sf1s9 userSession=NULL; PHP message: SESSION CREATE: id=abdgn7o6498c3s8m6hrt6sf1s9 already exists \xe2\x80\x94 adopted, user_id=NULL; PHP message: SESSION INSERT: id=fman998vu8q4eer1vh1vgljkql success', referer: https://eco.mdp.edu.ar/revistas/index.php/faces/login
[Thu Apr 30 10:15:38.547027 2026] [proxy_fcgi:error] [pid 794522:tid 794531] [remote 201.179.22.230:55702] AH01071: Got error 'PHP message: SESSION INIT: session_id=fman998vu8q4eer1vh1vgljkql userSession=NULL; PHP message: SESSION CREATE: id=fman998vu8q4eer1vh1vgljkql already exists \xe2\x80\x94 adopted, user_id=NULL', referer: https://eco.mdp.edu.ar/revistas/index.php/faces/login
[Thu Apr 30 10:15:38.631546 2026] [proxy_fcgi:error] [pid 794522:tid 794541] [remote 201.179.22.230:55702] AH01071: Got error 'PHP message: SESSION INIT: session_id=fman998vu8q4eer1vh1vgljkql userSession=NULL; PHP message: SESSION CREATE: id=fman998vu8q4eer1vh1vgljkql already exists \xe2\x80\x94 adopted, user_id=NULL', referer: https://eco.mdp.edu.ar/revistas/index.php/faces/login
[Thu Apr 30 10:15:38.789496 2026] [proxy_fcgi:error] [pid 794522:tid 794544] [remote 201.179.22.230:55702] AH01071: Got error 'PHP message: SESSION INIT: session_id=fman998vu8q4eer1vh1vgljkql userSession=NULL; PHP message: SESSION CREATE: id=fman998vu8q4eer1vh1vgljkql already exists \xe2\x80\x94 adopted, user_id=NULL', referer: https://eco.mdp.edu.ar/revistas/index.php/faces/login?source=%2Frevistas%2Findex.php%2Ffaces%2Fsubmissions
[Thu Apr 30 10:15:38.799076 2026] [proxy_fcgi:error] [pid 794522:tid 797835] [remote 201.179.22.230:55702] AH01071: Got error 'PHP message: SESSION INIT: session_id=fman998vu8q4eer1vh1vgljkql userSession=NULL; PHP message: SESSION CREATE: id=fman998vu8q4eer1vh1vgljkql already exists \xe2\x80\x94 adopted, user_id=NULL', referer: https://eco.mdp.edu.ar/revistas/index.php/faces/login?source=%2Frevistas%2Findex.php%2Ffaces%2Fsubmissions
[Thu Apr 30 10:15:53.549493 2026] [proxy_fcgi:error] [pid 794762:tid 802391] [remote 201.179.22.230:56508] AH01071: Got error 'PHP message: SESSION INIT: session_id=epa71cv7p0gpfoqmdmno8rkoc0 userSession=NULL; PHP message: SESSION CREATE: id=epa71cv7p0gpfoqmdmno8rkoc0 new session; PHP message: SESSION INSERT: id=epa71cv7p0gpfoqmdmno8rkoc0 success'
[Thu Apr 30 10:15:53.690716 2026] [proxy_fcgi:error] [pid 794762:tid 794766] [remote 201.179.22.230:56508] AH01071: Got error 'PHP message: SESSION INIT: session_id=epa71cv7p0gpfoqmdmno8rkoc0 userSession=NULL; PHP message: SESSION CREATE: id=epa71cv7p0gpfoqmdmno8rkoc0 already exists \xe2\x80\x94 adopted, user_id=NULL', referer: https://eco.mdp.edu.ar/revistas/index.php/aportes
[Thu Apr 30 10:15:53.701369 2026] [proxy_fcgi:error] [pid 794762:tid 802389] [remote 201.179.22.230:56508] AH01071: Got error 'PHP message: SESSION INIT: session_id=epa71cv7p0gpfoqmdmno8rkoc0 userSession=NULL; PHP message: SESSION CREATE: id=epa71cv7p0gpfoqmdmno8rkoc0 already exists \xe2\x80\x94 adopted, user_id=NULL', referer: https://eco.mdp.edu.ar/revistas/index.php/aportes
[Thu Apr 30 10:15:55.242315 2026] [proxy_fcgi:error] [pid 794762:tid 794763] [remote 10.1.24.81:62282] AH01071: Got error 'PHP message: SESSION INIT: session_id=fhcejou1o2sbll4kkmf3u2mqil userSession=NULL; PHP message: SESSION CREATE: id=fhcejou1o2sbll4kkmf3u2mqil already exists \xe2\x80\x94 adopted, user_id=NULL; PHP message: SESSION INSERT: id=beo1cuu0dur76opjef6s56nakc success', referer: https://eco.mdp.edu.ar/revistas/index.php/faces/login
[Thu Apr 30 10:15:55.269664 2026] [proxy_fcgi:error] [pid 794762:tid 802382] [remote 10.1.24.81:62282] AH01071: Got error 'PHP message: SESSION INIT: session_id=beo1cuu0dur76opjef6s56nakc userSession=NULL; PHP message: SESSION CREATE: id=beo1cuu0dur76opjef6s56nakc already exists \xe2\x80\x94 adopted, user_id=NULL', referer: https://eco.mdp.edu.ar/revistas/index.php/faces/login
[Thu Apr 30 10:15:55.329401 2026] [proxy_fcgi:error] [pid 794762:tid 794780] [remote 10.1.24.81:62282] AH01071: Got error 'PHP message: SESSION INIT: session_id=beo1cuu0dur76opjef6s56nakc userSession=NULL; PHP message: SESSION CREATE: id=beo1cuu0dur76opjef6s56nakc already exists \xe2\x80\x94 adopted, user_id=NULL', referer: https://eco.mdp.edu.ar/revistas/index.php/faces/login
[Thu Apr 30 10:15:55.625368 2026] [proxy_fcgi:error] [pid 794762:tid 794812] [client 85.208.96.210:64096] AH01071: Got error 'PHP message: SESSION INIT: session_id=3q8lgape2goh4r2830088b2gpk userSession=NULL; PHP message: SESSION CREATE: id=3q8lgape2goh4r2830088b2gpk new session; PHP message: SESSION INSERT: id=3q8lgape2goh4r2830088b2gpk success'
[Thu Apr 30 10:15:55.952831 2026] [proxy_fcgi:error] [pid 794762:tid 794786] [remote 201.179.22.230:56508] AH01071: Got error 'PHP message: SESSION INIT: session_id=epa71cv7p0gpfoqmdmno8rkoc0 userSession=NULL; PHP message: SESSION CREATE: id=epa71cv7p0gpfoqmdmno8rkoc0 already exists \xe2\x80\x94 adopted, user_id=NULL', referer: https://eco.mdp.edu.ar/revistas/index.php/aportes
[Thu Apr 30 10:15:56.080716 2026] [proxy_fcgi:error] [pid 794762:tid 794782] [remote 201.179.22.230:56508] AH01071: Got error 'PHP message: SESSION INIT: session_id=epa71cv7p0gpfoqmdmno8rkoc0 userSession=NULL; PHP message: SESSION CREATE: id=epa71cv7p0gpfoqmdmno8rkoc0 already exists \xe2\x80\x94 adopted, user_id=NULL', referer: https://eco.mdp.edu.ar/revistas/index.php/aportes/login
[Thu Apr 30 10:15:56.091247 2026] [proxy_fcgi:error] [pid 794762:tid 794784] [remote 201.179.22.230:56508] AH01071: Got error 'PHP message: SESSION INIT: session_id=epa71cv7p0gpfoqmdmno8rkoc0 userSession=NULL; PHP message: SESSION CREATE: id=epa71cv7p0gpfoqmdmno8rkoc0 already exists \xe2\x80\x94 adopted, user_id=NULL', referer: https://eco.mdp.edu.ar/revistas/index.php/aportes/login
[Thu Apr 30 10:15:57.689922 2026] [proxy_fcgi:error] [pid 794762:tid 794783] [remote 10.1.24.81:62282] AH01071: Got error 'PHP message: SESSION INIT: session_id=beo1cuu0dur76opjef6s56nakc userSession=NULL; PHP message: SESSION CREATE: id=beo1cuu0dur76opjef6s56nakc already exists \xe2\x80\x94 adopted, user_id=NULL', referer: https://eco.mdp.edu.ar/revistas/index.php/faces
[Thu Apr 30 10:15:58.565129 2026] [proxy_fcgi:error] [pid 794762:tid 794770] [remote 10.1.24.81:62282] AH01071: Got error 'PHP message: SESSION INIT: session_id=beo1cuu0dur76opjef6s56nakc userSession=NULL; PHP message: SESSION CREATE: id=beo1cuu0dur76opjef6s56nakc already exists \xe2\x80\x94 adopted, user_id=NULL', referer: https://eco.mdp.edu.ar/revistas/
[Thu Apr 30 10:15:59.546904 2026] [proxy_fcgi:error] [pid 794762:tid 794773] [remote 10.1.24.81:62282] AH01071: Got error 'PHP message: SESSION INIT: session_id=beo1cuu0dur76opjef6s56nakc userSession=NULL; PHP message: SESSION CREATE: id=beo1cuu0dur76opjef6s56nakc already exists \xe2\x80\x94 adopted, user_id=NULL'
[Thu Apr 30 10:16:01.004805 2026] [proxy_fcgi:error] [pid 794762:tid 802388] [remote 10.1.24.81:62282] AH01071: Got error 'PHP message: SESSION INIT: session_id=beo1cuu0dur76opjef6s56nakc userSession=NULL; PHP message: SESSION CREATE: id=beo1cuu0dur76opjef6s56nakc already exists \xe2\x80\x94 adopted, user_id=NULL', referer: https://eco.mdp.edu.ar/revistas/
[Thu Apr 30 10:16:01.093772 2026] [proxy_fcgi:error] [pid 794762:tid 794771] [remote 10.1.24.81:62282] AH01071: Got error 'PHP message: SESSION INIT: session_id=beo1cuu0dur76opjef6s56nakc userSession=NULL; PHP message: SESSION CREATE: id=beo1cuu0dur76opjef6s56nakc already exists \xe2\x80\x94 adopted, user_id=NULL', referer: https://eco.mdp.edu.ar/revistas/index.php/aportes
[Thu Apr 30 10:16:01.104650 2026] [proxy_fcgi:error] [pid 794762:tid 794769] [remote 10.1.24.81:62282] AH01071: Got error 'PHP message: SESSION INIT: session_id=beo1cuu0dur76opjef6s56nakc userSession=NULL; PHP message: SESSION CREATE: id=beo1cuu0dur76opjef6s56nakc already exists \xe2\x80\x94 adopted, user_id=NULL', referer: https://eco.mdp.edu.ar/revistas/index.php/aportes
[Thu Apr 30 10:16:03.546143 2026] [proxy_fcgi:error] [pid 794762:tid 794783] [remote 10.1.24.81:62282] AH01071: Got error 'PHP message: SESSION INIT: session_id=beo1cuu0dur76opjef6s56nakc userSession=NULL; PHP message: SESSION CREATE: id=beo1cuu0dur76opjef6s56nakc already exists \xe2\x80\x94 adopted, user_id=NULL', referer: https://eco.mdp.edu.ar/revistas/index.php/aportes
[Thu Apr 30 10:16:07.322436 2026] [proxy_fcgi:error] [pid 794524:tid 794643] [client 185.191.171.3:37258] AH01071: Got error 'PHP message: SESSION INIT: session_id=1cqg7dknlljhao4rhepv5tk1ck userSession=NULL; PHP message: SESSION CREATE: id=1cqg7dknlljhao4rhepv5tk1ck new session; PHP message: SESSION INSERT: id=1cqg7dknlljhao4rhepv5tk1ck success'
[Thu Apr 30 10:16:17.747789 2026] [proxy_fcgi:error] [pid 794523:tid 794560] [remote 10.1.24.81:62283] AH01071: Got error 'PHP message: SESSION INIT: session_id=beo1cuu0dur76opjef6s56nakc userSession=NULL; PHP message: SESSION CREATE: id=beo1cuu0dur76opjef6s56nakc already exists \xe2\x80\x94 adopted, user_id=NULL; PHP message: SESSION INSERT: id=85rh4apengpirmsclf1uklljgd success', referer: https://eco.mdp.edu.ar/revistas/index.php/aportes/login
[Thu Apr 30 10:16:17.774476 2026] [proxy_fcgi:error] [pid 794523:tid 794554] [remote 10.1.24.81:62283] AH01071: Got error 'PHP message: SESSION INIT: session_id=85rh4apengpirmsclf1uklljgd userSession=NULL; PHP message: SESSION CREATE: id=85rh4apengpirmsclf1uklljgd already exists \xe2\x80\x94 adopted, user_id=NULL', referer: https://eco.mdp.edu.ar/revistas/index.php/aportes/login
[Thu Apr 30 10:16:17.830810 2026] [proxy_fcgi:error] [pid 794523:tid 794561] [remote 10.1.24.81:62283] AH01071: Got error 'PHP message: SESSION INIT: session_id=85rh4apengpirmsclf1uklljgd userSession=NULL; PHP message: SESSION CREATE: id=85rh4apengpirmsclf1uklljgd already exists \xe2\x80\x94 adopted, user_id=NULL', referer: https://eco.mdp.edu.ar/revistas/index.php/aportes/login
[Thu Apr 30 10:16:20.614698 2026] [proxy_fcgi:error] [pid 794762:tid 794763] [remote 201.179.22.230:60808] AH01071: Got error 'PHP message: SESSION INIT: session_id=epa71cv7p0gpfoqmdmno8rkoc0 userSession=NULL; PHP message: SESSION CREATE: id=epa71cv7p0gpfoqmdmno8rkoc0 already exists \xe2\x80\x94 adopted, user_id=NULL; PHP message: SESSION INSERT: id=apjkbuc469o741m5102ct7d764 success', referer: https://eco.mdp.edu.ar/revistas/index.php/aportes/login
[Thu Apr 30 10:16:20.735828 2026] [proxy_fcgi:error] [pid 794762:tid 794771] [remote 201.179.22.230:60808] AH01071: Got error 'PHP message: SESSION INIT: session_id=apjkbuc469o741m5102ct7d764 userSession=NULL; PHP message: SESSION CREATE: id=apjkbuc469o741m5102ct7d764 already exists \xe2\x80\x94 adopted, user_id=NULL', referer: https://eco.mdp.edu.ar/revistas/index.php/aportes/login
[Thu Apr 30 10:16:20.826504 2026] [proxy_fcgi:error] [pid 794762:tid 802385] [remote 201.179.22.230:60808] AH01071: Got error 'PHP message: SESSION INIT: session_id=apjkbuc469o741m5102ct7d764 userSession=NULL; PHP message: SESSION CREATE: id=apjkbuc469o741m5102ct7d764 already exists \xe2\x80\x94 adopted, user_id=NULL', referer: https://eco.mdp.edu.ar/revistas/index.php/aportes/login
[Thu Apr 30 10:16:20.987052 2026] [proxy_fcgi:error] [pid 794762:tid 794784] [remote 201.179.22.230:60808] AH01071: Got error 'PHP message: SESSION INIT: session_id=apjkbuc469o741m5102ct7d764 userSession=NULL; PHP message: SESSION CREATE: id=apjkbuc469o741m5102ct7d764 already exists \xe2\x80\x94 adopted, user_id=NULL', referer: https://eco.mdp.edu.ar/revistas/index.php/aportes/login?source=%2Frevistas%2Findex.php%2Faportes%2Fsubmissions
[Thu Apr 30 10:16:29.751588 2026] [proxy_fcgi:error] [pid 794522:tid 797832] [remote 10.1.24.81:62287] AH01071: Got error 'PHP message: SESSION INIT: session_id=85rh4apengpirmsclf1uklljgd userSession=NULL; PHP message: SESSION CREATE: id=85rh4apengpirmsclf1uklljgd already exists \xe2\x80\x94 adopted, user_id=NULL', referer: https://eco.mdp.edu.ar/revistas/index.php/faces
[Thu Apr 30 10:16:29.761442 2026] [proxy_fcgi:error] [pid 794522:tid 794550] [remote 10.1.24.81:62287] AH01071: Got error 'PHP message: SESSION INIT: session_id=85rh4apengpirmsclf1uklljgd userSession=NULL; PHP message: SESSION CREATE: id=85rh4apengpirmsclf1uklljgd already exists \xe2\x80\x94 adopted, user_id=NULL', referer: https://eco.mdp.edu.ar/revistas/index.php/faces
[Thu Apr 30 10:16:31.547809 2026] [proxy_fcgi:error] [pid 794522:tid 794534] [remote 10.1.24.81:62287] AH01071: Got error 'PHP message: SESSION INIT: session_id=85rh4apengpirmsclf1uklljgd userSession=NULL; PHP message: SESSION CREATE: id=85rh4apengpirmsclf1uklljgd already exists \xe2\x80\x94 adopted, user_id=NULL', referer: https://eco.mdp.edu.ar/revistas/index.php/faces


[Thu Apr 30 10:17:10.751843 2026] [proxy_fcgi:error] [pid 794762:tid 802384] [remote 10.1.24.81:62289] AH01071: Got error 'PHP message: SESSION INIT: session_id=u7uandlrougps0ohjhjcvi1skn userSession=NULL; PHP message: SESSION CREATE: id=u7uandlrougps0ohjhjcvi1skn already exists \xe2\x80\x94 adopted, user_id=NULL; PHP message: SESSION INSERT: id=3lufvl3pdea5pjmo22dbjjt359 success', referer: https://eco.mdp.edu.ar/revistas/index.php/aportes/login
[Thu Apr 30 10:17:10.779021 2026] [proxy_fcgi:error] [pid 794762:tid 794766] [remote 10.1.24.81:62289] AH01071: Got error 'PHP message: SESSION INIT: session_id=3lufvl3pdea5pjmo22dbjjt359 userSession=NULL; PHP message: SESSION CREATE: id=3lufvl3pdea5pjmo22dbjjt359 already exists \xe2\x80\x94 adopted, user_id=NULL', referer: https://eco.mdp.edu.ar/revistas/index.php/aportes/login
[Thu Apr 30 10:17:10.840863 2026] [proxy_fcgi:error] [pid 794762:tid 794767] [remote 10.1.24.81:62289] AH01071: Got error 'PHP message: SESSION INIT: session_id=3lufvl3pdea5pjmo22dbjjt359 userSession=NULL; PHP message: SESSION CREATE: id=3lufvl3pdea5pjmo22dbjjt359 already exists \xe2\x80\x94 adopted, user_id=NULL', referer: https://eco.mdp.edu.ar/revistas/index.php/aportes/login

What a nightmare, thanks!

Hi, the logs does not really adds up as expected . No calls to session write or session invalid . was all the patches applied ?

I am going to suggest something different

  1. truncate the sessions table
  2. clear the OPcache caches

if the logs does not appear as we expected , means something at infrastructure level has changed related to PHP’s session config .

Hi,

Yes, I’ve applied all the patches you suggested.

I also truncated the sessions table and cleared the OPcache, but the result in the error log remains the same:

[Mon May 04 09:37:48.096397 2026] [proxy_fcgi:error] [pid 1103262:tid 1103304] [remote 10.1.24.81:49538] AH01071: Got error 'PHP message: SESSION INIT: session_id=tvl68e9309e34qbkl1viudnqnv userSession=NULL; PHP message: SESSION CREATE: id=tvl68e9309e34qbkl1viudnqnv already exists \xe2\x80\x94 adopted, user_id=NULL', referer: https://eco.mdp.edu.ar/revistas/
[Mon May 04 09:37:48.110160 2026] [proxy_fcgi:error] [pid 1103262:tid 1103309] [remote 10.1.24.81:49538] AH01071: Got error 'PHP message: SESSION INIT: session_id=tvl68e9309e34qbkl1viudnqnv userSession=NULL; PHP message: SESSION CREATE: id=tvl68e9309e34qbkl1viudnqnv already exists \xe2\x80\x94 adopted, user_id=NULL', referer: https://eco.mdp.edu.ar/revistas/
[Mon May 04 09:37:51.377112 2026] [proxy_fcgi:error] [pid 1114095:tid 1114178] [remote 10.1.24.81:49539] AH01071: Got error 'PHP message: SESSION INIT: session_id=tvl68e9309e34qbkl1viudnqnv userSession=NULL; PHP message: SESSION CREATE: id=tvl68e9309e34qbkl1viudnqnv already exists \xe2\x80\x94 adopted, user_id=NULL', referer: https://eco.mdp.edu.ar/revistas/
[Mon May 04 09:37:58.286697 2026] [proxy_fcgi:error] [pid 1103261:tid 1103271] [remote 181.30.149.76:5974] AH01071: Got error 'PHP message: PHP Warning:  Undefined array key "presencial_habilitado" in /var/www/FCEyS/trayectos/index.php on line 15', referer: https://eco.mdp.edu.ar/ingresantes
[Mon May 04 09:38:00.525651 2026] [proxy_fcgi:error] [pid 1103262:tid 1110946] [remote 10.1.24.81:49540] AH01071: Got error 'PHP message: SESSION INIT: session_id=tvl68e9309e34qbkl1viudnqnv userSession=NULL; PHP message: SESSION CREATE: id=tvl68e9309e34qbkl1viudnqnv already exists \xe2\x80\x94 adopted, user_id=NULL; PHP message: SESSION INSERT: id=fvgto194ulho0bgit61b8u5fsi success', referer: https://eco.mdp.edu.ar/revistas/index.php/index/login
[Mon May 04 09:38:00.573610 2026] [proxy_fcgi:error] [pid 1103262:tid 1103327] [remote 10.1.24.81:49540] AH01071: Got error 'PHP message: SESSION INIT: session_id=fvgto194ulho0bgit61b8u5fsi userSession=NULL; PHP message: SESSION CREATE: id=fvgto194ulho0bgit61b8u5fsi already exists \xe2\x80\x94 adopted, user_id=NULL', referer: https://eco.mdp.edu.ar/revistas/index.php/index/login
[Mon May 04 09:38:04.606980 2026] [proxy_fcgi:error] [pid 1103262:tid 1103296] [remote 10.32.134.227:58890] AH01071: Got error 'PHP message: Cannot find session record p2sng2lvrtkgqhn27qemhop7f9 for user 54894, creating new session.', referer: https://eco.mdp.edu.ar/cv/mod/folder/view.php?id=84735
[Mon May 04 09:38:10.782674 2026] [proxy_fcgi:error] [pid 1114095:tid 1114102] [remote 10.1.24.81:49543] AH01071: Got error 'PHP message: SESSION INIT: session_id=fvgto194ulho0bgit61b8u5fsi userSession=NULL; PHP message: SESSION CREATE: id=fvgto194ulho0bgit61b8u5fsi already exists \xe2\x80\x94 adopted, user_id=NULL'
[Mon May 04 09:38:10.857190 2026] [proxy_fcgi:error] [pid 1114095:tid 1114113] [remote 10.1.24.81:49543] AH01071: Got error 'PHP message: SESSION INIT: session_id=fvgto194ulho0bgit61b8u5fsi userSession=NULL; PHP message: SESSION CREATE: id=fvgto194ulho0bgit61b8u5fsi already exists \xe2\x80\x94 adopted, user_id=NULL', referer: https://eco.mdp.edu.ar/revistas/
[Mon May 04 09:38:10.871287 2026] [proxy_fcgi:error] [pid 1114095:tid 1114219] [remote 10.1.24.81:49543] AH01071: Got error 'PHP message: SESSION INIT: session_id=fvgto194ulho0bgit61b8u5fsi userSession=NULL; PHP message: SESSION CREATE: id=fvgto194ulho0bgit61b8u5fsi already exists \xe2\x80\x94 adopted, user_id=NULL', referer: https://eco.mdp.edu.ar/revistas/
[Mon May 04 09:38:12.482741 2026] [proxy_fcgi:error] [pid 1114095:tid 1114215] [remote 10.1.24.81:49543] AH01071: Got error 'PHP message: SESSION INIT: session_id=fvgto194ulho0bgit61b8u5fsi userSession=NULL; PHP message: SESSION CREATE: id=fvgto194ulho0bgit61b8u5fsi already exists \xe2\x80\x94 adopted, user_id=NULL', referer: https://eco.mdp.edu.ar/revistas/
[Mon May 04 09:38:12.570143 2026] [proxy_fcgi:error] [pid 1114095:tid 1114211] [remote 10.1.24.81:49543] AH01071: Got error 'PHP message: SESSION INIT: session_id=fvgto194ulho0bgit61b8u5fsi userSession=NULL; PHP message: SESSION CREATE: id=fvgto194ulho0bgit61b8u5fsi already exists \xe2\x80\x94 adopted, user_id=NULL', referer: https://eco.mdp.edu.ar/revistas/index.php/faces
[Mon May 04 09:38:12.584558 2026] [proxy_fcgi:error] [pid 1114095:tid 1114116] [remote 10.1.24.81:49543] AH01071: Got error 'PHP message: SESSION INIT: session_id=fvgto194ulho0bgit61b8u5fsi userSession=NULL; PHP message: SESSION CREATE: id=fvgto194ulho0bgit61b8u5fsi already exists \xe2\x80\x94 adopted, user_id=NULL', referer: https://eco.mdp.edu.ar/revistas/index.php/faces
[Mon May 04 09:38:14.387878 2026] [proxy_fcgi:error] [pid 1114095:tid 1114216] [remote 10.1.24.81:49543] AH01071: Got error 'PHP message: SESSION INIT: session_id=fvgto194ulho0bgit61b8u5fsi userSession=NULL; PHP message: SESSION CREATE: id=fvgto194ulho0bgit61b8u5fsi already exists \xe2\x80\x94 adopted, user_id=NULL', referer: https://eco.mdp.edu.ar/revistas/index.php/faces
[Mon May 04 09:38:18.617290 2026] [proxy_fcgi:error] [pid 1114095:tid 1114129] [client 165.245.189.134:54988] AH01071: Got error 'PHP message: Default exception handler: Acceso denegado Debug: \nError code: accessdenied\n* line 8738 of /lib/adminlib.php: core\\exception\\moodle_exception thrown\n* line 29 of /admin/tool/installaddon/index.php: call to admin_externalpage_setup()\n'
[Mon May 04 09:38:23.671729 2026] [proxy_fcgi:error] [pid 1114095:tid 1114109] [remote 10.1.24.81:49544] AH01071: Got error 'PHP message: SESSION INIT: session_id=fvgto194ulho0bgit61b8u5fsi userSession=NULL; PHP message: SESSION CREATE: id=fvgto194ulho0bgit61b8u5fsi already exists \xe2\x80\x94 adopted, user_id=NULL; PHP message: SESSION INSERT: id=pv7adlrfrgrcl3bgms8bgf5435 success', referer: https://eco.mdp.edu.ar/revistas/index.php/faces/login
[Mon May 04 09:38:23.704910 2026] [proxy_fcgi:error] [pid 1114095:tid 1114220] [remote 10.1.24.81:49544] AH01071: Got error 'PHP message: SESSION INIT: session_id=pv7adlrfrgrcl3bgms8bgf5435 userSession=NULL; PHP message: SESSION CREATE: id=pv7adlrfrgrcl3bgms8bgf5435 already exists \xe2\x80\x94 adopted, user_id=NULL', referer: https://eco.mdp.edu.ar/revistas/index.php/faces/login
[Mon May 04 09:38:23.773033 2026] [proxy_fcgi:error] [pid 1114095:tid 1114178] [remote 10.1.24.81:49544] AH01071: Got error 'PHP message: SESSION INIT: session_id=pv7adlrfrgrcl3bgms8bgf5435 userSession=NULL; PHP message: SESSION CREATE: id=pv7adlrfrgrcl3bgms8bgf5435 already exists \xe2\x80\x94 adopted, user_id=NULL', referer: https://eco.mdp.edu.ar/revistas/index.php/faces/login
[Mon May 04 09:38:28.982238 2026] [proxy_fcgi:error] [pid 1103263:tid 1103331] [remote 10.1.24.81:49545] AH01071: Got error 'PHP message: SESSION INIT: session_id=pv7adlrfrgrcl3bgms8bgf5435 userSession=NULL; PHP message: SESSION CREATE: id=pv7adlrfrgrcl3bgms8bgf5435 already exists \xe2\x80\x94 adopted, user_id=NULL'
[Mon May 04 09:38:30.756689 2026] [proxy_fcgi:error] [pid 1103263:tid 1103354] [remote 10.1.24.81:49545] AH01071: Got error 'PHP message: SESSION INIT: session_id=pv7adlrfrgrcl3bgms8bgf5435 userSession=NULL; PHP message: SESSION CREATE: id=pv7adlrfrgrcl3bgms8bgf5435 already exists \xe2\x80\x94 adopted, user_id=NULL', referer: https://eco.mdp.edu.ar/revistas/
[Mon May 04 09:38:30.834613 2026] [proxy_fcgi:error] [pid 1103263:tid 1104881] [remote 10.1.24.81:49545] AH01071: Got error 'PHP message: SESSION INIT: session_id=pv7adlrfrgrcl3bgms8bgf5435 userSession=NULL; PHP message: SESSION CREATE: id=pv7adlrfrgrcl3bgms8bgf5435 already exists \xe2\x80\x94 adopted, user_id=NULL', referer: https://eco.mdp.edu.ar/revistas/index.php/aportes
[Mon May 04 09:38:30.849646 2026] [proxy_fcgi:error] [pid 1103263:tid 1103349] [remote 10.1.24.81:49545] AH01071: Got error 'PHP message: SESSION INIT: session_id=pv7adlrfrgrcl3bgms8bgf5435 userSession=NULL; PHP message: SESSION CREATE: id=pv7adlrfrgrcl3bgms8bgf5435 already exists \xe2\x80\x94 adopted, user_id=NULL', referer: https://eco.mdp.edu.ar/revistas/index.php/aportes
[Mon May 04 09:38:32.738991 2026] [proxy_fcgi:error] [pid 1103263:tid 1103305] [remote 10.1.24.81:49545] AH01071: Got error 'PHP message: SESSION INIT: session_id=pv7adlrfrgrcl3bgms8bgf5435 userSession=NULL; PHP message: SESSION CREATE: id=pv7adlrfrgrcl3bgms8bgf5435 already exists \xe2\x80\x94 adopted, user_id=NULL', referer: https://eco.mdp.edu.ar/revistas/index.php/aportes
[Mon May 04 09:38:33.697032 2026] [proxy_fcgi:error] [pid 1103263:tid 1104876] [remote 10.1.24.81:49545] AH01071: Got error 'PHP message: SESSION INIT: session_id=pv7adlrfrgrcl3bgms8bgf5435 userSession=NULL; PHP message: SESSION CREATE: id=pv7adlrfrgrcl3bgms8bgf5435 already exists \xe2\x80\x94 adopted, user_id=NULL', referer: https://eco.mdp.edu.ar/revistas/index.php/aportes/login
[Mon May 04 09:38:35.651376 2026] [proxy_fcgi:error] [pid 1103263:tid 1104877] [remote 10.1.24.81:49545] AH01071: Got error 'PHP message: SESSION INIT: session_id=pv7adlrfrgrcl3bgms8bgf5435 userSession=NULL; PHP message: SESSION CREATE: id=pv7adlrfrgrcl3bgms8bgf5435 already exists \xe2\x80\x94 adopted, user_id=NULL', referer: https://eco.mdp.edu.ar/revistas/index.php/aportes
[Mon May 04 09:38:36.514166 2026] [proxy_fcgi:error] [pid 1103263:tid 1104875] [remote 10.1.24.81:49545] AH01071: Got error 'PHP message: SESSION INIT: session_id=pv7adlrfrgrcl3bgms8bgf5435 userSession=NULL; PHP message: SESSION CREATE: id=pv7adlrfrgrcl3bgms8bgf5435 already exists \xe2\x80\x94 adopted, user_id=NULL', referer: https://eco.mdp.edu.ar/revistas/index.php/aportes/login
[Mon May 04 09:38:37.747271 2026] [proxy_fcgi:error] [pid 1103263:tid 1104872] [remote 10.1.24.81:49545] AH01071: Got error 'PHP message: SESSION INIT: session_id=pv7adlrfrgrcl3bgms8bgf5435 userSession=NULL; PHP message: SESSION CREATE: id=pv7adlrfrgrcl3bgms8bgf5435 already exists \xe2\x80\x94 adopted, user_id=NULL', referer: https://eco.mdp.edu.ar/revistas/index.php/aportes
[Mon May 04 09:38:50.314153 2026] [proxy_fcgi:error] [pid 1103262:tid 1103334] [remote 10.1.24.81:49546] AH01071: Got error 'PHP message: SESSION INIT: session_id=pv7adlrfrgrcl3bgms8bgf5435 userSession=NULL; PHP message: SESSION CREATE: id=pv7adlrfrgrcl3bgms8bgf5435 already exists \xe2\x80\x94 adopted, user_id=NULL; PHP message: SESSION INSERT: id=b4098voa6hkbu0gboejbp9221l success', referer: https://eco.mdp.edu.ar/revistas/index.php/aportes/login
[Mon May 04 09:38:50.358960 2026] [proxy_fcgi:error] [pid 1103262:tid 1110942] [remote 10.1.24.81:49546] AH01071: Got error 'PHP message: SESSION INIT: session_id=b4098voa6hkbu0gboejbp9221l userSession=NULL; PHP message: SESSION CREATE: id=b4098voa6hkbu0gboejbp9221l already exists \xe2\x80\x94 adopted, user_id=NULL', referer: https://eco.mdp.edu.ar/revistas/index.php/aportes/login
[Mon May 04 09:38:50.426001 2026] [proxy_fcgi:error] [pid 1103262:tid 1110944] [remote 10.1.24.81:49546] AH01071: Got error 'PHP message: SESSION INIT: session_id=b4098voa6hkbu0gboejbp9221l userSession=NULL; PHP message: SESSION CREATE: id=b4098voa6hkbu0gboejbp9221l already exists \xe2\x80\x94 adopted, user_id=NULL', referer: https://eco.mdp.edu.ar/revistas/index.php/aportes/login
[Mon May 04 09:38:50.901139 2026] [proxy_fcgi:error] [pid 1103261:tid 1103291] [remote 186.157.162.161:7647] AH01071: Got error 'PHP message: Default exception handler: Un par\xc3\xa1metro necesario (token) faltaba Debug: \nError code: missingparam\n* line 574 of /lib/classes/param.php: core\\exception\\moodle_exception thrown\n* line 452 of /lib/classes/param.php: call to core\\param->get_request_parameter()\n* line 657 of /lib/moodlelib.php: call to core\\param->required_param()\n* line 47 of /webservice/pluginfile.php: call to required_param()\n'
[Mon May 04 09:39:02.595844 2026] [proxy_fcgi:error] [pid 1105144:tid 1105167] [remote 186.141.133.68:20347] AH01071: Got error 'PHP message: Default exception handler: Un par\xc3\xa1metro necesario (token) faltaba Debug: \nError code: missingparam\n* line 574 of /lib/classes/param.php: core\\exception\\moodle_exception thrown\n* line 452 of /lib/classes/param.php: call to core\\param->get_request_parameter()\n* line 657 of /lib/moodlelib.php: call to core\\param->required_param()\n* line 47 of /webservice/pluginfile.php: call to required_param()\n'
[Mon May 04 09:39:05.508798 2026] [proxy_fcgi:error] [pid 1103262:tid 1103292] [remote 10.1.24.81:49548] AH01071: Got error 'PHP message: SESSION INIT: session_id=b4098voa6hkbu0gboejbp9221l userSession=NULL; PHP message: SESSION CREATE: id=b4098voa6hkbu0gboejbp9221l already exists \xe2\x80\x94 adopted, user_id=NULL'
[Mon May 04 09:39:05.600663 2026] [proxy_fcgi:error] [pid 1103262:tid 1110946] [remote 10.1.24.81:49548] AH01071: Got error 'PHP message: SESSION INIT: session_id=b4098voa6hkbu0gboejbp9221l userSession=NULL; PHP message: SESSION CREATE: id=b4098voa6hkbu0gboejbp9221l already exists \xe2\x80\x94 adopted, user_id=NULL', referer: https://eco.mdp.edu.ar/revistas/
[Mon May 04 09:39:05.614487 2026] [proxy_fcgi:error] [pid 1103262:tid 1110943] [remote 10.1.24.81:49548] AH01071: Got error 'PHP message: SESSION INIT: session_id=b4098voa6hkbu0gboejbp9221l userSession=NULL; PHP message: SESSION CREATE: id=b4098voa6hkbu0gboejbp9221l already exists \xe2\x80\x94 adopted, user_id=NULL', referer: https://eco.mdp.edu.ar/revistas/
[Mon May 04 09:39:07.546877 2026] [proxy_fcgi:error] [pid 1103262:tid 1103304] [remote 10.1.24.81:49548] AH01071: Got error 'PHP message: SESSION INIT: session_id=b4098voa6hkbu0gboejbp9221l userSession=NULL; PHP message: SESSION CREATE: id=b4098voa6hkbu0gboejbp9221l already exists \xe2\x80\x94 adopted, user_id=NULL', referer: https://eco.mdp.edu.ar/revistas/
[Mon May 04 09:39:07.620452 2026] [proxy_fcgi:error] [pid 1103262:tid 1103296] [remote 10.1.24.81:49548] AH01071: Got error 'PHP message: SESSION INIT: session_id=b4098voa6hkbu0gboejbp9221l userSession=NULL; PHP message: SESSION CREATE: id=b4098voa6hkbu0gboejbp9221l already exists \xe2\x80\x94 adopted, user_id=NULL', referer: https://eco.mdp.edu.ar/revistas/index.php/faces
[Mon May 04 09:39:07.634574 2026] [proxy_fcgi:error] [pid 1103262:tid 1103309] [remote 10.1.24.81:49548] AH01071: Got error 'PHP message: SESSION INIT: session_id=b4098voa6hkbu0gboejbp9221l userSession=NULL; PHP message: SESSION CREATE: id=b4098voa6hkbu0gboejbp9221l already exists \xe2\x80\x94 adopted, user_id=NULL', referer: https://eco.mdp.edu.ar/revistas/index.php/faces
[Mon May 04 09:39:09.522008 2026] [proxy_fcgi:error] [pid 1103262:tid 1103293] [remote 10.1.24.81:49548] AH01071: Got error 'PHP message: SESSION INIT: session_id=b4098voa6hkbu0gboejbp9221l userSession=NULL; PHP message: SESSION CREATE: id=b4098voa6hkbu0gboejbp9221l already exists \xe2\x80\x94 adopted, user_id=NULL', referer: https://eco.mdp.edu.ar/revistas/index.php/faces

When the issue first started (an early Sunday morning, with the “Duplicate entry for key ‘sessions_pkey’” error), we checked with the webmaster to confirm whether anything had been changed or updated on the web server. According to them, no modifications were made.

Thanks

Hi,
Since we couldn’t afford to wait any longer to resolve the login issue, we decided to proceed with an upgrade to version 3.5.0-4. The platform is now up and running.

This wasn’t our preferred option, but ensuring the continuity of the journals’ editorial operations had to take priority.

Thank you very much for your support, patience, and the time you dedicated to what felt like an almost endless journey.

Cristian

logs points something weird as see these

[Mon May 04 09:38:04.606980 2026] [proxy_fcgi:error] [pid 1103262:tid 1103296] [remote 10.32.134.227:58890] AH01071: Got error 'PHP message: Cannot find session record p2sng2lvrtkgqhn27qemhop7f9 for user 54894, creating new session.', referer: https://eco.mdp.edu.ar/cv/mod/folder/view.php?id=84735

[Mon May 04 09:38:18.617290 2026] [proxy_fcgi:error] [pid 1114095:tid 1114129] [client 165.245.189.134:54988] AH01071: Got error 'PHP message: Default exception handler: Acceso denegado Debug: \nError code: accessdenied\n* line 8738 of /lib/adminlib.php: core\\exception\\moodle_exception thrown\n* line 29 of /admin/tool/installaddon/index.php: call to admin_externalpage_setup()\n'

it seems the server is running Moodle at** /cv/ alongside OJS at /revistas/****. And Moodle is also having session problems (“Cannot find session record”).

If another PHP based application is running in same server and if both applications have session issues simultaneously, the problem is at the PHP/server configuration level, not in OJS code.

it feels like session.auto_start is set to 1/true/On in the PHP configuration . check the session auto_start config via command php -i | grep session.auto_start or something similar .

session.auto_start should be Off for OJS because OJS uses a custom session handler (SessionManager implements SessionHandlerInterface). If PHP auto-starts the session before session_set_save_handler() is called, the custom handler is never used , e.g. sessions seems to go to files instead of the database.

Hi,

Just to confirm, I checked this parameter and it is set correctly:

; Initialize session on request startup.
; https://php.net/session.auto-start
session.auto_start = 0

In any case, after upgrading to OJS 3.5 everything appears to be working properly. The upgrade wasn’t originally planned, but it ended up being the last resort to resolve the issue. Unfortunately, the root cause of the problem remains unknown at this point.

Thank you very much for all your help and support,

Cristian