Jump to content

Fehler in Classes/Media.php on line 604


Recommended Posts

  • 2 weeks later...

Olá,

 

Mesmo problema aqui!

 

[client 91.240.109.1] PHP Notice:  Undefined index: HTTP_USER_AGENT in /PWD_SITE/classes/Media.php on line 604

 

Descobri que o ip 91.240.109.1 é dos servidores do Prestashop, e que é algo relacionado ao sistema de CRON do prestashop.

 

===============================================================================================================

 

Hello,  

 

Same problem here!  

 

[Client 91.240.109.1 ] PHP Notice: Undefined index : HTTP_USER_AGENT in /PWD_SITE/classes/Media.php on line 604.

 

I found that the ip 91.240.109.1 is the PrestaShop servers , and that is something related to CRON system prestashop .

Edited by suellengomes (see edit history)
Link to comment
Share on other sites

Das ist ein Bug, den man wie folgt beheben kann:

 

1. Öffne /classes/Media.php mit einem Editor.

2. Suche Zeile 604

3. Ersetze den Code

if (!preg_match('/(?i)msie [1-9]/', $_SERVER['HTTP_USER_AGENT'])) {
durch folgenden:

$user_agent = isset($_SERVER['HTTP_USER_AGENT']) ? $_SERVER['HTTP_USER_AGENT'] : '';
      if (!preg_match('/(?i)msie [1-9]/', $user_agent)) {
Dann sollte die Meldung nicht mehr auftauchen.
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...