Demo

Probiere ClanSphere aus und teste daran herum. Demo


Antworten: 11
Seite [1]
Wodan


Beginner




Beiträge: 11
# Thema - 27.03.2008 um 13:27 Uhr
Hey Leute,
hab auf meiner Seite plötzlich ne Error Meldung: "Error in my_thread_global_end(): 1 threads didn't exit".
Das steht ganz unten unter meiner Seite?
Desweitern hab ich ein Problem mit dem mod_rewrite ...ich würde das gerne nutzen, wenn ich jedoch die htacces_example ind .htacces umbennene und mod_rewrite aktiviere komm ich nichtmehr ins admin Menü rein...die Seite existiert dann nichtmehr? ...was mach ich falsch?

Help ME!
Inaktiv
reVerB


Geekboy




Beiträge: 1237
# Antwort: 1 - 27.03.2008 um 13:53 Uhr
Hast du die Administration selber verlinkt?


Inaktiv
|
Wodan
Thread-Ersteller


Beginner




Beiträge: 11
# Antwort: 2 - 27.03.2008 um 15:42 Uhr
Ne hab nur das {users:navlogin} eingefügt an der Stelle.

Das Problem mit der Errormeldung hat sich übrigens geklärt.

Jetzt ist nurnoch das Problem mit dem mod_rewrite zu lösen ...muss ich den Pfad der index datei von der htaccess datei aus angeben oder vom Server an sich?


Zuletzt editiert von Wodan am 27.03.2008 um 15:54 Uhr (1x Editiert)
Inaktiv
|
Fr33z3m4n ClanSphere Team


Medal of Honor




Herkunft: Hamm
Beiträge: 11094
# Antwort: 3 - 27.03.2008 um 16:24 Uhr
welcher link wird dir denn gegeben fürs admin menü ?


------------------
mfg
Patrick "Fr33z3m4n" Jaskulski

Antoine de Saint-Exupéry: Wenn Du ein Schiff bauen willst, so trommle nicht Männer zusammen, um Holz zu beschaffen, Aufgaben zu verteilen, sondern lehre die Männer die Sehnsucht nach dem endlosen weiten Meer.

Inaktiv
|
Wodan
Thread-Ersteller


Beginner




Beiträge: 11
# Antwort: 4 - 27.03.2008 um 17:49 Uhr
Also wenn ich mod_rewrite anmache dann kommt bei den meisten Links "This Page cannot be found" und das kommt auch bei den Admin Menüs:

Bei Verwaltung hab ich den Link : Index.php?mod=clansphere&action=admin
bei System hab ich den Link: Index.php?mod=clansphere&action=system

vll. liegt es ja daran das bei meiner DOmain bei jeder aktion z.b. einloggen dann profil bearbeiten ein "%5C" /Index.php?mod=clansphere&action=system eingefügt wird. ...keine ahnung


Inaktiv
|
Fr33z3m4n ClanSphere Team


Medal of Honor




Herkunft: Hamm
Beiträge: 11094
# Antwort: 5 - 27.03.2008 um 18:07 Uhr
die board suche mit "%5C" hätte dir schon das Ergebnis geliefert

Antwort #12

# Antwort: 12 - 24.10.2007 um 17:25 Uhr
ok, dann mach mal in der datei system/core/content.php zeile 44 von dem:
 
1.
1. / 2. / ... 
<?php $cs_main['php_self']['dirname'] = $cs_main['php_self']['dirname'] == '/' '/' $cs_main['php_self']['dirname'] . '/'?>
zu dem:
 
1.
1. / 2. / ... 
<?php $cs_main['php_self']['dirname'] = $cs_main['php_self']['dirname'] == '\\' '/' $cs_main['php_self']['dirname'] . '/'?>


------------------
mfg
Patrick "Fr33z3m4n" Jaskulski

Antoine de Saint-Exupéry: Wenn Du ein Schiff bauen willst, so trommle nicht Männer zusammen, um Holz zu beschaffen, Aufgaben zu verteilen, sondern lehre die Männer die Sehnsucht nach dem endlosen weiten Meer.

Zuletzt editiert von Fr33z3m4n ClanSphere Team am 27.03.2008 um 18:07 Uhr (1x Editiert)
Inaktiv
|
Wodan
Thread-Ersteller


Beginner




Beiträge: 11
# Antwort: 6 - 27.03.2008 um 23:08 Uhr
Wer kommt denn auf die Idee %5 zu suchen?
Also habs probiert und das Problem bleibt bestehn ... die .htaccess heist ja auf dem server dann genauso oder?
und bei mir steht in der conten.php diese <php nicht...sieht bei mir so aus


$cs_main['php_self']['dirname'] = $cs_main['php_self']['dirname'] == '/' ? '/' : $cs_main['php_self']['dirname'] . '/';

habs jetzt geändert in

$cs_main['php_self']['dirname'] = $cs_main['php_self']['dirname'] == '\\' ? '/' : $cs_main['php_self']['dirname'] . '/';


...stimmt das so dann?

Ich weißnicht was ich da noch machen soll ...kommt immer This page cannot be found bla bla ... aber da steht in der URL zeile das das index mit großem I ..Index ...vll. ist das falsch? müsste doch normal klein sein oder?


Meine .htacces sieht so aus:

## Comment out the needed lines and save it as ".htaccess" to use ClanSphere with mod_rewrite
## You need at least Apache 1.3 or newer to use the following!
## Documentation = http://httpd.apache.org/docs/2.2/mod/mod_rewrite.html

## Uncomment the next line when symlinks are not set in Apache configuration

Options +FollowSymLinks

## Uncomment the next line to enable the usage of mod_rewrite (needed)

RewriteEngine on

## Uncomment the next line to inherit mod_rewrite rules set in Apache configuration

RewriteOptions inherit

## Uncomment the next line and update the path to use the clansphere directory if you move this file

RewriteBase /

## Uncomment this to prevent overcuttings between real directories/files and virtual ones (needed)

RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f

## Uncomment the line and edit the php index files that should be accessible by the mod_rewrite rule (needed)

RewriteRule ^(admin|board|debug|index)(.*)$ $1.php?params=$2 [NC,L]

hab einfach mal alles uncomment gemacht ...Hab der htaccess Chmod rechte 999 gegeben...

Sorry bin da nicht so bewandert xD hoff es nervt nicht


Zuletzt editiert von Wodan am 27.03.2008 um 23:26 Uhr (2x Editiert)
Inaktiv
|
reVerB


Geekboy




Beiträge: 1237
# Antwort: 7 - 27.03.2008 um 23:55 Uhr
ALLES? Dann werden doch auch die Kommentare selber interpretiert. Oder meinst du nur die Befehle alle unkommentiert? Ich habe mit dem mod_rewrite net viel am hut.


Inaktiv
|
Jam2 ClanSphere Team


Highlander





Beiträge: 3291
# Antwort: 8 - 28.03.2008 um 00:03 Uhr
## Comment out the needed lines and save it as ".htaccess" to use ClanSphere with mod_rewrite
## You need at least Apache 1.3 or newer to use the following!
## Documentation = http://httpd.apache.org/docs/2.2/mod/mod_rewrite.html

## Uncomment the next line when symlinks are not set in Apache configuration

#Options +FollowSymLinks

## Uncomment the next line to enable the usage of mod_rewrite (needed)

RewriteEngine on

## Uncomment the next line to inherit mod_rewrite rules set in Apache configuration

#RewriteOptions inherit

## Uncomment the next line and update the path to use the clansphere directory if you move this file

#RewriteBase /

## Uncomment this to prevent overcuttings between real directories/files and virtual ones (needed)

RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f

## Uncomment the line and edit the php index files that should be accessible by the mod_rewrite rule (needed)

RewriteRule ^(admin|board|debug|index)(.*)$ $1.php?params=$2 [NC,L]




Das ist meine .htaccess meine hat CHMOD 644

Wenn es mit meiner .htaccess und mit der CHMOD 644 nicht geht


dann =>


Gib mal nähere infos zu deiner Seite
Welche CSP version? Addresse?


Edit://
Jo ich hab grad CHMOD 999 ausprobiert
Die .htaccess funktioniert nicht mit CHMOD 999 benutz am besten CHMOD 644



Gruß


------------------
Gruß/ Best regards
Jam2

Nützliche Forumbeiträge/Codepastes: (Useful comments in our board / codepastes)
Template Switch for index.php
Board Navlist last posts

Edi: könnte man denn auch hier eine erweiterung einfügen?
Jam2: das web ist wie toyota.....
Edi: hö ?
Jam2: nichts ist unmöglich!


Zuletzt editiert von FireDragon ClanSphere Team am 28.03.2008 um 00:04 Uhr (1x Editiert)
Inaktiv
|
xsigndll


Try to beat me




Beiträge: 124
# Antwort: 9 - 28.03.2008 um 06:59 Uhr
chmod 999 ? xD

http://de.wikipedia.org/wiki/Unix-Dateirechte#Oktalnotation


------------------
x!sign.dll - Full-Stack with a touch of DevOps
---
Facebook - x!sign.dll
Twitter - x!sign.dll
Instagram - x!sign.dll
Pinterest - x!sign.dll
LinkedIn - x!sign.dll
Tumblr - x!sign.dll
Flickr - x!sign.dll
Reddit - x!sign.dll

Inaktiv
|
sgraewe ClanSphere Team

Supporter
Supporter




Beiträge: 6116
# Antwort: 10 - 28.03.2008 um 08:42 Uhr
na das sind die godlike rechte


Inaktiv
|
xsigndll


Try to beat me




Beiträge: 124
# Antwort: 11 - 28.03.2008 um 09:10 Uhr
hrhr chmod 1337 @ +xx!


------------------
x!sign.dll - Full-Stack with a touch of DevOps
---
Facebook - x!sign.dll
Twitter - x!sign.dll
Instagram - x!sign.dll
Pinterest - x!sign.dll
LinkedIn - x!sign.dll
Tumblr - x!sign.dll
Flickr - x!sign.dll
Reddit - x!sign.dll

Inaktiv
|
Antworten: 11
Seite [1]


Sie müssen sich registrieren, um zu antworten.