Jump to content

Un fichier tmp à la racine de mon site


Patrick_64

Recommended Posts

Bonjour,

 

je viens de trouver un fichier tmp à la racine de mon site avec ça à l'intérieur :

 

<?php

include(dirname(__FILE__).'/config/config.inc.php');
include(dirname(__FILE__).'/header.php');
include(dirname(__FILE__).'/product-sort.php');

$nbProducts = Product::getPricesDrop(intval($cookie->id_lang), NULL, NULL, true);
include(dirname(__FILE__).'/pagination.php');

$smarty->assign(array(
'products' => Product::getPricesDrop(intval($cookie->id_lang), intval($p) - 1, intval($n), false, $orderBy, $orderWay),
'nbProducts' => $nbProducts));

$smarty->display(_PS_THEME_DIR_.'prices-drop.tpl');

include(dirname(__FILE__).'/footer.php');

?>

Quelqu'un aurait-il une idée ? attaque ? pas attaque ?

 

Merci

Patrick

Link to comment
Share on other sites

Bonjour,

 

Vous avez du faire glisser par erreur le fichier prices-drop.php, celui-ci se trouve à la racine de votre boutique normalement.

 

Rien d'inquiétant. S'il est présent à la racine sous le nom prices-drop.php, vous pouvez supprimer le mauvais.

 

Bien cordialement

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