Back to top

Visualizza post

Questa sezione ti permette di visualizzare tutti i post inviati da questo utente. N.B: puoi vedere solo i post relativi alle aree dove hai l'accesso.


Post - Realise

Pagine: [1]
1
Joomla! 1.6/1.7/2.5 / Re:File html directory joomla
« il: 13 Mar 2012, 20:39:48 »
ho risolto disattivando l'editor, thank you  ;D

2
Joomla! 1.6/1.7/2.5 / File html directory joomla
« il: 13 Mar 2012, 19:43:28 »
buona sera, ho la necessità di mettere in un articolo del codice html (ho joomla 2.5.1) solo che con l'editor viene cancellato, così ho avuto l'idea di creare un file .html nella root di joomla e poi creando una voce di menù wrapper inglobare tutto.. il problema è che se metto il file in qualsiasi cartella del sito mi da not found. Il fatto è che facendo la solita cosa in un'altro sito con joomla 1.5 funziona! ho controllato i permessi di file e certelle e sono ok, avete suggerimenti? grazie

3
SEO / Re:Problema .htaccess
« il: 09 Mag 2010, 16:14:13 »
Risolto, se a qualcuno interessa ho usato questo htaccess e ora funziona tutto :)


Codice: [Seleziona]
##
# @version $Id: htaccess.txt 1570 2005-12-29 05:53:33Z eddieajau $
# @package Joomla
# @copyright Copyright (C) 2005 Open Source Matters. All rights reserved.
# @license http://www.gnu.org/copyleft/gpl.html GNU/GPL
# Joomla! is Free Software
##

Options +FollowSymLinks

#
#  mod_rewrite in use
#

RewriteEngine On

##
## NOTE!
## When using multiple Joomla sites or other web applications in sub-folders,
## you must explicitly turn the RewriteEngine off or use the settings
## recommended for the application
##

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

 RewriteBase /

#
#  Rules
#

RewriteCond %{REQUEST_FILENAME} !\.(jpg|jpeg|gif|png|css|js|pl|txt)$
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*) index.php

4
SEO / Re:Problema .htaccess
« il: 05 Mag 2010, 13:17:10 »
Anche togliendolo non cambia nulla :(

5
SEO / [Risolto] Problema .htaccess
« il: 04 Mag 2010, 20:48:25 »
Buona sera a tutti, ho letto numerosi topic ma non riesco a risolvere il problema, attivando nella configurazione Seo Friendly URL e Aggiungi il suffisso agli URL, mi si vede solo la home, nelle altre pagine solo il testo ma il template no, ed a ogni ulteriore click si aggiunge un nuovo index.php all'url (esempio: click 1 pagina Contatti www.miosito.com/index.php/contatti.html, click 2 pagina Contatti www.miosito.com/index.php/index.php/contatti.html)

Attivando il mod_rewrite la home continua a funzionare ma nelle altre pagine viene un bel Internal Server Error :-\
Il fatto è che l'url viene riscritto correttamente nel browser ma secondo me non trova le pagine in joomla, potrebbe essere un problema del RewriteBase?

Senza attivare il mod_rewrite ho provato ad aggiungere una stringa al .htaccess (RewriteRule ^index.php/(.*)$ /$1 [R=301,L]) anche questa volta l'url viene riscritto correttamente, ma da errore.

Il mio hoster ha detto che il mod_rewrite è attivo, se avete qualche domanda ditemi che gliela giro ^^

Grazie per l'aiuto ;)

Questo è il mio file .htaccess:


Codice: [Seleziona]
##
# @version $Id: htaccess.txt 13415 2009-11-03 15:53:25Z ian $
# @package Joomla
# @copyright Copyright (C) 2005 - 2008 Open Source Matters. All rights reserved.
# @license http://www.gnu.org/copyleft/gpl.html GNU/GPL
# Joomla! is Free Software
##


#####################################################
#  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
#RewriteRule ^index.php/(.*)$ /$1 [R=301,L]
########## 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!
#
## Deny access to extension xml files (uncomment out to activate)
#<Files ~ "\.xml$">
#Order allow,deny
#Deny from all
#Satisfy all
#</Files>
## End of deny access to extension xml files
RewriteCond %{QUERY_STRING} mosConfig_[a-zA-Z_]{1,21}(=|\%3D) [OR]
# Block out any script trying to base64_encode crap to send via URL
RewriteCond %{QUERY_STRING} base64_encode.*\(.*\) [OR]
# Block out any script that includes a <script> tag in URL
RewriteCond %{QUERY_STRING} (\<|%3C).*script.*(\>|%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})
# Send all blocked request to homepage with 403 Forbidden error!
RewriteRule ^(.*)$ index.php [F,L]
#
########## End - Rewrite rules to block out some common exploits

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

RewriteBase /www


########## Begin - Joomla! core SEF Section
#
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} !^/index.php
RewriteCond %{REQUEST_URI} (/|\.php|\.html|\.htm|\.feed|\.pdf|\.raw|/[^.]*)$  [NC]
RewriteRule (.*) index.php
RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization},L]
#
########## End - Joomla! core SEF Section

Pagine: [1]


Web Design Bolzano Kreatif