| View previous topic :: View next topic |
| Author |
Message |
Dr.JacK
Joined: 29 Apr 2008 Posts: 6
|
Posted: Tue Sep 13, 2011 8:56 am Post subject: Fehler bei Accounts Freischalten ! |
|
|
Hallo Gemeinde,
habe letzte zeit Problem mit Accounts Freischalten !
wenn ich über Admin Bereich User freischalten möchte, bekomme ich Fehler mit der Hinweis.
| Code: | Internal Server Error
The server encountered an internal error or misconfiguration and was unable to complete your request.
Please contact the server administrator, [no address given] and inform them of the time the error occurred, and anything you might have done that may have caused the error.
More information about this error may be available in the server error log. |
wer kann mir Bitte, dabei helfen. |
|
| Back to top |
|
 |
Paddelberg Site Admin

Joined: 17 Jan 2006 Posts: 797 Location: Worms
|
Posted: Tue Sep 13, 2011 2:47 pm Post subject: |
|
|
Hi
bei welchem Provider bist du?
mfg
simon |
|
| Back to top |
|
 |
Dr.JacK
Joined: 29 Apr 2008 Posts: 6
|
Posted: Thu Sep 22, 2011 11:51 am Post subject: |
|
|
hi,
nethosting4you.de
hatte nie so ein Problem gehabt. |
|
| Back to top |
|
 |
Dr.JacK
Joined: 29 Apr 2008 Posts: 6
|
Posted: Sun Oct 09, 2011 10:43 am Post subject: |
|
|
| Kann mir keiner Helfen ? |
|
| Back to top |
|
 |
Paddelberg Site Admin

Joined: 17 Jan 2006 Posts: 797 Location: Worms
|
Posted: Sun Oct 09, 2011 4:52 pm Post subject: |
|
|
sorry, is irgendwie untergegangen ...
schau in den error Logs, ob du da ne genauere Fehlermeldung findest.
Falls nicht, frag bei deinem Provider nach. Könnte sein, das es was mit den Servereinstellungen zu tun hat.
Falls dir das nicht weiterhilft, richte mir nen Zugang ein (FTP und Toplisten Admin), dann schau ich mir das mal genauer an.
mfg
simon |
|
| Back to top |
|
 |
Paddelberg Site Admin

Joined: 17 Jan 2006 Posts: 797 Location: Worms
|
Posted: Mon Oct 10, 2011 12:07 pm Post subject: |
|
|
geht nun wieder (siehe PN)
Falls das Problem noch bei anderen besteht:
Es lag an einem zu großen Überhang der Tabelle topxl_hits.
Entweder über PhpMyAdmin in der Übersicht der Datenbank eine Optimierung der Tabelle topxl_hits durchführen (Häckchen vor die Tabelle und unten im Auswahlmenü auf optimiere Tabelle) oder mit dem folgenden Code:
| Code: | | mysql_query("OPTIMIZE TABLE ".$topxl_admin_table.",".$topxl_hits_table.",".$topxl_promotial_table.",".$topxl_stats1_table.",".$topxl_user_table); |
Den Code in die Datei admin/index.php in Zeile 24 (nach der Zeile in der steht: $do = $_GET["do"]; ) einfügen, hochladen und die Hauptseite des Admin Bereichs über den Browser aufrufen. Danach kann der Code wieder aus der Datei admin/index.php gelöscht werden
Um die Optimierung der Tabellen regelmässig durchzuführen (bei jedem automatischen Reset):
suche in der Datei out.php folgenden Code (~ Zeile 148)
| Code: | | mysql_query("Update $topxl_user_table SET hitin=0,hitout=0") or die ("mysql_error2b"); |
und ersetze mit
| Code: | mysql_query("Update $topxl_user_table SET hitin=0,hitout=0") or die ("mysql_error2b");
mysql_query("OPTIMIZE TABLE ".$topxl_admin_table.",".$topxl_hits_table.",".$topxl_promotial_table.",".$topxl_stats1_table.",".$topxl_user_table); |
mfg
simon |
|
| Back to top |
|
 |
|