blackdroots Posted October 7, 2012 Share Posted October 7, 2012 (edited) 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! Edited October 7, 2012 by blackdroots (see edit history) Link to comment Share on other sites More sharing options...
blackdroots Posted October 7, 2012 Author Share Posted October 7, 2012 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 More sharing options...
blackdroots Posted October 7, 2012 Author Share Posted October 7, 2012 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 More sharing options...
Recommended Posts