Demo

Probiere ClanSphere aus und teste daran herum. Demo


Antworten: 12
Seite [1]
alexteam


Try to beat me




Beiträge: 186
# Thema - 18.08.2008 um 20:45 Uhr
Hallo Community!!

Habe mir eine home.php und eine home.htm erstellt, die als Startseite funktionieren soll. es geht auch so weit.
Nun mein Problem:

Da ich nur {news:navlist}{board:navlist}... benötige habe ich {func:show} nicht mit drin.
Soll ja zur Information sein.
Wenn ich nun auf einen Link in der Newsnavlist klicke sieht es ja so aus

home.php?mod=news... brauche aber die Seite zwecks dem {func:show}
index.php?mod=news...

Ich hoffe ihr versteht was ich meine und
konnt mir helfen. Geht das überhaupt??
Inaktiv
Jam2 ClanSphere Team


Highlander





Beiträge: 3291
# Antwort: 1 - 18.08.2008 um 20:53 Uhr
ne versteh icht nicht!!! o.O *ratlos blickt*


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


Inaktiv
|
alexteam
Thread-Ersteller


Try to beat me




Beiträge: 186
# Antwort: 2 - 18.08.2008 um 20:55 Uhr
Ok zum besseren Verständnis hier der Link

Klick hier


Zuletzt editiert von alexteam am 18.08.2008 um 20:56 Uhr (1x Editiert)
Inaktiv
|
Jam2 ClanSphere Team


Highlander





Beiträge: 3291
# Antwort: 3 - 18.08.2008 um 21:10 Uhr
also ich kann dir eine lösung geben
in der /system/core/tools.php
 
1.
2.
3.
4.
5.
6.
7.
8.
1. / 2. / ... 
   if(empty($cs_main['mod_rewrite'])) {
    
$return .= $cs_main['php_self']['basename'] . '?mod=' $mod '&action=' $action;
    return empty(
$more) ? $return $return '&' $more;
  }
  else {
    
$return .= basename($cs_main['php_self']['basename'], '.php') . '/' $mod '/' $action;
    return empty(
$more) ? $return $return '/' strtr($more, array('&' => '/''=' => '/''&' => '/'));
  }


ersetzen mit
 
1.
2.
3.
4.
5.
6.
7.
8.
9.
10.
11.
12.
13.
14.
15.
16.
1. / 2. / ... 
   if(empty($cs_main['mod_rewrite'])) {
  if(
$cs_main['php_self']['basename'] == 'home.php'){
      
$return .= 'index.php?mod=' $mod '&action=' $action;
    return empty(
$more) ? $return $return '&' $more;
  }else{
    
$return .= $cs_main['php_self']['basename'] . '?mod=' $mod '&action=' $action;
    return empty(
$more) ? $return $return '&' $more;
  }
  }else {
   if(
$cs_main['php_self']['basename'] == 'home.php'){
    
$return .= basename('index''.php') . '/' $mod '/' $action;
    return empty(
$more) ? $return $return '/' strtr($more, array('&' => '/''=' => '/''&' => '/'));
    }else{
        
$return .= basename($cs_main['php_self']['basename'], '.php') . '/' $mod '/' $action;
    return empty(
$more) ? $return $return '/' strtr($more, array('&' => '/''=' => '/''&' => '/'));
    } 


ahh sry ich merk grad ich hab n fehler gemacht



 
1.
2.
3.
4.
5.
6.
7.
8.
9.
10.
11.
12.
13.
14.
15.
16.
17.
1. / 2. / ... 
   if(empty($cs_main['mod_rewrite'])) {
  if(
$cs_main['php_self']['basename'] == 'home.php'){
      
$return .= 'index.php?mod=' $mod '&action=' $action;
    return empty(
$more) ? $return $return '&' $more;
  }else{
    
$return .= $cs_main['php_self']['basename'] . '?mod=' $mod '&action=' $action;
    return empty(
$more) ? $return $return '&' $more;
  }
  }else {
   if(
$cs_main['php_self']['basename'] == 'home.php'){
    
$return .= basename('index''.php') . '/' $mod '/' $action;
    return empty(
$more) ? $return $return '/' strtr($more, array('&' => '/''=' => '/''&' => '/'));
    }else{
        
$return .= basename($cs_main['php_self']['basename'], '.php') . '/' $mod '/' $action;
    return empty(
$more) ? $return $return '/' strtr($more, array('&' => '/''=' => '/''&' => '/'));
    } 
            } 


so stimmts


------------------
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 Jam2 ClanSphere Team am 18.08.2008 um 21:17 Uhr (1x Editiert)
Inaktiv
|
alexteam
Thread-Ersteller


Try to beat me




Beiträge: 186
# Antwort: 4 - 18.08.2008 um 21:16 Uhr
Wenn ich diese Code einsetzte, kommt nur eine weiße Seite.


Inaktiv
|
Jam2 ClanSphere Team


Highlander





Beiträge: 3291
# Antwort: 5 - 18.08.2008 um 21:17 Uhr
18.08.2008 um 21:10 Uhr - Jam2:


ahh sry ich merk grad ich hab n fehler gemacht



 
1.
2.
3.
4.
5.
6.
7.
8.
9.
10.
11.
12.
13.
14.
15.
16.
17.
1. / 2. / ... 
   if(empty($cs_main['mod_rewrite'])) {
  if(
$cs_main['php_self']['basename'] == 'home.php'){
      
$return .= 'index.php?mod=' $mod '&action=' $action;
    return empty(
$more) ? $return $return '&' $more;
  }else{
    
$return .= $cs_main['php_self']['basename'] . '?mod=' $mod '&action=' $action;
    return empty(
$more) ? $return $return '&' $more;
  }
  }else {
   if(
$cs_main['php_self']['basename'] == 'home.php'){
    
$return .= basename('index''.php') . '/' $mod '/' $action;
    return empty(
$more) ? $return $return '/' strtr($more, array('&' => '/''=' => '/''&' => '/'));
    }else{
        
$return .= basename($cs_main['php_self']['basename'], '.php') . '/' $mod '/' $action;
    return empty(
$more) ? $return $return '/' strtr($more, array('&' => '/''=' => '/''&' => '/'));
    } 
          } 


so stimmts


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


Inaktiv
|
alexteam
Thread-Ersteller


Try to beat me




Beiträge: 186
# Antwort: 6 - 18.08.2008 um 21:21 Uhr
Hey Sau Geil ich danke dir viellmals für die schnelle Hilfe!!


Inaktiv
|
Jam2 ClanSphere Team


Highlander





Beiträge: 3291
# Antwort: 7 - 18.08.2008 um 21:23 Uhr
Hey,

kein Thema. Ich helfe gerne!


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


Inaktiv
|
Fr33z3m4n ClanSphere Team


Medal of Honor




Herkunft: Hamm
Beiträge: 11094
# Antwort: 8 - 19.08.2008 um 08:44 Uhr
reopen.

@Jam2 machs doch nich so kompliziert

index.php
if(empty($_GET['mod')) home.htm else index.htm


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


Poststar




Herkunft: Bischofsmais
Beiträge: 762
# Antwort: 9 - 19.08.2008 um 15:02 Uhr
*vergesst es, verlesen* Bitte löschen ^^


------------------


Zuletzt editiert von Pred am 19.08.2008 um 15:02 Uhr (1x Editiert)
Inaktiv
|
Likka


Rock the board




Beiträge: 42
# Antwort: 10 - 21.08.2008 um 20:13 Uhr
Wo bzw. wie müsste ich das denn in der index.php Schreiben?

if(empty($_GET['mod')) home.htm else index.htm


Meine Version

if(empty($_GET['mod'])) {
$wahr = ('go.htm');
}
else {
$flasch = ('index.htm');
}
$start = ($_GET['mod']) ? $falsch : $wahr;


Erste Seite funktioniert, nach einem Klick auf einen Link Seite wieß.


Zuletzt editiert von Likka am 21.08.2008 um 21:11 Uhr (1x Editiert)
Inaktiv
|
Pred


Poststar




Herkunft: Bischofsmais
Beiträge: 762
# Antwort: 11 - 22.08.2008 um 00:38 Uhr
Try this:

 
1.
2.
3.
4.
5.
6.
7.
8.
1. / 2. / ... 
<?php 

if(empty($_GET['mod'])) {
      echo 
cs_template($cs_micro,$cs_main,$account,'home.htm');
} else {
    echo 
cs_template($cs_micro,$cs_main,$account,'index.htm');
  }
 
?>


Ich weiss nich wos in der 2008.2 hingehört, aber in der 2008.1 hab ich das unter den befehlen für cs_tasks.


------------------


Zuletzt editiert von Pred am 22.08.2008 um 00:41 Uhr (2x Editiert)
Inaktiv
|
Likka


Rock the board




Beiträge: 42
# Antwort: 12 - 22.08.2008 um 18:00 Uhr
Funktioniert sehr gut, danke.


Inaktiv
|
Antworten: 12
Seite [1]


Sie müssen sich registrieren, um zu antworten.