Demo

Probiere ClanSphere aus und teste daran herum. Demo


Antworten: 8
Seite [1]
zuma


Wannabe poster




Beiträge: 23
# Thema - 28.02.2011 um 13:29 Uhr
Hallo,

ich wollte eine Seite Offline verfügbar machen, um so daran zu arbeiten. Datenbank Importiert und die Datei setup.php an die MySQL DB angepasst.

Nun habe ich die Page vom Webspace in meinen htdocs/test/ ordern kopiert und ich bekomme folgende fehlermeldung.
Ich verwende die neuste xammp Version

 
1.
2.
3.
4.
5.
6.
7.
8.
9.
10.
11.
12.
13.
14.
1. / 2. / ... 
 
Notice
Undefined indexmod in E:\xampp\htdocs\test\index.php on line 8

Notice
Undefined indexparams in E:\xampp\htdocs\test\index.php on line 8

Notice
Undefined indexmod in E:\xampp\htdocs\test\index.php on line 9

Notice
Undefined indexparams in E:\xampp\htdocs\test\index.php on line 9

Notice
Undefined indexmod in E:\xampp\htdocs\test\index.php on line 10

Notice
Undefined indexparams in E:\xampp\htdocs\test\index.php on line 10

Notice
Undefined indexmod in E:\xampp\htdocs\test\index.php on line 11
Inaktiv
hajo ClanSphere Team


VIP - Poster




Herkunft: Barsbüttel
Beiträge: 9411
# Antwort: 1 - 28.02.2011 um 13:30 Uhr
mod rewrite und/oder ajax aktiv?

uploads/cache geleert von .tmp dateien?


------------------
ClanSphere - professional clan care starts here

Inaktiv
|
zuma
Thread-Ersteller


Wannabe poster




Beiträge: 23
# Antwort: 2 - 28.02.2011 um 13:32 Uhr
Moin,

mod rewrite und ajax sind aus

cache hatte ich geleert


Inaktiv
|
hajo ClanSphere Team


VIP - Poster




Herkunft: Barsbüttel
Beiträge: 9411
# Antwort: 3 - 28.02.2011 um 13:34 Uhr
clansphere version? mod und params werden eigentlich in der index.php garnicht verwendet


------------------
ClanSphere - professional clan care starts here

Inaktiv
|
zuma
Thread-Ersteller


Wannabe poster




Beiträge: 23
# Antwort: 4 - 28.02.2011 um 13:36 Uhr
version 2009.0.3

soll ich mal die php datei gezippt hochladen?


Inaktiv
|
hajo ClanSphere Team


VIP - Poster




Herkunft: Barsbüttel
Beiträge: 9411
# Antwort: 5 - 28.02.2011 um 14:24 Uhr
kannst auch den quelltext hier eigentlich direkt in das php bbcode tag posten, oder ist das so viel?

ansonsten sei gesagt das 2009.0.3 über diverse sicherheitslücken verfügt, ein update auf 2009.0.4 ist daher sehr zu empfehlen und umfasst nur wenige dateien, am besten natürlich auf clansphere 2010.x, aber das ist ein wenig mehr aufwand, je nach umfang der anpassungen an der seite.


------------------
ClanSphere - professional clan care starts here

Zuletzt editiert von hajo ClanSphere Team am 28.02.2011 um 14:24 Uhr (1x Editiert)
Inaktiv
|
zuma
Thread-Ersteller


Wannabe poster




Beiträge: 23
# Antwort: 6 - 28.02.2011 um 14:28 Uhr
so hier einmal der code

 
1.
2.
3.
4.
5.
6.
7.
8.
9.
10.
11.
12.
13.
14.
15.
16.
17.
18.
19.
20.
21.
22.
23.
24.
25.
26.
27.
28.
29.
30.
31.
32.
33.
34.
35.
36.
37.
38.
39.
40.
41.
42.
43.
44.
45.
46.
47.
48.
49.
50.
51.
52.
53.
54.
55.
56.
57.
58.
59.
60.
61.
62.
63.
64.
65.
66.
67.
68.
69.
70.
71.
1. / 2. / ... 
<?php
// ClanSphere 2009 - www.clansphere.net
// $Id: index.php 3009 2009-05-03 14:57:11Z hajo $

# Overwrite global settings by using the following array
$cs_main = array('init_sql' => true'init_tpl' => true'tpl_file' => 'index.htm');

if (
$_GET['mod'] == 'board' || strpos($_GET['params'], 'board/') !== false$cs_main = array('init_sql' => true'init_tpl' => true'tpl_file' => 'board.htm');
if (
$_GET['mod'] == 'static' || strpos($_GET['params'], 'static/') !== false$cs_main = array('init_sql' => true'init_tpl' => true'tpl_file' => 'index2.htm');
if (
$_GET['mod'] == 'articles' || strpos($_GET['params'], 'articles/') !== false$cs_main = array('init_sql' => true'init_tpl' => true'tpl_file' => 'index2.htm');
if (
$_GET['mod'] == 'members' || strpos($_GET['params'], 'members/') !== false$cs_main = array('init_sql' => true'init_tpl' => true'tpl_file' => 'index2.htm');
if (
$_GET['mod'] == 'wars' || strpos($_GET['params'], 'wars/') !== false$cs_main = array('init_sql' => true'init_tpl' => true'tpl_file' => 'index2.htm');
if (
$_GET['mod'] == 'awards' || strpos($_GET['params'], 'awards/') !== false$cs_main = array('init_sql' => true'init_tpl' => true'tpl_file' => 'index2.htm');
if (
$_GET['mod'] == 'bets' || strpos($_GET['params'], 'bets/') !== false$cs_main = array('init_sql' => true'init_tpl' => true'tpl_file' => 'index2.htm');
if (
$_GET['mod'] == 'cups' || strpos($_GET['params'], 'cups/') !== false$cs_main = array('init_sql' => true'init_tpl' => true'tpl_file' => 'board.htm');
if (
$_GET['mod'] == 'files' || strpos($_GET['params'], 'files/') !== false$cs_main = array('init_sql' => true'init_tpl' => true'tpl_file' => 'index2.htm');
if (
$_GET['mod'] == 'partner' || strpos($_GET['params'], 'partner/') !== false$cs_main = array('init_sql' => true'init_tpl' => true'tpl_file' => 'index2.htm');
if (
$_GET['mod'] == 'faq' || strpos($_GET['params'], 'faq/') !== false$cs_main = array('init_sql' => true'init_tpl' => true'tpl_file' => 'index2.htm');
if (
$_GET['mod'] == 'clansphere' || strpos($_GET['params'], 'clansphere/') !== false$cs_main = array('init_sql' => true'init_tpl' => true'tpl_file' => 'board.htm');
if (
$_GET['mod'] == 'squads' || strpos($_GET['params'], 'squads/') !== false$cs_main = array('init_sql' => true'init_tpl' => true'tpl_file' => 'index2.htm');
if (
$_GET['mod'] == 'replays' || strpos($_GET['params'], 'replays/') !== false$cs_main = array('init_sql' => true'init_tpl' => true'tpl_file' => 'index2.htm');
if (
$_GET['mod'] == 'users' || strpos($_GET['params'], 'users/') !== false$cs_main = array('init_sql' => true'init_tpl' => true'tpl_file' => 'index2.htm');
if (
$_GET['mod'] == 'contact' || strpos($_GET['params'], 'contact/') !== false$cs_main = array('init_sql' => true'init_tpl' => true'tpl_file' => 'index2.htm');
if (
$_GET['mod'] == 'jobs' || strpos($_GET['params'], 'jobs/') !== false$cs_main = array('init_sql' => true'init_tpl' => true'tpl_file' => 'index2.htm');
if (
$_GET['mod'] == 'messages' || strpos($_GET['params'], 'messages/') !== false$cs_main = array('init_sql' => true'init_tpl' => true'tpl_file' => 'index2.htm');
if (
$_GET['mod'] == 'clans' || strpos($_GET['params'], 'clans/') !== false$cs_main = array('init_sql' => true'init_tpl' => true'tpl_file' => 'index2.htm');
if (
$_GET['mod'] == 'gallery' || strpos($_GET['params'], 'gallery/') !== false$cs_main = array('init_sql' => true'init_tpl' => true'tpl_file' => 'index2.htm');
if (
$_GET['mod'] == 'maps' || strpos($_GET['params'], 'maps/') !== false$cs_main = array('init_sql' => true'init_tpl' => true'tpl_file' => 'index2.htm');
if (
$_GET['mod'] == 'categories' || strpos($_GET['params'], 'categories/') !== false$cs_main = array('init_sql' => true'init_tpl' => true'tpl_file' => 'index2.htm');
if (
$_GET['mod'] == 'buddys' || strpos($_GET['params'], 'buddys/') !== false$cs_main = array('init_sql' => true'init_tpl' => true'tpl_file' => 'index2.htm');
if (
$_GET['mod'] == 'computers' || strpos($_GET['params'], 'computers/') !== false$cs_main = array('init_sql' => true'init_tpl' => true'tpl_file' => 'index2.htm');
if (
$_GET['mod'] == 'gbook' || strpos($_GET['params'], 'gbook/') !== false$cs_main = array('init_sql' => true'init_tpl' => true'tpl_file' => 'index2.htm');
if (
$_GET['mod'] == 'coins' || strpos($_GET['params'], 'coins/') !== false$cs_main = array('init_sql' => true'init_tpl' => true'tpl_file' => 'index2.htm');
if (
$_GET['mod'] == 'database' || strpos($_GET['params'], 'database/') !== false$cs_main = array('init_sql' => true'init_tpl' => true'tpl_file' => 'index2.htm');
if (
$_GET['mod'] == 'comments' || strpos($_GET['params'], 'comments/') !== false$cs_main = array('init_sql' => true'init_tpl' => true'tpl_file' => 'index2.htm');

if ((
$_GET['mod'] == 'news' || strpos($_GET['params'], 'news/')) AND
    (
$_GET['action'] == 'view' || strpos($_GET['params'], 'view')) !== false)
$cs_main = array('init_sql' => true'init_tpl' => true'tpl_file' => 'index2.htm');

if ((
$_GET['mod'] == 'news' || strpos($_GET['params'], 'news/')) AND
    (
$_GET['action'] == 'list' || strpos($_GET['params'], 'list')) !== false)
$cs_main = array('init_sql' => true'init_tpl' => true'tpl_file' => 'index2.htm');

if ((
$_GET['mod'] == 'news' || strpos($_GET['params'], 'news/')) AND
    (
$_GET['action'] == 'summary' || strpos($_GET['params'], 'summary')) !== false)
$cs_main = array('init_sql' => true'init_tpl' => true'tpl_file' => 'index2.htm');

if ((
$_GET['mod'] == 'news' || strpos($_GET['params'], 'news/')) AND
    (
$_GET['action'] == 'manage' || strpos($_GET['params'], 'manage')) !== false)
$cs_main = array('init_sql' => true'init_tpl' => true'tpl_file' => 'index2.htm');

if ((
$_GET['mod'] == 'news' || strpos($_GET['params'], 'news/')) AND
    (
$_GET['action'] == 'options' || strpos($_GET['params'], 'options')) !== false)
$cs_main = array('init_sql' => true'init_tpl' => true'tpl_file' => 'index2.htm');

if ((
$_GET['mod'] == 'news' || strpos($_GET['params'], 'news/')) AND
    (
$_GET['action'] == 'edit' || strpos($_GET['params'], 'edit')) !== false)
$cs_main = array('init_sql' => true'init_tpl' => true'tpl_file' => 'index2.htm');

if ((
$_GET['mod'] == 'news' || strpos($_GET['params'], 'news/')) AND
    (
$_GET['action'] == 'create' || strpos($_GET['params'], 'create')) !== false)
$cs_main = array('init_sql' => true'init_tpl' => true'tpl_file' => 'index2.htm');

if ((
$_GET['mod'] == 'news' || strpos($_GET['params'], 'news/')) AND
    (
$_GET['action'] == 'picture' || strpos($_GET['params'], 'picture')) !== false)
$cs_main = array('init_sql' => true'init_tpl' => true'tpl_file' => 'index2.htm');

require_once 
'system/core/functions.php';

cs_init($cs_main);


Inaktiv
|
hajo ClanSphere Team


VIP - Poster




Herkunft: Barsbüttel
Beiträge: 9411
# Antwort: 7 - 28.02.2011 um 14:35 Uhr
die fehler müssten dann viel öfter erscheinen bzw. für viel mehr zeilen, als in deinem ursprungspost der fall.

params ist in clansphere der alias für die übergabe von mod_rewrite url angaben, die dann passend aufgespalten werden in ihre entsprechende bedeutung, hingegen sind mod und action die erwarteten angaben der module / aktionen.

die warnungen erscheinen wohl, da nicht mittels isset geprüft wird, ob mod, action oder params auch tatsächlich vorhanden bzw. mit werten gefüllt sind, wie man es eigentlich machen sollte. denkbar wäre eine if abfrage um das ganze bzw. einen teil der prüft, ob per mod bzw. params überhaupt etwas übergeben wird jeweils.


------------------
ClanSphere - professional clan care starts here

Inaktiv
|
zuma
Thread-Ersteller


Wannabe poster




Beiträge: 23
# Antwort: 8 - 28.02.2011 um 14:54 Uhr
Hallo,

ja genau so ist es, habe das zum editieren jetzt anders gelöst. Habe einfach eine ältere PHP Version genommen sowie sie auf dem Webserver ist

Danke für dein Hilfe!

Grüße
zuma


Zuletzt editiert von zuma am 28.02.2011 um 15:46 Uhr (1x Editiert)
Inaktiv
|
Antworten: 8
Seite [1]


Sie müssen sich registrieren, um zu antworten.