Umzug von Kilu auf bplaced - HTTP Interner Serverfehler

Hallo zusammen!
Möchte von Kilu hierher umziehen.
Habe meine Daten von kilu auf mein PC, von da nun wieder nach bplaced geladen, direkt ins
/ Verzeichnis!

hatte Joomla insatlliert. nun will ich die Seite aufrufen, geht aber nicht !
Da steht HTTP Interner Serverfehler.

Lag das daran, dass unter kilu meine Seite im Verzeichnis /www lag?
Muss ich zwingend die DB hochladen von meinem kilu joomla account?
die heisst eben anders als mein benutzername hier in bplaced nun, und wenn ich die importieren will, erscheint da auch ein fehler!

Aber FTP funzt, also verstehs gerade nicht…!
Die Seite müsste doch angezeigt werden auch ohne DB!
Wo liegt den mein Fehler?
Ach hab das ganze heute zwischen 17 und 18.30 uhr hochgeladen und vom Support bis dato auch keine Antwort erhalten!

P.S.: Habe die 3 verzeichnisse die da waren vorher gelöscht, war das falsch??? Dachte die braucht man nicht!

Dabnke euch schonmal!

Hallo,

zeige uns bitte mal den Inhalt von deiner .htaccess

Die Datenbank wird übrigens auch benötigt. Alle deine Seiteninhalte sind darin gespeichert. Ohne Datenbank sollte eine Fehlermeldung wie “Datenbank-Server ist nicht erreichbar” auftreten.
Im Netz gibt es unter den Suchbegriffen Joomla und Umzug genügend Anleitungen.

Zum PS: Die verzeichnisse sind gefahrlos löschbar.

Für was ist der Inhalt der htaccess von Nöten, was steht da drin?
Kenn mich da nicht so gut aus!

Wenn ich auf /images gehe und dort ein bild.png direkt anspreche wirds ja angezigt im Intenet, komisch!
Will doch meine Joomal startseite haben…snief!

Umzug ja, aber nicht zu umzug und von kilu zu bplaced, weil kapier net warum der meine DB net will, bzw. erstmal nicht, wieso die seite net angezeigt wird!

Hallo,

möglicherweise:

bei uns sollte aber so sein:

[quote=“loddar”]Für was ist der Inhalt der htaccess von Nöten, was steht da drin?
Kenn mich da nicht so gut aus!
[/quote] Da könnte z.B. ein options + FollowSymlink drinstehen, das bei bplaced auskommentiert werden muss (# davor setzen)

[quote]Will doch meine Joomal startseite haben…snief![/quote] Ohne Datenbank wirst du die nie bekommen.

Das ist immer ähnlich. Dateien kopieren, Datenbank umziehen, Konfiguration (u.a. Datenbankname + Passwort) anpassen.
In der exportieren Datenbank musst du eventuell ein “CREATE DATABASE …” entfernen, dann sollte das importieren klappen. Dazu NICHT den windows-editor verwenden sondern scite, notepad++, notepad2 oder sonst was.

.htaccess:

[code]##

@version $Id: htaccess.txt 21064 2011-04-03 22:12:19Z dextercowley $

@package Joomla

@copyright Copyright © 2005 - 2010 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
#

End of deny access to extension xml files

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 data within the URL

RewriteCond %{QUERY_STRING} base64_encode[^(]([^)]) [OR]

Block out any script that includes a 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]

########## 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 request is for root, or for an extensionless URL, or the

requested URL ends with one of the listed extensions

RewriteCond %{REQUEST_URI} (/[^.]*|.(php|html?|feed|pdf|raw))$ [NC]

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]

und DB sieht so aus: xxx.sql.gz
Natürlich hatte ich in kilu einenanderen benutzernamen! wie stelle ich das nun an?
Vll kann mir das einer der reihenfolge nach erklären, bin aber kein PC-Papst" um da smal so zu sagen…^^!

Hallo,

in deiner .htaccess steht:

## Can be commented out if causes errors, see notes above. Options +FollowSymLinks
also bitte ändern in:

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

Deine Datenbankbackup solltest du in deine Datenbank hier importieren und die Zugangsdaten in der configurations.php Datei ändern.

Also habe das # dazu gemacht, danke!
Wenn ich mich jettz in phpmyadmin einloggen will erschient ein fehler:

“Cannot start session without errors, please check errors given in your PHP and/or webserver log file and configure your PHP installation properly.”

Entfernen geht auch nicht der DB , damit ich eine neu anlegen kann!
Wie stelleich das nun an?
Habe die sql.gz ja auf meinem PC, will die jetzt nochmal neu importieren!
Nur wie?

Sry kenn mich nicht so aus!

Hallo,

lösche bitte deinen Browsercache und versuche es erneut.

löschen ging, nun neu angelegt einfach nur passwort neu gemacht, selbes spiel wieder, siehe oben die warnmeldung!

Also nochmal in Kurzform:

  • Erstelle Datenbank bei bplaced
    … Falls sie schon existiert, dann lösch sie und leg sie erneut an wenn nur Joomla drin ist)
  • Anmelden in phpmyadmin
  • Importieren der sql.gz-Datei
    … Falls Fehler: “Cannot create database”:
    … * z.sql.gz per 7zip entpacken zu z.sql
    … * in z.sql nach CREATE DATABASE suchen und die Zeile löschen.
    … Wie schon gesagt, nimm notepad++ oder notepad2
    … * z.sql speichern und importieren.
    … Bei nem anderen Fehler melde dich mit dem genauen Fehler hier.
  • configuration.php anpassen, dazu gibt es ein praktisches Tool by fc-hosting.de

Edit: Gehört jetzt nicht zum phpmyadmin-Problem sondern war auf die Frage nach der Kurzanleitung bezogen.

Hallo,

bitte lösche den Browsercache. Die Tasten strg und f5 drücken

egal wo? habs gemacht, nützt nix, selbe fehlermeldung!

Also mit firefox gings!

Nun neues Problem:

nachdem ich die configuration.php mit dem tool angepasst ahbe kommt folgendes:

jtablesession::Store Failed
DB function failed with error number 1146
Table ‘pew-legend.jos_session’ doesn’t exist SQL=INSERT INTO jos_session ( session_id,time,username,gid,guest,client_id ) VALUES ( ‘5e0cb0825f593bf79cd26eb435f846f2’,‘1318026970’,’’,‘0’,‘1’,‘0’ )
Fatal error: Allowed memory size of 67108864 bytes exhausted (tried to allocate 72 bytes) in /users/pew-legend/www/libraries/joomla/error/exception.php on line 117

Was ist da nun falsch?Ich werd verrückt…

Ich will grad mit meinen 2 joomla seiten auf bplaced umziehen
und scheitere an der .htacess datei bzw am Fehler 500 Internal Server Error.
siehe audioframes.de
:
Hier ist meine .htaccess Datei:

RewriteEngine On
Allow Override ALL

#Options +FollowSymLinks

AddDefaultCharset utf8


doch auch mit dieser Htaccess datei kommt der gleiche Fehler:

RewriteEngine On
#Allow Override ALL
###Options Indexes FollowSymLinks MultiViews

AddDefaultCharset utf8

#####################################################

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.

mod_rewrite in use

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

End of deny access to extension xml files

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 data within the URL

RewriteCond %{QUERY_STRING} base64_encode[^(]([^)]) [OR]

Block out any script that includes a 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]

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 request is for root, or for an extensionless URL, or the

requested URL ends with one of the listed extensions

RewriteCond %{REQUEST_URI} (/[^.]*|.(php|html?|feed|pdf|raw))$ [NC]

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

Tips?
LG

Lösche Allow Override All. Vermutlich verursacht das den Fehler.

wenn ich es bei beiden rauslösche kommt der gleiche Fehler
bzw bei der kleinen Version die Werbung von bplaced.net die ja auch einen Fehler nr 404 ersetzt!
HM!

mod_rewrite in use gehört auch nicht in die .htaccess.
AddDefaultCharset sollte keine Probleme machen, aber testweise kannst du es auch mal auskommentieren.
Wenn ein 404 kommt, dann stimmt zumindest mal die .htaccess, das Problem liegt dann woanders.
Edit: RewriteBase solltest du am besten auskommentieren. Das ist zu 99% unnötig und kann zu 404-Fehlern führen.

Also so kommt immer noch ein 500 Internal Server Error.
RewriteEngine On
###Options Indexes FollowSymLinks MultiViews

########## 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 request is for root, or for an extensionless URL, or the

requested URL ends with one of the listed extensions

RewriteCond %{REQUEST_URI} (/[^.]*|.(php|html?|feed|pdf|raw))$ [NC]

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

Wenn ich sie lösche die htaccess datei kommt ein 404 von bplaced.

audioframes.de

Eigentlich müsste es funktionieren, Joomla mit richtigem config file ist da, Datenbank auch.
Ich kann nur bestätigen das ich die vorgeschlagenene Änderungen an der HTACCESS Datei durchgeführt hab es aber die Site nicht repariert hat.