Back to top

Autore Topic: [RISOLTO]errore 404 su web link  (Letto 3177 volte)

Offline luigidm

  • Esploratore
  • **
  • Post: 91
    • Mostra profilo
[RISOLTO]errore 404 su web link
« il: 27 Apr 2010, 10:49:27 »
Vi prego aiutatemi perchè non so cosa fare, quando vado su "Contenuti - Web Link - Link" e seleziono uno qualsiasi dei link mi risponde così: "404 - Si è verificato un errore. Joomla! non riesce a localizzare la risorsa." Come img in allegato.
Questo succede solo online mentre il locale non ho problemi. Ho aperto un ticket a NETSONS e mi hanno risposto: "la invito a controllare le impostazioni del suo CMS ed eventuali regole rewrite."
Le regole di rewrite le ho cambiate e le ho messe tutte a 777 ma non ho risolto.
Avete qualche idea di cosa potrei fare?

[allegato vecchio più di un anno eliminato automaticamente]
« Ultima modifica: 28 Apr 2010, 18:50:01 da luigidm »

Offline santograz

  • Abituale
  • ****
  • Post: 907
  • Sesso: Maschio
    • Mostra profilo
Re:errore 404 su web link
« Risposta #1 il: 27 Apr 2010, 10:53:20 »
Ciao,
innanzitutto, non confondere i permessi di "write" con le regole "rewrite":

I permessi delle cartelle, quelli che hai messo a 777, infatti, sono una cosa. Le regole di rewrite, invece, sono le impostazioni del mod_rewrite del server impostabili generalmente da file .htaccess e da alcuni moduli SEF.

Ci dai un link al sito?
Un esperto mi ha detto:"Per avere un sito web sicuro, installalo su di un server locale, poi spegnilo e stacca i cavi". Mi hanno rubato il computer.

Offline luigidm

  • Esploratore
  • **
  • Post: 91
    • Mostra profilo
Re:errore 404 su web link
« Risposta #2 il: 27 Apr 2010, 10:58:44 »
Questo è il link:

http://ww.poggetello.it

Offline santograz

  • Abituale
  • ****
  • Post: 907
  • Sesso: Maschio
    • Mostra profilo
Re:errore 404 su web link
« Risposta #3 il: 27 Apr 2010, 11:31:38 »
I link funzionano, dici che non ti funziona la parte amministratore?
« Ultima modifica: 27 Apr 2010, 11:34:34 da santograz »
Un esperto mi ha detto:"Per avere un sito web sicuro, installalo su di un server locale, poi spegnilo e stacca i cavi". Mi hanno rubato il computer.

Offline luigidm

  • Esploratore
  • **
  • Post: 91
    • Mostra profilo
Re:errore 404 su web link
« Risposta #4 il: 27 Apr 2010, 11:41:21 »
Dunque la parte amministratore funziona ma non riesco più ad accedere, lato amministratore, ai Link (Componenti - Web Link - Link) mentre se vado su "Componenti - Web Link - Categorie" mi fa accedere nelle varie categorie.

Offline luigidm

  • Esploratore
  • **
  • Post: 91
    • Mostra profilo
Re:errore 404 su web link
« Risposta #5 il: 27 Apr 2010, 14:07:57 »
Questo è il mio file .htaccess, secondo voi potrebbe esserne la causa?

 .htaccess
ASCII English text
_______________________________________ _
##
# @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

########## 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 /


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


Offline luigidm

  • Esploratore
  • **
  • Post: 91
    • Mostra profilo
Re:errore 404 su web link
« Risposta #6 il: 27 Apr 2010, 16:03:45 »
Help!  :-[

Offline santograz

  • Abituale
  • ****
  • Post: 907
  • Sesso: Maschio
    • Mostra profilo
Re:errore 404 su web link
« Risposta #7 il: 27 Apr 2010, 22:19:30 »
Neanche ti lascia creare un nuovo link? Non credo che sia l'.htaccess, se non l'hai toccato.
Sembra di più un problema di qualche file andato a p...
Io proverei a scompattare sul disco locale uno zip della stessa versione di Joomla che hai sul server e a ricaricare, sovrascrivendo i file sia in components/com_weblinks che in administrator/components/com_weblinks (mi pare il componente si chiami com_links...)
Oppure è un link che non gli piace, allora devi aprire il database con PhpMyAdmin e cercare la tabella jos_weblinks, la apri e cancelli le linee che ci sono dentro.
Ricordati di fare un backup di tutto, prima di metterci le mani..
Un esperto mi ha detto:"Per avere un sito web sicuro, installalo su di un server locale, poi spegnilo e stacca i cavi". Mi hanno rubato il computer.

Offline luigidm

  • Esploratore
  • **
  • Post: 91
    • Mostra profilo
Re:errore 404 su web link
« Risposta #8 il: 28 Apr 2010, 14:11:23 »
Ti ringrazio santograz di avermi risposto, sei proprio un santo..., ormai avevo perso le speranze.... Stasera faccio le azioni che mi hai suggerito e ti faccio sapere. Grazie per il momento!  :)

Offline luigidm

  • Esploratore
  • **
  • Post: 91
    • Mostra profilo
Re:errore 404 su web link
« Risposta #9 il: 28 Apr 2010, 18:49:27 »
Pur avendo copiato da una versione originale i due com_weblinks, ho risolto solo dopo che ho cancellato tutte i record della tabella jos_weblinks e finalmente ne ho creato uno nuovo!  :)
Grazie mille Santo...graz!  ;)

 



Web Design Bolzano Kreatif