Jump to content

FatalError HTTP 500 Internal Server Error (SOLUCIONADO)


Variety

Recommended Posts

Hola buenas tardes soy nueva en PRESTASHOP y se más bien poco de programación.

El problema es que desde hace un rato, al entrar en Administración de Módulos en mi Back Office, me aparece la siguiente ventana de error. Antes funcionaba perfectamente y no sé si he tocado algo. Sé que tengo que editar el jxhtmlcontent.php pero no sé cual es el error.

Si pueden ayudarme os lo agradecería.

Os dejo escrito el comando completo:

'context' => (Configuration::get('PS_MULTISHOP_FEATURE_ACTIVE') == 0) ? 1 : ($this->context->shop->getTotalShops() != 1) ? $this->context->shop->getContext() : 1

 

Muchas gracias.

Captura de pantalla 2023-12-03 200136.jpg

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

Justo ahora, juanrojas dijo:

hola, el error proviene del modulo jxhtmlcontent asi que entra via FTP y renombra su carpeta

Hola, muchas gracias por tu ayuda, he conseguido encontrar el fallo. Era simplemente que faltaban unos paréntesis en el código (aunque yo no lo he tocado nunca).

La solución sería la siguiente por si a alguien le ocurre lo mismo:

CÓDIGO ANTES:
'context' => (Configuration::get('PS_MULTISHOP_FEATURE_ACTIVE') == 0) ? 1 : ($this->context->shop->getTotalShops() != 1) ? $this->context->shop->getContext() : 1

CÓDIGO CORREGIDO:
'context' => (Configuration::get('PS_MULTISHOP_FEATURE_ACTIVE') == 0) ? 1 : ($this->context->shop->getTotalShops() != 1) ? ($this->context->shop->getContext() : 1)

Link to comment
Share on other sites

  • Variety changed the title to FatalError HTTP 500 Internal Server Error (SOLUCIONADO)

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