Jump to content

(Solucionado) Error al ingresar a pestaña Modulos Warning: scandir()


Recommended Posts

Hola, tengo un problema al ingresar a la pestaña "Módulos"

Pincho la pestaña y me da este error

 

Warning: scandir() has been disabled for security reasons in /home/entrero1/public_html/classes/Module.php on line 637

 

Warning: Invalid argument supplied for foreach() in /home/entrero1/public_html/classes/Module.php on line 638

 

 

Como puedo solucionarlo?

Adjunto un print de pantalla.

 

Muchas gracias!

post-343895-0-42926200-1349571101_thumb.jpg

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

Hola, tengo un problema al ingresar a la pestaña "Módulos"

Pincho la pestaña y me da este error

 

Warning: scandir() has been disabled for security reasons in /home/entrero1/public_html/classes/Module.php on line 637

 

Warning: Invalid argument supplied for foreach() in /home/entrero1/public_html/classes/Module.php on line 638

 

 

Como puedo solucionarlo?

Adjunto un print de pantalla.

 

Muchas gracias!

 

Me respondo, lo siento no busqué bien en el foro:

 

 

Solution for the "scandir disabled" issue

In order to eliminate this error message you need to do ONE of the following things:

* Remove the scandir string from the disable_functions at php.ini file

* Ask your hosting provider to remove the string above if you don't have an access to the php.ini file

* Change hosting provider which allows the running of the scandir function

 

Llamé e mi hosting pidiendo habilitar scandir().

 

Gracias!

Link to comment
Share on other sites

Mi hosting no me va a habilitar scandir(), asi que tuve que solucionarlo asi:

 

Ingresé a public_html/classes/Module.php y la linea 638 la comenté y agregué un array para que muestre los módulos que necesito, quedó asi:

 

 

$modules = array("mailalerts"); // esta es la línea que agregué, los nombres los separan por coma si es que necesitan agregar más

/*$modules = scandir(_PS_MODULE_DIR_);*/ // esta línea la comenté, es la lnea 628

 

 

Saludos.

Link to comment
Share on other sites

Guest
This topic is now closed to further replies.
×
×
  • Create New...