Main menu

Forum


× Forum d'aide en Français

[RÉGLÉ] Détails de l'événement sans mise en page et avec liens morts

  • palmesendelire
  • Topic Author
  • New Member
  • New Member
More
6 years 5 months ago #15090 by palmesendelire
Bonsoir,

merci de vos réponses :cheer: (j'avais fini par trouver pour l'ordonnancement des événements)

Par contre, je suis perdue sur la configuration du fichier htaccess
(pas de seo installé par moi-même et la recherche "seo" sur la liste des extensions / modules ne donne rien)

Je suis sous OVH, je n'ai rien vu dans mes recherches sur les configurations particulières à appliquer dans ce fichier.
J'ai bien une section "SEF" dans le fichier htaccess mais je ne comprends pas trop ... à moins que je comprenne l'anglais à l'envers (ce qui est tout à fait possible :pinch: ) je n'ai pas l'impression d'être concerné par les informations indiquées :
## Begin - Joomla! core SEF Section.
#
RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
#
# If the requested path and file is not /index.php and the request
# has not already been internally rewritten to the index.php script
RewriteCond %{REQUEST_URI} !^/index\.php
# and the requested path and file doesn't directly match a physical file
RewriteCond %{REQUEST_FILENAME} !-f
# and the requested path and file doesn't directly match a physical folder
RewriteCond %{REQUEST_FILENAME} !-d
# internally rewrite the request to the index.php script
RewriteRule .* index.php [L]
#
## End - Joomla! core SEF Section.

Pouvez-vous m'aiguiller un peu plus ? Encore merci,
Et si ce n'est pas possible, tant pis pour le moment, je ferais avec.

Please Log in or Create an account to join the conversation.

  • Lyr!C
  • Lyr!C's Avatar
  • Administrator
  • Administrator
  • Lead Developer
More
6 years 5 months ago #15101 by Lyr!C
Bonjour,

Pouvez-vous copier ici l'intégralité du fichier htaccess ? (éventuellement en masquant ce qui serait des données personnelles)
Et sinon, celui-ci est-il bien renommer en ".htaccess" à la base du répertoire de votre site sur le serveur, et non en "htaccess.txt" ?

Car là il s'agit uniquement des redirections de base de Joomla, mais il peut y avoir d'autres règles ailleurs dans le fichier .htaccess

(pour info, je suis aussi chez ovh, et aucun problème.)

Bien cordialement,
Cyril

Latest version : iCagenda 3.9.3
We recommend every user to keep iCagenda updated.
Don't forget to have your Joomla!™ up-to-date!

Do you like iCagenda?
I would appreciate if you could take 5 minutes to post a review on JED (Joomla Extensions Directory) .

File Attachment:

Please Log in or Create an account to join the conversation.

  • palmesendelire
  • Topic Author
  • New Member
  • New Member
More
6 years 5 months ago #15104 by palmesendelire
Bonsoir,

et... oups, j'avais laissé effectivement le fichier à la racine du site, nommé "htaccess.txt"
Je l'ai renommé en ".htaccess"
Sans succès
Je n'ai rien changé dedans, voici le contenu total :
##
# @package    Joomla
# @copyright  Copyright (C) 2005 - 2017 Open Source Matters. All rights reserved.
# @license    GNU General Public License version 2 or later; see LICENSE.txt
##

##
# READ THIS COMPLETELY IF YOU CHOOSE TO USE THIS FILE!
#
# The line 'Options +FollowSymLinks' may cause problems with some server configurations.
# It is required for the use of mod_rewrite, but it may have already been set by your 
# server administrator in a way that disallows changing it in this .htaccess file.
# If using it causes your site to produce an error, comment it out (add # to the 
# beginning of the line), reload your site in your browser and test your sef urls. If 
# they work, then it has been set by your server administrator and you do not need to 
# set it here.
##

## No directory listings
<IfModule autoindex>
  IndexIgnore *
</IfModule>

## Can be commented out if causes errors, see notes above.
Options +FollowSymlinks
Options -Indexes

## Mod_rewrite in use.

RewriteEngine On

## Begin - Rewrite rules to block out some common exploits.
# If you experience problems on your site then comment out the operations listed 
# below by adding a # to the beginning of the line.
# This attempts to block the most common type of exploit `attempts` on Joomla!
#
# Block any script trying to base64_encode data within the URL.
RewriteCond %{QUERY_STRING} base64_encode[^(]*\([^)]*\) [OR]
# Block any script that includes a <script> tag in URL.
RewriteCond %{QUERY_STRING} (<|%3C)([^s]*s)+cript.*(>|%3E) [NC,OR]
# Block any script trying to set a PHP GLOBALS variable via URL.
RewriteCond %{QUERY_STRING} GLOBALS(=|\[|\%[0-9A-Z]{0,2}) [OR]
# Block any script trying to modify a _REQUEST variable via URL.
RewriteCond %{QUERY_STRING} _REQUEST(=|\[|\%[0-9A-Z]{0,2})
# Return 403 Forbidden header and show the content of the root home page
RewriteRule .* index.php [F]
#
## End - Rewrite rules to block out some common exploits.

## Begin - Custom redirects
#
# If you need to redirect some pages, or set a canonical non-www to
# www redirect (or vice versa), place that code here. Ensure those
# redirects use the correct RewriteRule syntax and the [R=301,L] flags.
#
## End - Custom redirects

##
# Uncomment the following line if your webserver's URL
# is not directly related to physical file paths.
# Update Your Joomla! Directory (just / for root).
##

# RewriteBase /

## Begin - Joomla! core SEF Section.
#
RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
#
# If the requested path and file is not /index.php and the request
# has not already been internally rewritten to the index.php script
RewriteCond %{REQUEST_URI} !^/index\.php
# and the requested path and file doesn't directly match a physical file
RewriteCond %{REQUEST_FILENAME} !-f
# and the requested path and file doesn't directly match a physical folder
RewriteCond %{REQUEST_FILENAME} !-d
# internally rewrite the request to the index.php script
RewriteRule .* index.php [L]
#
## End - Joomla! core SEF Section.

Je suis embêtée car je me souviens qu'il y a quelques années j'avais eu à modifier ce fichier, sur un site Joomla chez OVH... Mais en suivant les procédures cette fois-ci je ne me souviens pas avoir évité cette étape (ou alors totalement inconsciemment)...

Merci de votre aide,
Bien cordialement,
A.

Please Log in or Create an account to join the conversation.

  • Lyr!C
  • Lyr!C's Avatar
  • Administrator
  • Administrator
  • Lead Developer
More
6 years 5 months ago #15108 by Lyr!C
Bonjour,

Pour le htaccess, aucun problème car il est bien celui par défaut de Joomla 3!
Le problème ne vient pas de là... (1 chose d'éliminer!)

Avez-vous essayé avec le template par défaut de Joomla 3 "Protostar" ?

Cordialement,
Cyril

Latest version : iCagenda 3.9.3
We recommend every user to keep iCagenda updated.
Don't forget to have your Joomla!™ up-to-date!

Do you like iCagenda?
I would appreciate if you could take 5 minutes to post a review on JED (Joomla Extensions Directory) .

File Attachment:

Please Log in or Create an account to join the conversation.

  • palmesendelire
  • Topic Author
  • New Member
  • New Member
More
6 years 5 months ago #15111 by palmesendelire
Bonsoir,

Je pense que j'étais un peu fatiguée hier...
J'ai réactivé le SEF et la réécriture à la volée des URL (les autres options sont restées désactivées), avec mon thème même mis à jour, ça passe bien maintenant (et avec protostar aussi bien sûr)

J'ai donc le détail de chaque événement :cheer:
Un utilisateur connecté peut s'inscrire correctement à l'événement depuis le bouton "inscription" de la page détaillée de l'événement
Par contre, un utilisateur non connecté qui clique sur ce bouton "inscription" tombe sur une page blanche indiquant seulement "You are not authorized to view this page!"
Il faut revenir en arrière pour avoir l'encart "Message Authentification requise Veuillez vous connecter pour accéder au formulaire d'inscription" au dessus du détail de l'événement

Est-ce possible de pointer ce bouton "inscription" directement sur la page de connexion quant un utilisateur non connecté souhaite s'inscrire à un événement ?

Merci encore !!

Bien cordialement,

Please Log in or Create an account to join the conversation.

  • palmesendelire
  • Topic Author
  • New Member
  • New Member
More
6 years 5 months ago #15112 by palmesendelire
Petite précision peut-être
J'utilise maintenant community builder
merci
cordialement

Please Log in or Create an account to join the conversation.

  • palmesendelire
  • Topic Author
  • New Member
  • New Member
More
6 years 5 months ago #15113 by palmesendelire
Re bonsoir !!

Tout fonctionne très bien !
J'avais laissé Protostar en thème par défaut. En remettant mon thème par défaut, j'ai directement la page de connexion qui s'affiche :)

Encore merci beaucoup !
Et bravo pour tout ça :)!

A bientôt (c'est sûr hihi)

Cordialement,

Please Log in or Create an account to join the conversation.

  • Lyr!C
  • Lyr!C's Avatar
  • Administrator
  • Administrator
  • Lead Developer
More
6 years 5 months ago #15152 by Lyr!C
Bonsoir,

Désolé du temps de réponse, mais j'avais bien lu vos messages ;-)

Donc tout est bien rentré dans l'ordre si j'ai bien compris ? :-)

Bonne fin de weekend!

Cordialement,
Cyril

Latest version : iCagenda 3.9.3
We recommend every user to keep iCagenda updated.
Don't forget to have your Joomla!™ up-to-date!

Do you like iCagenda?
I would appreciate if you could take 5 minutes to post a review on JED (Joomla Extensions Directory) .

File Attachment:

Please Log in or Create an account to join the conversation.

  • palmesendelire
  • Topic Author
  • New Member
  • New Member
More
6 years 5 months ago #15159 by palmesendelire
Bonsoir,

Oui, tout va bien, j'ai même pu mettre en place correctement le calendrier sur un autre site (autre hébergeur etc) :) :cheer:

Encore merci !

A bientôt
The following user(s) said Thank You: Lyr!C

Please Log in or Create an account to join the conversation.

Moderators: Lyr!C
Time to create page: 0.235 seconds

Follow Us

Create your Joomla templates with Template Creator CK

acymailing logo new