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

Pagine: [1] 2 3 4 ... 8
1
Installazione, migrazione e aggiornamento / Re:errore 500
« il: 11 Lug 2023, 19:55:09 »

Sintetizzando, le differenze tra una variante e l'altra sono:




file 1) Options +FollowSymlinks commentato senza spazio dopo # -- RewriteBase / non commentato e con uno spazio a inizio rigo -- alla fine del file senza # # ay:php5-engine
AddHandler av-php8 .php


file 2) Options +FollowSymlinks commentato senza spazio dopo # -- RewriteBase / non commentato e con uno spazio a inizio rigo -- alla fine del file con # # ay:php5-engine
AddHandler av-php8 .php


file 3) Options +FollowSymlinks commentato con spazio dopo # -- RewriteBase / non commentato e senza spazio a inizio rigo -- alla fine del file senza # # ay:php5-engine
AddHandler av-php8 .php


file 4) Options +FollowSymlinks non commentato -- RewriteBase / commentato e con spazio dopo # -- alla fine del file senza # # ay:php5-engine
AddHandler av-php8 .php


file 5) Options +FollowSymlinks non commentato -- RewriteBase / commentato e con spazio dopo # -- alla fine del file con # # ay:php5-engine
AddHandler av-php8 .php

2
Installazione, migrazione e aggiornamento / Re:errore 500
« il: 10 Giu 2023, 13:20:33 »
ciao grazie per i suggerimenti e per il link. Ho provato con cinque diversi tentativi di file .htaccess ma nessuno di questi ha funzionato. Non avendo la possibilità di accedere al backend (a causa dell’errore 500) non ho potuto configurare il seo come descritto dalla guida..
htaccess1:
Codice: [Seleziona]
##
# @package    Joomla
# @copyright  (C) 2005 Open Source Matters, Inc. <https://www.joomla.org>
# @license    GNU General Public License version 2 or later; see LICENSE.txt
##


##
# READ THIS COMPLETELY IF YOU CHOOSE TO USE THIS FILE!
#
# The line 'Options +FollowSymLinks' may cause problems with some server configurations.
# It is required for the use of Apache mod_rewrite, but it may have already been set by
# your server administrator in a way that disallows changing it in this .htaccess file.
# If using it causes your site to produce an error, comment it out (add # to the
# beginning of the line), reload your site in your browser and test your sef urls. If
# they work, then it has been set by your server administrator and you do not need to
# set it here.
##


## No directory listings
<IfModule mod_autoindex.c>
  IndexIgnore *
</IfModule>


## Suppress mime type detection in browsers for unknown types
<IfModule mod_headers.c>
Header always set X-Content-Type-Options "nosniff"
</IfModule>


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


## Disable inline JavaScript when directly opening SVG files or embedding them with the object-tag
<FilesMatch "\.svg$">
  <IfModule mod_headers.c>
    Header always set Content-Security-Policy "script-src 'none'"
  </IfModule>
</FilesMatch>


## Mod_rewrite in use.


RewriteEngine On


## Begin - Rewrite rules to block out some common exploits.
# If you experience problems on your site then comment out the operations listed
# below by adding a # to the beginning of the line.
# This attempts to block the most common type of exploit `attempts` on Joomla!
#
# Block any script trying to base64_encode data within the URL.
RewriteCond %{QUERY_STRING} base64_encode[^(]*\([^)]*\) [OR]
# Block any script that includes a <script> tag in URL.
RewriteCond %{QUERY_STRING} (<|%3C)([^s]*s)+cript.*(>|%3E) [NC,OR]
# Block any script trying to set a PHP GLOBALS variable via URL.
RewriteCond %{QUERY_STRING} GLOBALS(=|\[|\%[0-9A-Z]{0,2}) [OR]
# Block 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 home page
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 the 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.[code]


htaccess2
[code]##
# @package    Joomla
# @copyright  (C) 2005 Open Source Matters, Inc. <https://www.joomla.org>
# @license    GNU General Public License version 2 or later; see LICENSE.txt
##


##
# READ THIS COMPLETELY IF YOU CHOOSE TO USE THIS FILE!
#
# The line 'Options +FollowSymLinks' may cause problems with some server configurations.
# It is required for the use of Apache mod_rewrite, but it may have already been set by
# your server administrator in a way that disallows changing it in this .htaccess file.
# If using it causes your site to produce an error, comment it out (add # to the
# beginning of the line), reload your site in your browser and test your sef urls. If
# they work, then it has been set by your server administrator and you do not need to
# set it here.
##


## No directory listings
<IfModule mod_autoindex.c>
  IndexIgnore *
</IfModule>


## Suppress mime type detection in browsers for unknown types
<IfModule mod_headers.c>
Header always set X-Content-Type-Options "nosniff"
</IfModule>


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


## Disable inline JavaScript when directly opening SVG files or embedding them with the object-tag
<FilesMatch "\.svg$">
  <IfModule mod_headers.c>
    Header always set Content-Security-Policy "script-src 'none'"
  </IfModule>
</FilesMatch>


## Mod_rewrite in use.


RewriteEngine On


## Begin - Rewrite rules to block out some common exploits.
# If you experience problems on your site then comment out the operations listed
# below by adding a # to the beginning of the line.
# This attempts to block the most common type of exploit `attempts` on Joomla!
#
# Block any script trying to base64_encode data within the URL.
RewriteCond %{QUERY_STRING} base64_encode[^(]*\([^)]*\) [OR]
# Block any script that includes a <script> tag in URL.
RewriteCond %{QUERY_STRING} (<|%3C)([^s]*s)+cript.*(>|%3E) [NC,OR]
# Block any script trying to set a PHP GLOBALS variable via URL.
RewriteCond %{QUERY_STRING} GLOBALS(=|\[|\%[0-9A-Z]{0,2}) [OR]
# Block 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 home page
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 the 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.
# # ay:php5-engine
AddHandler av-php8 .php[code]




htaccess 3
[code]##
# @package    Joomla
# @copyright  (C) 2005 Open Source Matters, Inc. <https://www.joomla.org>
# @license    GNU General Public License version 2 or later; see LICENSE.txt
##


##
# READ THIS COMPLETELY IF YOU CHOOSE TO USE THIS FILE!
#
# The line 'Options +FollowSymLinks' may cause problems with some server configurations.
# It is required for the use of Apache mod_rewrite, but it may have already been set by
# your server administrator in a way that disallows changing it in this .htaccess file.
# If using it causes your site to produce an error, comment it out (add # to the
# beginning of the line), reload your site in your browser and test your sef urls. If
# they work, then it has been set by your server administrator and you do not need to
# set it here.
##


## No directory listings
<IfModule mod_autoindex.c>
  IndexIgnore *
</IfModule>


## Suppress mime type detection in browsers for unknown types
<IfModule mod_headers.c>
Header always set X-Content-Type-Options "nosniff"
</IfModule>


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


## Disable inline JavaScript when directly opening SVG files or embedding them with the object-tag
<FilesMatch "\.svg$">
  <IfModule mod_headers.c>
    Header always set Content-Security-Policy "script-src 'none'"
  </IfModule>
</FilesMatch>


## Mod_rewrite in use.


RewriteEngine On


## Begin - Rewrite rules to block out some common exploits.
# If you experience problems on your site then comment out the operations listed
# below by adding a # to the beginning of the line.
# This attempts to block the most common type of exploit `attempts` on Joomla!
#
# Block any script trying to base64_encode data within the URL.
RewriteCond %{QUERY_STRING} base64_encode[^(]*\([^)]*\) [OR]
# Block any script that includes a <script> tag in URL.
RewriteCond %{QUERY_STRING} (<|%3C)([^s]*s)+cript.*(>|%3E) [NC,OR]
# Block any script trying to set a PHP GLOBALS variable via URL.
RewriteCond %{QUERY_STRING} GLOBALS(=|\[|\%[0-9A-Z]{0,2}) [OR]
# Block 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 home page
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 the 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.[code]




htaccess 4
[code]##
# @package    Joomla
# @copyright  (C) 2005 Open Source Matters, Inc. <https://www.joomla.org>
# @license    GNU General Public License version 2 or later; see LICENSE.txt
##


##
# READ THIS COMPLETELY IF YOU CHOOSE TO USE THIS FILE!
#
# The line 'Options +FollowSymLinks' may cause problems with some server configurations.
# It is required for the use of Apache mod_rewrite, but it may have already been set by
# your server administrator in a way that disallows changing it in this .htaccess file.
# If using it causes your site to produce an error, comment it out (add # to the
# beginning of the line), reload your site in your browser and test your sef urls. If
# they work, then it has been set by your server administrator and you do not need to
# set it here.
##


## No directory listings
<IfModule mod_autoindex.c>
  IndexIgnore *
</IfModule>


## Suppress mime type detection in browsers for unknown types
<IfModule mod_headers.c>
Header always set X-Content-Type-Options "nosniff"
</IfModule>


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


## Disable inline JavaScript when directly opening SVG files or embedding them with the object-tag
<FilesMatch "\.svg$">
  <IfModule mod_headers.c>
    Header always set Content-Security-Policy "script-src 'none'"
  </IfModule>
</FilesMatch>


## Mod_rewrite in use.


RewriteEngine On


## Begin - Rewrite rules to block out some common exploits.
# If you experience problems on your site then comment out the operations listed
# below by adding a # to the beginning of the line.
# This attempts to block the most common type of exploit `attempts` on Joomla!
#
# Block any script trying to base64_encode data within the URL.
RewriteCond %{QUERY_STRING} base64_encode[^(]*\([^)]*\) [OR]
# Block any script that includes a <script> tag in URL.
RewriteCond %{QUERY_STRING} (<|%3C)([^s]*s)+cript.*(>|%3E) [NC,OR]
# Block any script trying to set a PHP GLOBALS variable via URL.
RewriteCond %{QUERY_STRING} GLOBALS(=|\[|\%[0-9A-Z]{0,2}) [OR]
# Block 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 home page
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 the 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.[code]




htaccess 5
[code]##
# @package    Joomla
# @copyright  (C) 2005 Open Source Matters, Inc. <https://www.joomla.org>
# @license    GNU General Public License version 2 or later; see LICENSE.txt
##


##
# READ THIS COMPLETELY IF YOU CHOOSE TO USE THIS FILE!
#
# The line 'Options +FollowSymLinks' may cause problems with some server configurations.
# It is required for the use of Apache mod_rewrite, but it may have already been set by
# your server administrator in a way that disallows changing it in this .htaccess file.
# If using it causes your site to produce an error, comment it out (add # to the
# beginning of the line), reload your site in your browser and test your sef urls. If
# they work, then it has been set by your server administrator and you do not need to
# set it here.
##


## No directory listings
<IfModule mod_autoindex.c>
  IndexIgnore *
</IfModule>


## Suppress mime type detection in browsers for unknown types
<IfModule mod_headers.c>
Header always set X-Content-Type-Options "nosniff"
</IfModule>


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


## Disable inline JavaScript when directly opening SVG files or embedding them with the object-tag
<FilesMatch "\.svg$">
  <IfModule mod_headers.c>
    Header always set Content-Security-Policy "script-src 'none'"
  </IfModule>
</FilesMatch>


## Mod_rewrite in use.


RewriteEngine On


## Begin - Rewrite rules to block out some common exploits.
# If you experience problems on your site then comment out the operations listed
# below by adding a # to the beginning of the line.
# This attempts to block the most common type of exploit `attempts` on Joomla!
#
# Block any script trying to base64_encode data within the URL.
RewriteCond %{QUERY_STRING} base64_encode[^(]*\([^)]*\) [OR]
# Block any script that includes a <script> tag in URL.
RewriteCond %{QUERY_STRING} (<|%3C)([^s]*s)+cript.*(>|%3E) [NC,OR]
# Block any script trying to set a PHP GLOBALS variable via URL.
RewriteCond %{QUERY_STRING} GLOBALS(=|\[|\%[0-9A-Z]{0,2}) [OR]
# Block 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 home page
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 the 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.
# # av:php5-engine
AddHandler av-php8 .php[code]


La versione php avevo salvato alla versione 8 dall'interno del mio account altervista, già prima di fare ogni singolo tentativo con i cinque files .htaccess.




3
Installazione, migrazione e aggiornamento / Re:errore 500
« il: 20 Mag 2023, 11:30:15 »

Codice: [Seleziona]
##
# @package    Joomla
# @copyright  (C) 2005 Open Source Matters, Inc. <https://www.joomla.org>
# @license    GNU General Public License version 2 or later; see LICENSE.txt
##


##
# READ THIS COMPLETELY IF YOU CHOOSE TO USE THIS FILE!
#
# The line 'Options +FollowSymLinks' may cause problems with some server configurations.
# It is required for the use of Apache mod_rewrite, but it may have already been set by
# your server administrator in a way that disallows changing it in this .htaccess file.
# If using it causes your site to produce an error, comment it out (add # to the
# beginning of the line), reload your site in your browser and test your sef urls. If
# they work, then it has been set by your server administrator and you do not need to
# set it here.
##


## No directory listings
<IfModule mod_autoindex.c>
  IndexIgnore *
</IfModule>


## Suppress mime type detection in browsers for unknown types
<IfModule mod_headers.c>
Header always set X-Content-Type-Options "nosniff"
</IfModule>


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


## Disable inline JavaScript when directly opening SVG files or embedding them with the object-tag
<FilesMatch "\.svg$">
  <IfModule mod_headers.c>
    Header always set Content-Security-Policy "script-src 'none'"
  </IfModule>
</FilesMatch>


## Mod_rewrite in use.


RewriteEngine On


## Begin - Rewrite rules to block out some common exploits.
# If you experience problems on your site then comment out the operations listed
# below by adding a # to the beginning of the line.
# This attempts to block the most common type of exploit `attempts` on Joomla!
#
# Block any script trying to base64_encode data within the URL.
RewriteCond %{QUERY_STRING} base64_encode[^(]*\([^)]*\) [OR]
# Block any script that includes a <script> tag in URL.
RewriteCond %{QUERY_STRING} (<|%3C)([^s]*s)+cript.*(>|%3E) [NC,OR]
# Block any script trying to set a PHP GLOBALS variable via URL.
RewriteCond %{QUERY_STRING} GLOBALS(=|\[|\%[0-9A-Z]{0,2}) [OR]
# Block 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 home page
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 the 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.


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

4
Installazione, migrazione e aggiornamento / Re:errore 500
« il: 19 Mag 2023, 20:47:09 »
Scusami se ti disturbo ancora. Potresti consigliarmi una possibile soluzione?

5
Installazione, migrazione e aggiornamento / Re:errore 500
« il: 18 Mag 2023, 08:19:29 »
Purtroppo ancora non ho risolto. In questo momento non so come procedere...[/font][/color]

6
Installazione, migrazione e aggiornamento / Re:errore 500
« il: 17 Mag 2023, 12:20:53 »
Grazie infinite per il tuo aiuto. Nei giorni scorsi avevo provato la stessa procedura letta su un’altra guida, ma senza esito.[/font][/color]
Ho riprovato di nuovo, ma appare anche stavolta l’errore 500.[/font][/color]

Puntualizzo qualche parte su cui potrebbe esserci qualche dubbio:[/font][/color]
1) al rigo Rewritebase / ho cancellato non soltanto il # ma anche gli spazi precedenti in modo che la parola Rewritebase cominci all’inizio della riga e non dopo qualche spazio;[/font][/color]
2) attualmente il file htaccess.txt non c’è più sul server perchè dopo che l’ho rinominato ha sostituito .htaccess. Quindi ora ho soltanto il file .htaccess e non più htaccess.txt[/font][/color]
3) Nel tutorial che mi hai linkato era scritto di fare l’upload del file .htaccess modificato. Invece io seguendo il seguente ordine ho: 1) modificato il file htaccess.txt secondo quanto indicato nella guida; 2) fatto l’upload; 3) rinominato il file una volta che era già all’interno del server online.[/font][/color]

Il server su cui ho fatto l’upload è di Altervista e da una breve ricerca su web sembra che il mod rewrite lo abbiano sempre attivo sebbene anche altri utenti abbiano avuto problemi con il file htaccess[/font][/color]

7
Installazione, migrazione e aggiornamento / Re:errore 500
« il: 16 Mag 2023, 15:44:01 »
ok grazie, puoi consigliarmi un tutorial per farlo?

8
Installazione, migrazione e aggiornamento / errore 500
« il: 16 Mag 2023, 10:49:16 »

Buongiorno a tutti, ho caricato il backup di un sito su un server.
Dalla copia di backup caricata ho tolto il file .htaccess e una volta caricato il sito sul server ho rinominato il file htaccess.txt in .htaccess
Quando mi collego al backend appare l’errore:


Errore 500 :(
Si è verificato un errore.
Se il problema persiste, probabilmente il programma che hai tentato di eseguire non funziona correttamente, o perché qualcuno ci sta lavorando, o perché si tratta di un malfunzionamento dovuto a qualche bug di programmazione, in questo caso informaci.


Come posso risolvere?

9
Sembra che ho risolto. Probabilmente il problema era che quando trasferivo la cartella col sito dentro htdocs avevo i servizi Apache e MySQL avviati. Ho provato a trasferirli quando i servizi erano stoppati e probabilmente questo ha risolto il problema.

10
 :D
Sembra che la nuova installazione di XAMPP funziona con nuovi progetti, quindi con una nuova installazione di joomla dentro una nuova cartella, ma se inserisco la cartella copiata, restituisce quell'errore.

11
Ciao a tutti,
ho disinstallato XAMPP e poi l'ho reinstallato con una diversa versione. Prima di disinstallare ho copiato le cartelle htdocs e data.
Dopo la reinstallazione di XAMPP ho copiato il contenuto di htdocs e della cartella data dentro le rispettive cartelle della nuova installazione di XAMPP.
I servizi Apache e MySQL sembrano avviarsi correttamente, ma quando provo a digitare per esempio: localhost/nomesito appare:

Error: Failed to start application: Could not connect to MySQL server.
Warning: session_write_close(): Failed to write session data (user). Please verify that the current setting of session.save_path is correct (C.\XAMPP\tmp) in C:\xampp\htdocs\nomesito\libraries\joomla\session\handler\native.php on line 194

Come posso risolvere?

12
Come posso risolvere le sovrapposizioni?

13
Ho letto il tutorial per fare il form...è un po' lunghino, ma posso farlo. Preferivo far gestire il form di registrazione a joomla anzichè al componente di gestione avanzata dei forms perchè è più affidabile e poi perchè risparmiarei tempo nel multilingua.
Ricevere aiuto per risolvere il problema estetico può essere fatto senza allegare il link?

14
Ho provato la registrazione con Google Chrome e i campi sono tutti digitabili, tuttavia il form di registrazione resta posizionato sopra il modulo di Accesso utenti che appare anche dentro il form di registrazione. La buona notizia è che è possibile registrarsi, ma è esteticamente brutto perchè il form di registrazione non ha una pagina a se stante in cui apparire, ma appare sopra il modulo di Accesso utenti che traspare perchè ha la prevalenza sul form di registrazione.

15
Joomla! 3 / Re:unioni siti diversi
« il: 22 Gen 2018, 19:11:43 »
Si ok, allora la soluzione multilingua di Joomla è la soluzione più semplice.
Purtroppo finchè non riesco a risolvere gli errori che ricevo e il tempo per aprire quella pagina del componente, non posso attuarla perchè il tempo di attesa è eccessivo e proporzionale al numero degli elementi presenti in quella pagina. Probabilmente è un problema del componente e quindi qualcosa che devo verificare con loro. Relativamente agli errori, apro un differente thread.
Grazie per l'aiuto.

16
Non so, mai fatto, per questo chiedevo. Se fosse una soluzione possibile allora imparo...

17
Joomla! 3 / Re:unioni siti diversi
« il: 22 Gen 2018, 00:15:39 »
Grazie tomtomeight, pensi che in rete esista una guida, un tutorial che spieghi come creare uno script per normalizzare gli indici che risulterebbero duplicati? Cioè è un'operazione comune con Easyphp oppure è qualcosa di infrequente e quindi magari con supporto da trovare più difficilmente?

Marine uso akeeba a livello base per il backup totale in genere mensilmente o comunque prima di fare qualcosa di importante e in un caso purtroppo (o per fortuna) ho dovuto anche ripristinare, ma il backup parziale non mi sono mai avventurato a farlo perchè non necessario per me sinora... sapevo dell'esistenza e così ho fatto soltanto delle ipotesi (quindi nessuna certezza).
In generale non offendi me, ma le mie conoscenze base di Joomla si reputano offese!  ;)

18
Ci sto lavorando fuori linea. Potrebbe essere una soluzione il creare un form di registrazione ex novo con i campi aggiuntivi e sostituirlo a quello di default? Se si, si potrebbe scegliere anche la posizione in cui collocarlo (template e posizione)?

19
Joomla! 3 / Re:unioni siti diversi
« il: 20 Gen 2018, 23:49:35 »
Marine rispondo soltanto alle domande e non alle critiche perchè perderei soltanto tempo. Speravo di dimostrare che se pubblico un sito, questo presuma il conoscere le basi. Non conosco tutto, ma soltanto ciò che mi serve per fare il necessario.
Relativamente alla tua domanda 4):
Akeeba serve per fare backup anche parziali in cui è possibile selezionare le tabelle che voglio archiviare. Immagina che ho il file contenente soltanto le tabelle che voglio salvare, sarebbe possibile scompattare quel file in un sito che già ha dei contenuti? In altre parole sarebbe possibile usare akeeba a fini non di backup? Esistono sicuramente altri modi per trasferire delle tabelle da un sito a un altro. Quali?
Relativamente alla domanda sulla pagina che impiega 20 minuti per caricare è una pagina di backend sul componente per la gestione avanzata di forms. Tutte le pagine di questo componente (mi riferisco all'interfaccia su backend) funzionano normalmente (a velocità abbastanza discreta), ma la pagina che visualizza gli elementi deve caricare circa 10000 elementi (non ricordo il numero esatto, ma sono diverse migliaia). Per questo motivo ritengo che impieghi così tanto tempo.
Marine se necessarie ben vengano le risposte critiche come quella di giuseppebos perchè è precisa e dice esattamente cosa fare, è costruttiva perchè aiuta a velocizzare sia il mio che il tempo di chi legge il post. Una critica del tipo: "comincia dalle basi", non è precisa perchè non specifica cosa, non è costruttiva perchè per me significherebbe impiegare tempo su cose che già so e ciò che non so, probabilmente sinora non ho avuto bisogno per i siti fatti sinora e inoltre hanno il potere di metterti contro il destinatario delle critiche.
Apprezzerò tutti i tentativi fatti per risolvere i problemi e spero di ricevere presto risposte che provino a risolvere.

20
Joomla! 3 / Re:form di Registrazione non funziona
« il: 20 Gen 2018, 23:09:24 »
Per quanto riguarda il link non c'è nessuna connessione tra questo thread e quello del link perchè i siti sono diversi. Inoltre il sito cui si riferisce questo thread è abbastanza "leggero" e senza errori.

Marine ti rispondo nell'altro thread.

Pagine: [1] 2 3 4 ... 8


Web Design Bolzano Kreatif