Jump to content

[Astuce] Interdire la page contact aux visiteurs de passage


henry58

Recommended Posts

Bonjour,

 

Pour ceux qui souhaitent interdire la page contact (contact-form.php) aux visiteurs de passage voici une astuce bien connu pour ceux maîtrisant un peu le php mais peut être utile pour les autres:

 

Sur contact-form.php

 

Après:

 

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

 

Rajouter:

 

if (!$cookie->isLogged())
    Tools::redirect('authentication.php?back=my-account.php');

 

 

Résultat: seules les personnes ayant un compte actif pourront vous contactez.

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