Back to top

Autore Topic: Strano problema con kunena  (Letto 3148 volte)

Offline nemo1987

  • Esploratore
  • **
  • Post: 60
    • Mostra profilo
Strano problema con kunena
« il: 29 Ott 2013, 11:49:47 »
Buon giorno,
ho installato kunena nel mio sito, la richiesta è quella di aprire un forum.
il problema è molto strano, in pratica ho installato kunena (ho dovuto aggiornare il php) una volta configurato, entrando nel sito qualsiasi tasto seleziono vengo rimandato sempre nella home del sito.
non riesco + a muovermi nel sito e non posso visualizzare il forum ne nessun altra sezione...
ora non capisco se possa essere "colpa" di non aver installato bene il php (ma non credo sennò non avrebbe funzionato proprio il componente) o del componente stesso...
qualcuno di voi ha qualche idea in merito?
vi lascio il link del sito
 
http://ilcaduceodiermete.altervista.org/joomla/
 
grazie :)

Offline $Red

  • Team Joomla.it
  • Instancabile
  • *******
  • Post: 5351
  • "Bastard Inside"
    • Mostra profilo
Re:Strano problema con kunena
« Risposta #1 il: 29 Ott 2013, 12:28:42 »
ciao, prova cosi accedi al pannello di controllo altervista gestione file e clicca sulla cartella joomla una volta dentro la cartella clicca in alto sul logo php5 vai al tab Modifica sorgente .htaccess (Avanzato) se non avevi rinominato il file htaccess.txt in .htaccess dovresti vedere solo il codice del php 5.3 di altervista cioè
Codice: [Seleziona]
# # av:php5-engine
AddHandler av-php53 .php

cancella tutto e incolla questo è il file htaccess di joomla già con le modifiche per altervista e che contiene il codice che attiva il php 5.3
Codice: [Seleziona]
##
# @package        Joomla
# @copyright    Copyright (C) 2005 - 2012 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 just below this section: 'Options +FollowSymLinks' may cause problems
# with some server configurations.  It is required for use of mod_rewrite, but may already
# be set by your server administrator in a way that dissallows changing it in
# your .htaccess file.  If using it causes your server to error out, comment it out (add # to
# beginning of line), reload your site in your browser and test your sef url's.  If they work,
# it has been set by your server administrator and you do not need it set here.
##

## Can be commented out if causes errors, see notes above.
# Options +FollowSymLinks

## Mod_rewrite in use.

RewriteEngine On

## Begin - Rewrite rules to block out some common exploits.
# If you experience problems on your site block out the operations listed below
# This attempts to block the most common type of exploit `attempts` to Joomla!
#
# Block out any script trying to base64_encode data within the URL.
RewriteCond %{QUERY_STRING} base64_encode[^(]*\([^)]*\) [OR]
# Block out any script that includes a <script> tag in URL.
RewriteCond %{QUERY_STRING} (<|%3C)([^s]*s)+cript.*(>|%3E) [NC,OR]
# Block out any script trying to set a PHP GLOBALS variable via URL.
RewriteCond %{QUERY_STRING} GLOBALS(=|\[|\%[0-9A-Z]{0,2}) [OR]
# Block out 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 homepage
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 following line if your webserver's URL
# is not directly related to physical file paths.
# Update Your Joomla! Directory (just / for root).
##

 RewriteBase /joomla

## 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 request is for something within the component folder,
# or for the site root, or for an extensionless URL, or the
# requested URL ends with one of the listed extensions
RewriteCond %{REQUEST_URI} /component/|(/[^.]*|\.(php|html?|feed|pdf|vcf|raw))$ [NC]
# 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.

# # av:php5-engine
AddHandler av-php53 .php

Offline nemo1987

  • Esploratore
  • **
  • Post: 60
    • Mostra profilo
Re:Strano problema con kunena
« Risposta #2 il: 29 Ott 2013, 14:41:19 »
Lo avevo gia' rinominato il file e avevo gia' apportato quelle modifiche al file....
ho riprovato, non mi fa ancora entrare nelle varie sezioni del forum, e anche nelle varie voci del sito...
non riesco proprio a capire quale potrebbe essere il problema...

Offline $Red

  • Team Joomla.it
  • Instancabile
  • *******
  • Post: 5351
  • "Bastard Inside"
    • Mostra profilo
Re:Strano problema con kunena
« Risposta #3 il: 29 Ott 2013, 21:59:06 »
se avevi già fatto le modifiche al file ed aggiunto anche il nome della cartella in cui è installato joomla a RewriteBase / quindi nel tuo caso RewriteBase /joomla non so cosa altro possa essere

Offline nemo1987

  • Esploratore
  • **
  • Post: 60
    • Mostra profilo
Re:Strano problema con kunena
« Risposta #4 il: 29 Ott 2013, 22:20:15 »
cosa sarebbe RewriteBase /?

Offline $Red

  • Team Joomla.it
  • Instancabile
  • *******
  • Post: 5351
  • "Bastard Inside"
    • Mostra profilo
Re:Strano problema con kunena
« Risposta #5 il: 30 Ott 2013, 06:39:53 »
su alcuni host tra cui altervista per far funzionare correttamente il SEO di joomla bisogna effettuare 2 modifiche al file htaccess
  • La riga Options +FollowSymLinks deve essere commentata e diventa #Options +FollowSymLinks
  • La riga #RewriteBase / deve essere decommentata e diventa RewriteBase / se joomla si trova in una sottocartella come nel tuo caso RewriteBase /nomecartella
quindi avendo tu joomla all'interno della cartella joomla RewriteBase sarà RewriteBase /joomla

Offline nemo1987

  • Esploratore
  • **
  • Post: 60
    • Mostra profilo
Re:Strano problema con kunena
« Risposta #6 il: 30 Ott 2013, 11:46:00 »
La riga RewriteBase / è già decommentata, mentre invece non trovo la riga #Options +FollowSymLinks.
tutto questo, naturalmente, nel file .htaccess

Offline $Red

  • Team Joomla.it
  • Instancabile
  • *******
  • Post: 5351
  • "Bastard Inside"
    • Mostra profilo
Re:Strano problema con kunena
« Risposta #7 il: 30 Ott 2013, 12:41:59 »
se è già decommentata Rewritebase allora si vede che avevi già effettuato le modifiche, hai aggiunto la cartella? dopo RewrteBase /nomecartella, Options +FollowSymLinks in origine non è commentata la devi commentare tu è la prima dopo i commenti di joomla, se vuoi ti basta fare copia e incolla del codice che ti ho postato io nel post precedente
« Ultima modifica: 30 Ott 2013, 12:43:48 da $Red »

Offline nemo1987

  • Esploratore
  • **
  • Post: 60
    • Mostra profilo
Re:Strano problema con kunena
« Risposta #8 il: 30 Ott 2013, 15:53:03 »
scusa ma dove dovrei creare la cartella e come dovrei chimarla?
io ho solo aggiornato il file .htatces per il php, per il resto ho lasciato tutto come prima (le righe erano gia' decommentate) pero', come ti ho detto, non esiste quella riga che mi hai scritto...
dove dovrei creare questa cartella e come dovrei chiamarla?

Offline $Red

  • Team Joomla.it
  • Instancabile
  • *******
  • Post: 5351
  • "Bastard Inside"
    • Mostra profilo
Re:Strano problema con kunena
« Risposta #9 il: 31 Ott 2013, 00:31:51 »
non devi creare nessuna cartella, la cartella joomla è quella dove risiede la tua installazione e va aggiunta dopo RewriteBase /joomla quindi per semplificare le cose fai come ti ho detto, accedi al pannello di controllo altervista gestione file poi entra nella cartella joomla all'interno della cartella clicca in alto sul logo php 5 al tab Modifica sorgente .htaccess (Avanzato) se c'è qualcosa cancella tutto e incollaci questo
Codice: [Seleziona]
##
# @package        Joomla
# @copyright    Copyright (C) 2005 - 2012 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 just below this section: 'Options +FollowSymLinks' may cause problems
# with some server configurations.  It is required for use of mod_rewrite, but may already
# be set by your server administrator in a way that dissallows changing it in
# your .htaccess file.  If using it causes your server to error out, comment it out (add # to
# beginning of line), reload your site in your browser and test your sef url's.  If they work,
# it has been set by your server administrator and you do not need it set here.
##

## Can be commented out if causes errors, see notes above.
# Options +FollowSymLinks

## Mod_rewrite in use.

RewriteEngine On

## Begin - Rewrite rules to block out some common exploits.
# If you experience problems on your site block out the operations listed below
# This attempts to block the most common type of exploit `attempts` to Joomla!
#
# Block out any script trying to base64_encode data within the URL.
RewriteCond %{QUERY_STRING} base64_encode[^(]*\([^)]*\) [OR]
# Block out any script that includes a <script> tag in URL.
RewriteCond %{QUERY_STRING} (<|%3C)([^s]*s)+cript.*(>|%3E) [NC,OR]
# Block out any script trying to set a PHP GLOBALS variable via URL.
RewriteCond %{QUERY_STRING} GLOBALS(=|\[|\%[0-9A-Z]{0,2}) [OR]
# Block out 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 homepage
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 following line if your webserver's URL
# is not directly related to physical file paths.
# Update Your Joomla! Directory (just / for root).
##

 RewriteBase /joomla

## 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 request is for something within the component folder,
# or for the site root, or for an extensionless URL, or the
# requested URL ends with one of the listed extensions
RewriteCond %{REQUEST_URI} /component/|(/[^.]*|\.(php|html?|feed|pdf|vcf|raw))$ [NC]
# 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.

# # av:php5-engine
AddHandler av-php53 .php

 



Web Design Bolzano Kreatif