Jump to content

logs en el servidor por un problema


restartagain

Recommended Posts

Hola, llevo ya un tiempo recibiendo éstos mensajes en el log del servidor de mi web:

AH01071: Got error 'PHP message: PHP Warning: Declaration of State::getStatesByIdCountry($idCountry, $active = false) should be compatible with StateCore::getStatesByIdCountry($idCountry, $active = false, $orderBy = NULL, $sort = 'ASC') in /******.es/httpdocs/override/classes/State.php on line 19'

La web es www.factory-bike.es

La web me funciona bien excepto las estadísticas del inicio, pero me gustaría solucionar lo de ese error.

A ver si me podéis ayudar....gracias de antemano.

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

1 hour ago, restartagain said:

AH01071: Got error 'PHP message: PHP Warning: Declaration of State::getStatesByIdCountry($idCountry, $active = false) should be compatible with StateCore::getStatesByIdCountry($idCountry, $active = false, $orderBy = NULL, $sort = 'ASC') in /******.es/httpdocs/override/classes/State.php on line 19'

El Error parece venir de las estatisticas. prueba con $active = false) a $active = true)

Link to comment
Share on other sites

On 2/10/2022 at 1:03 PM, restartagain said:

AH01071: Got error 'PHP message: PHP Warning: Declaration of State::getStatesByIdCountry($idCountry, $active = false) should be compatible with StateCore::getStatesByIdCountry($idCountry, $active = false, $orderBy = NULL, $sort = 'ASC') in /******.es/httpdocs/override/classes/State.php on line 19'

Aquí lo que te está diciendo el log (técnicamente sólo un aviso, no un error) es que la declaración del método en el override /override/classes/State.php:

getStatesByIdCountry ($idCountry, $active = false)

 no es compatible con el mismo método de la clase que está heredando, cuya declaración es:

 getStatesByIdCountry($idCountry, $active = false, $orderBy = NULL, $sort = 'ASC')

Si te fijas, faltan los argumentos $orderBy y $sort para que sea compatible. 

 

El arreglo correcto sería cambiar esa declaración en /override/classes/State.php a:

getStatesByIdCountry($idCountry, $active = false, $orderBy = NULL, $sort = 'ASC')

Cambiar el valor por defecto de $active = false a $active = true cambia la lógica de lo que hace la función y no tiene nada que ver con tu error. Si ya no te sale el error es simplemente porque esa función no se ha llamado en el periodo en el que estás mirando los logs, pero no es porque lo hayas resuelto. 

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...