Back to top

Autore Topic: problema hosting *RUBA e file .htaccess  (Letto 6970 volte)

Offline Joss360

  • Nuovo arrivato
  • *
  • Post: 35
    • Mostra profilo
problema hosting *RUBA e file .htaccess
« il: 23 Gen 2007, 17:51:58 »
ciao a tutti ho la sfortuna di far girare il mio sito sul server linux di *RUBA (non è una mia scelta)

il problema è che ricevo il messaggio di errore 500 non appena carico il file .htaccess sul server

se avete qualche consiglio ve ne sarei grato!
ciao a tutti

Offline puitz

  • Appassionato
  • ***
  • Post: 290
  • Sesso: Maschio
  • un’immagine vale più di mille parole
    • Mostra profilo
Re: problema hosting *RUBA e file .htaccess
« Risposta #1 il: 23 Gen 2007, 18:16:22 »
carichi il file per? hai installato qualche componente tipo openSEF o artioSEF? cosa contiene il file .htaccess

Offline Joss360

  • Nuovo arrivato
  • *
  • Post: 35
    • Mostra profilo
Re: problema hosting *RUBA e file .htaccess
« Risposta #2 il: 23 Gen 2007, 18:29:27 »
vorrei caricare il file per poter installare il componente ARTIO JoomSEF

ti posto il file htaccess.txt
Codice: [Seleziona]
##
# @version $Id: htaccess.txt 5973 2006-12-11 01:26:33Z robs $
# @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
##


#####################################################
#  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.
#
# Only use one of the two SEF sections that follow.  Lines that can be uncommented
# (and thus used) have only one #.  Lines with two #'s should not be uncommented
# In the section that you don't use, all lines should start with #
#
# For Standard SEF, use the standard SEF section.  You can comment out
# all of the RewriteCond lines and reduce your server's load if you
# don't have directories in your root named 'component' or 'content'
#
# If you are using a 3rd Party SEF or the Core SEF solution
# uncomment all of the lines in the '3rd Party or Core SEF' section
#
#####################################################

#####  SOLVING PROBLEMS WITH COMPONENT URL's that don't work #####
# SPECIAL NOTE FOR SMF USERS WHEN SMF IS INTEGRATED AND BRIDGED
# OR ANY SITUATION WHERE A COMPONENT's URL's AREN't WORKING
#
# In both the 'Standard SEF', and '3rd Party or Core SEF' sections the line:
# RewriteCond %{REQUEST_URI} ^(/component/option,com) [NC,OR] ##optional - see notes##
# May need to be uncommented.  If you are running your Joomla!/Mambo from
# a subdirectory the name of the subdirectory will need to be inserted into this
# line.  For example, if your Joomla!/Mambo is in a subdirectory called '/test/',
# change this:
# RewriteCond %{REQUEST_URI} ^(/component/option,com) [NC,OR] ##optional - see notes##
# to this:
# RewriteCond %{REQUEST_URI} ^(/test/component/option,com) [NC,OR] ##optional - see notes##
#
#####################################################


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

#
#  mod_rewrite in use

RewriteEngine On


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

# RewriteBase /


########## Begin - Joomla! core SEF Section
############# Use this section if using ONLY Joomla! core SEF
## ALL (RewriteCond) lines in this section are only required if you actually
## have directories named 'content' or 'component' on your server
## If you do not have directories with these names, comment them out.
#
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} ^(/home/component/option,com) [NC,OR] ##optional - see notes##
RewriteCond %{REQUEST_URI} (/|\.htm|\.php|\.html|/[^.]*)$  [NC]
RewriteRule ^(content/|component/) index.php
#
########## End - Joomla! core SEF Section



########## Begin - 3rd Party SEF Section
############# Use this section if you are using a 3rd party (Non Joomla! core) SEF extension - e.g. OpenSEF, 404_SEF, 404SEFx, SEF Advance, etc
#
#RewriteCond %{REQUEST_URI} ^(/component/option,com) [NC,OR] ##optional - see notes##
#RewriteCond %{REQUEST_URI} (/|\.htm|\.php|\.html|/[^.]*)$  [NC]
#RewriteCond %{REQUEST_FILENAME} !-f
#RewriteCond %{REQUEST_FILENAME} !-d
#RewriteRule (.*) index.php
#
########## End - 3rd Party SEF Section



########## 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 set a mosConfig value through the URL
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

Grazie dell'aiuto

Offline puitz

  • Appassionato
  • ***
  • Post: 290
  • Sesso: Maschio
  • un’immagine vale più di mille parole
    • Mostra profilo
Re: problema hosting *RUBA e file .htaccess
« Risposta #3 il: 23 Gen 2007, 18:31:30 »
prova a togliere il # da "# RewriteBase /" così da ottenere

"RewriteBase /", salvalo e vedi se funziona
ciauzzzzzzzzzzzz

Offline Joss360

  • Nuovo arrivato
  • *
  • Post: 35
    • Mostra profilo
Re: problema hosting *RUBA e file .htaccess
« Risposta #4 il: 24 Gen 2007, 02:15:06 »
niente da fare purtroppo!

voglio puntualizzare che joomlaexplorer vede 2 cartelle, una "home" dentro la quale c'è tutto il sito e una cartella "links" che è vuota

questo può influire in qualche modo? devo forse mettere il file .htaccess nella root principale??

Offline puitz

  • Appassionato
  • ***
  • Post: 290
  • Sesso: Maschio
  • un’immagine vale più di mille parole
    • Mostra profilo
Re: problema hosting *RUBA e file .htaccess
« Risposta #5 il: 24 Gen 2007, 03:14:15 »
il file .htaccess va inserito nella cartella dove è presente joomla...nella root principale se il sito è li, se è in una sottocartella dovrai scrivere "RewriteBase / nomesottocartella"
ciauzzzzzzzzz

Offline vola

  • Esploratore
  • **
  • Post: 121
  • Sesso: Maschio
    • Mostra profilo
Re: problema hosting *RUBA e file .htaccess
« Risposta #6 il: 24 Gen 2007, 10:43:22 »
L'errore 500 e' causato da qualche direttiva che non e' supportata dal server, prova a commentare (mettendo davanti un #) questa riga

Options +FollowSymLinks

Offline Joss360

  • Nuovo arrivato
  • *
  • Post: 35
    • Mostra profilo
Re: problema hosting *RUBA e file .htaccess
« Risposta #7 il: 24 Gen 2007, 12:32:10 »
grande! ho risolto!!!

ma... precisamente che ho fatto???

Offline giak

  • Team Joomla.it
  • Abituale
  • *******
  • Post: 1259
  • Sesso: Maschio
    • Mostra profilo
Re: problema hosting *RUBA e file .htaccess
« Risposta #8 il: 24 Gen 2007, 21:51:16 »
prova a leggere qui. avrai le idee molto ma molto piu' chiare
webmaster
www.egiakweb.net
 Developer pgDesigner - Datamodel designer for PostgreSQL pgdesigner.sourceforge.net  I belive! Free as in Freedom www.gnu.org

Offline proview

  • Esploratore
  • **
  • Post: 90
    • Mostra profilo
Re: problema hosting *RUBA e file .htaccess
« Risposta #9 il: 27 Gen 2007, 10:35:37 »
anche io ho il sito hostato su aruba, di preciso cosa devo fare per settare register globals a off?
lo chiedo xkè nn sono mai riuscito a far andare il file .htaccess, ogni votla che lo modificavo dava problemi e il sito nn funzioanva +

Offline NicSax

  • Nuovo arrivato
  • *
  • Post: 2
    • Mostra profilo
Re:problema hosting *RUBA e file .htaccess
« Risposta #10 il: 07 Nov 2010, 17:47:25 »
Grande...dopo l'ultima modifica ci sono riuscito anch'io...non ci speravo più!  ;)
Nicola

Offline darioloc

  • Nuovo arrivato
  • *
  • Post: 32
  • Sesso: Maschio
    • Mostra profilo
Re:problema hosting *RUBA e file .htaccess
« Risposta #11 il: 20 Nov 2010, 15:21:01 »
scusate.. a me non funziona nemmeno con il cancelletto.. da cosa potrebbe dipendere?

mau_develop

  • Visitatore
Re:problema hosting *RUBA e file .htaccess
« Risposta #12 il: 20 Nov 2010, 16:02:20 »
che sei su un server windows?

M.

Offline darioloc

  • Nuovo arrivato
  • *
  • Post: 32
  • Sesso: Maschio
    • Mostra profilo
Re:problema hosting *RUBA e file .htaccess
« Risposta #13 il: 20 Nov 2010, 16:17:08 »
che sei su un server windows?

M.

no no linux

mau_develop

  • Visitatore
Re:problema hosting *RUBA e file .htaccess
« Risposta #14 il: 20 Nov 2010, 17:28:42 »
che non hai mod_rewrite in apache? (php.ini)

M.

P.S. Quanti colpi ho prima di avere un nuovo indizio?

chessò ...sei in locale, sei su win, sei su xamp, hai abilitato il sef etc...
« Ultima modifica: 20 Nov 2010, 17:30:51 da mau_develop »

Offline darioloc

  • Nuovo arrivato
  • *
  • Post: 32
  • Sesso: Maschio
    • Mostra profilo
Re:problema hosting *RUBA e file .htaccess
« Risposta #15 il: 20 Nov 2010, 17:51:43 »
ahahah hai ragione.

io utilizzo "Afrega" perchè linux application installer è comodissimo. installando joomla è già tutto configurato (anche joomsef) visto che coi codici sono una pippa.

Con la nuova versione .22 però non è andata liscia Artio non era già installato, allora ho installato il componente ma una volta messo online il sito (ancora con tutti gli articoli esempio) e abilitato il mod_rewrite da backend mi ha dato l'errore 500.

Ho provato a commentare il file htaccess nella riga Options +FollowSymLinks (come peraltro scritto nello stesso htaccess) ma ancora nulla.

Dopo aver smadonnato via FTP ho rimosso e reinstallato Joomla ma comunque funziona solo con il mod_rewrite disabilitato.

Offline darioloc

  • Nuovo arrivato
  • *
  • Post: 32
  • Sesso: Maschio
    • Mostra profilo
Re:problema hosting *RUBA e file .htaccess
« Risposta #16 il: 20 Nov 2010, 19:02:39 »
RISOLTO!

ho disintallato e reinstallato nuovamente il componente rifacendo la procedura e commentando la riga con # e stavolta è andata bene..

Forse c'era qualche errore ortografico nell'htaccess o era proprio il SEF che aveva problemi.. cmq ora è ok! Grazie lo stesso...

Ho visto che il sito è bombardato di pubblicità Joomlahost, io utilizzo Afrega solo x la funzione Application installer che mi evita gli sbatti via Ftp, sapete dirmi se c'è una funzione simile su Joomlahost?

mau_develop

  • Visitatore
Re:problema hosting *RUBA e file .htaccess
« Risposta #17 il: 20 Nov 2010, 19:58:53 »
guarda che nemmeno mascherando il nome o riferendosi a joomlahost si skippa la regola.

Le cose a pagamento vanno discusse con il venditore/fornitore

solo x la funzione Application installer che mi evita gli sbatti via Ftp
---------------------------------------------------------------------------------------------
Quali, quelli di trasferire i files?... almeno hai già una base backuppata no? ... e quando devi fare modifiche lavori online senza backup? e quando devi aggiornare come fai ad evitare lo sbattimento?

Solitamente gli hosting si scelgono in base ad altre motivazioni che devono soddisfare l'applicazione più che sopperire alle mancanze dell'user.

M.

Offline darioloc

  • Nuovo arrivato
  • *
  • Post: 32
  • Sesso: Maschio
    • Mostra profilo
Re:problema hosting *RUBA e file .htaccess
« Risposta #18 il: 22 Nov 2010, 09:39:17 »
Premesso che vengo a conoscenza della regola "inskippabile" dalle tue parole ma che probabilmente avrei potuto intuirla, nonostante il post si trovi nella sezione dedicata ai server, per risponderti dovrò fare una piccola eccezione alla regola.

Le risposte alle tue 4 domande sono: Sì, Sì, A VOLTE Sì, QUELLO è UNO SBATTIMENTO INEVITABILE (per darti una spiegazione più esaustiva dovrei parlare di me e non voglio sfruttare il forum per farmi pubblicità).

Naturalmente la mia scelta dell'innominabile fino ad oggi è stata dettata anche da prestazioni e prezzi che per la mia POCA esperienza ho ritenuto accettabili. Presumo che l'innominabile pubblicizzato invece su questo sito a livello di prestazioni e costi non abbia molto da invidiare e pertanto una funzione che più che sopperire a mancanze dell'user (che comunque non è una colpa.. tutti iniziano e prima o poi imparano) fa risparmiare tempo ed è intuitiva può essere una discriminante di scelta. Ma questo è un modestissimo parere che la tua cyber esperienza può farmi variare.. ed è proprio a questo proposito che avevo chiesto lumi.

Comunque mi scuso per lo spam involontario o la citazione di aziende. Avrei bisogno di contattarti in PVT se non è un problema.

Ciao e grazie per l'assistenza, questo forum è molto utile!

ps. deficiente si scrive con la i

 



Web Design Bolzano Kreatif