Back to top

Autore Topic: Migrazione da root a cartella  (Letto 2527 volte)

Offline friz102

  • Esploratore
  • **
  • Post: 187
  • Sesso: Maschio
    • Mostra profilo
Migrazione da root a cartella
« il: 26 Dic 2018, 17:31:26 »
Ciao a tutti ho effettuato la migrazione del sito dalla root a una cartella
questo è quello che ho fatto
  • copiato intero sito nella nuova cartella
  • modificato file configuration.php
  • modificato nella root .htaccess per il redirect
https://www.vallejatonews.it/back_site/


Sembra che sia andato tutto bene, la parte amministrativa funziona perfettamente, la parte client invece pur visualizzando gli articoli se ne voglio leggere uno mi porta sempre alla pagina index e non capisco il motivo. Ringrazio in anticipo per l'aiuto
Il silenzio alimenta l'inefficenza

Offline cosmico72

  • Esploratore
  • **
  • Post: 87
    • Mostra profilo
Re:Migrazione da root a cartella
« Risposta #1 il: 26 Dic 2018, 17:35:45 »
Ciao, hai ptovato a cambiare i link delle varie voci di menu? Che forse puntano  ai vecchi indirizzi della root e non della cartella

Offline friz102

  • Esploratore
  • **
  • Post: 187
  • Sesso: Maschio
    • Mostra profilo
Re:Migrazione da root a cartella
« Risposta #2 il: 26 Dic 2018, 18:06:06 »
non penso sia quello il problema
Il silenzio alimenta l'inefficenza

Offline marine

  • Moderator
  • Instancabile
  • *****
  • Post: 6314
  • Sesso: Maschio
    • Mostra profilo
Re:Migrazione da root a cartella
« Risposta #3 il: 26 Dic 2018, 18:15:12 »
Come hai modificato il file configuration.php? che regola hai inserito nel .htaccess ?

Offline friz102

  • Esploratore
  • **
  • Post: 187
  • Sesso: Maschio
    • Mostra profilo
Re:Migrazione da root a cartella
« Risposta #4 il: 26 Dic 2018, 18:22:03 »
nel file configuration.php ho modificato



public $log_path = 'nuovo percorso';
public $tmp_path= 'nuovo percorso';


nel file .htaccess della root ho messo



RewriteEngine on
RewriteRule ^(.*)$ http://www.vallejatonews.it/back_site/$1 [R=301,L]
Il silenzio alimenta l'inefficenza

Offline friz102

  • Esploratore
  • **
  • Post: 187
  • Sesso: Maschio
    • Mostra profilo
Re:Migrazione da root a cartella
« Risposta #5 il: 26 Dic 2018, 19:03:15 »
è possibile che il file .htaccess presente nella cartella dia questo problema ?
Il silenzio alimenta l'inefficenza

Offline friz102

  • Esploratore
  • **
  • Post: 187
  • Sesso: Maschio
    • Mostra profilo
Re:Migrazione da root a cartella
« Risposta #6 il: 26 Dic 2018, 19:31:12 »

Questo è il file htacces presente nella cartella, ma non vedo nulla di sbagliato, ma può essere che sono fuso e non vedo l'errore  :D

Codice: [Seleziona]

##
# @package    Joomla
# @copyright  Copyright (C) 2005 - 2015 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 disallows 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.
##


## No directory listings
IndexIgnore *


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


## 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,L]
#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 /


## 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.
# modifica https
RewriteCond %{HTTPS} off
RewriteCond %{HTTP:X-Forwarded-Proto} !https
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
Il silenzio alimenta l'inefficenza

Offline danielecr

  • Abituale
  • ****
  • Post: 1357
    • Mostra profilo
Re:Migrazione da root a cartella
« Risposta #7 il: 26 Dic 2018, 20:46:48 »
Hai provato con il rewritebase nell'.htaccess e/o con la variable live site nel configuration.php?

Offline danielecr

  • Abituale
  • ****
  • Post: 1357
    • Mostra profilo
Re:Migrazione da root a cartella
« Risposta #8 il: 26 Dic 2018, 20:50:41 »
la parte client invece pur visualizzando gli articoli se ne voglio leggere uno mi porta sempre alla pagina index
Ma adesso che guardo a me non porta all'index, hai altri problemi, ma non quello che descrivi..

Offline friz102

  • Esploratore
  • **
  • Post: 187
  • Sesso: Maschio
    • Mostra profilo
Re:Migrazione da root a cartella
« Risposta #9 il: 26 Dic 2018, 21:40:53 »
Citazione
Ma adesso che guardo a me non porta all'index, hai altri problemi, ma non quello che descrivi..


scusa dove ti porta
Il silenzio alimenta l'inefficenza

Offline friz102

  • Esploratore
  • **
  • Post: 187
  • Sesso: Maschio
    • Mostra profilo
Re:Migrazione da root a cartella
« Risposta #10 il: 26 Dic 2018, 23:18:16 »
In effetti ho visto che il problema è il database, ho installato una versione pulita di Joomla ho importato giusto qualche articolo e funziona regolare, per importare tutti gli articoli e categorie da phpMyAdmin cosa quali tabelle devo esportare ? ho provato con il componente J2xml ma va in errore, ringrazio in anticipo per l'aiuto
Il silenzio alimenta l'inefficenza

 



Web Design Bolzano Kreatif