Jump to content

error en tienda (warning funccion css)


Recommended Posts

hola necesito ayuda, creo k tiene que ver con el modulo lof camerael slide de las imagenes de portada y el tm banner pero no consigo arreglarlo al entrar en tienda me sale arriba en pagina este error:

Warning: Function addCSS() is deprecated in /var/www/vhosts/dominiopropio.es/httpdocs/shop/modules/lofcamera/lofcamera.php on line 74

in /var/www/vhosts/dominiopropio.es/httpdocs/shop/classes/Tools.php on line 1777 Warning: Function addCSS() is deprecated in /var/www/vhosts/dominiopropio.es/httpdocs/shop/modules/lofcamera/lofcamera.php on line 75

in /var/www/vhosts/dominiopropio.es/httpdocs/shop/classes/Tools.php on line 1777 Warning: Function addCSS() is deprecated in /var/www/vhosts/dominiopropio.es/httpdocs/shop/modules/lofcamera/lofcamera.php on line 76

in /var/www/vhosts/dominiopropio.es/httpdocs/shop/classes/Tools.php on line 1777 Warning: Function addJS() is deprecated in /var/www/vhosts/dominiopropio.es/httpdocs/shop/modules/lofcamera/lofcamera.php on line 77

in /var/www/vhosts/dominiopropio.es/httpdocs/shop/classes/Tools.php on line 1777 Warning: file_exists(): open_basedir restriction in effect. File(/var/www/vhosts/dominiopropio.es/httpdocs/shop/modules/lofcamera/lofcamera.php/themes/default/default.tpl) is not within the allowed path(s): (/var/www/vhosts/dominiopropio.es/:/tmp/) in /var/www/vhosts/dominiopropio.es/httpdocs/shop/modules/lofcamera/lofcamera.php on line 143 Notice: Undefined variable: effects in /var/www/vhosts/dominiopropio.es/httpdocs/shop/modules/tmbannerblock/tmbannerblock.php on line 269

 

espero respuesta lo antes posible saludos a todos

 

el error me lo da la plantilla de prestaseleccion.com la de wine store 1.5 gratuita. saludos

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

  • 3 weeks later...

Buenas el_kaki_2007,

prueba con esto para solucionar los errores de addCSS() y addJS():

 

Abre el archivo lofcamera.php que está en la carpeta del módulo

Ves a la línea 63

 

Sustituye todo este código:

function hookHeader() {
	$theme_assets = LOF_SIMPLE_SLIDE_URI_THEMES.$this->params->get('template', 'default').'/assets/';
	if (_PS_VERSION_ <= "1.4") {
		$header .= $this->linkMedia(LOF_SIMPLE_SLIDE_URI_CSS . 'lofsimpleslide.css');
		$header .= $this->linkMedia(LOF_SIMPLE_SLIDE_URI_CSS . 'slide.camera.css');
		$header .= $this->linkMedia(LOF_SIMPLE_SLIDE_URI_CSS . 'slide.camera.js', 'js');
		$header .= $this->linkMedia($theme_assets.'styles.css');
		return $header;
	} else {
		Tools::addCSS(LOF_SIMPLE_SLIDE_URI_CSS . 'lofsimpleslide.css');
		Tools::addCSS(LOF_SIMPLE_SLIDE_URI_CSS . 'slide.camera.css');
		Tools::addCSS($theme_assets.'styles.css');
		Tools::addJS(LOF_SIMPLE_SLIDE_URI_JS . 'slide.camera.js');
	}
}

 

por este otro:

function hookHeader() {
	$theme_assets = LOF_SIMPLE_SLIDE_URI_THEMES.$this->params->get('template', 'default').'/assets/';
	$this->context->controller->addCSS(LOF_SIMPLE_SLIDE_URI_CSS . 'lofsimpleslide.css');
	$this->context->controller->addCSS(LOF_SIMPLE_SLIDE_URI_CSS . 'slide.camera.css');
	$this->context->controller->addCSS($theme_assets.'styles.css');
	$this->context->controller->addJS(LOF_SIMPLE_SLIDE_URI_JS . 'slide.camera.js');
}

 

 

Saludos.

Link to comment
Share on other sites

MUCHISIMAS GRACIAS se me quito ese problema ahora me sale otro, ya que no tengo ni idea de php ni nada de prestashop aun me toi iniciando y probando ahora me sale arriba el error de :

 

Advertencia: file_exists (): restricción open_basedir en efecto. no está dentro de la ruta de acceso permitido (s): (/ var / www / vhosts / dominiopropio.es / :/ tmp /) in / var / www / vhosts / dominiopropio.es / httpdocs / tienda / modules / lofcamera / lofcamera.php on line 134 Notice: Undefined variable: efectos en / var / www / vhosts / dominiopropio.es / httpdocs / tienda / modules / tmbannerblock / tmbannerblock.php on line 269

 

 

ese error es de la plantilla gratuita de wine store 1.5 de templatemoster. gracias espero respuesta un poco antes saludos a todos

Link to comment
Share on other sites

  • 5 months later...
  • 1 month later...
Guest
This topic is now closed to further replies.
×
×
  • Create New...