Posts: 2
Threads: 1
Joined: May 2009
Reputation:
0
hi,
ich wollte nur den speicher erhöhen und hab die maxstorage.php mit dem editor geöffnet, und bei
"30"=>"999999");?>
das hingeschrieben, jetzt kommt folgende fehlermeldung:
Parse error: parse error, unexpected T_VARIABLE in C:\Dokumente und Einstellungen\Mike\Desktop\dslan_v1.3\dslan_v1.3\htdocs\include\configs\max_storage.php on line 1
was kann ich tun?
Posts: 8
Threads: 2
Joined: May 2009
Reputation:
0
Posts: 2
Threads: 1
Joined: May 2009
Reputation:
0
hier:
<?php $arr_maxstorage = array(
"1"=>"1000",
"2"=>"1229",
"3"=>"1512",
"4"=>"1859",
"5"=>"2285",
"6"=>"2810",
"7"=>"3454",
"8"=>"4247",
"9"=>"5222",
"10"=>"6420",
"11"=>"7893",
"12"=>"9705",
"13"=>"11932",
"14"=>"14670",
"15"=>"18037",
"16"=>"22177",
"17"=>"27266",
"18"=>"33523",
"19"=>"41217",
"20"=>"50675",
"21"=>"62305",
"22"=>"76604",
"23"=>"94184",
"24"=>"115798",
"25"=>"142373",
"26"=>"175047",
"27"=>"215219",
"28"=>"264611",
"29"=>"325337",
"30"=>"500000");?>
Posts: 4'673
Threads: 6
Joined: May 2008
Reputation:
171
(This post was last modified: 17.05.2009, 12:18 by Black Arrow.)
17.05.2009, 12:13
lösch mal den inhat und füge das hier ein:
PHP Code: <?php
$arr_maxstorage = array(
"1"=>"1000",
"2"=>"1229",
"3"=>"1512",
"4"=>"1859",
"5"=>"2285",
"6"=>"2810",
"7"=>"3454",
"8"=>"4247",
"9"=>"5222",
"10"=>"6420",
"11"=>"7893",
"12"=>"9705",
"13"=>"11932",
"14"=>"14670",
"15"=>"18037",
"16"=>"22177",
"17"=>"27266",
"18"=>"33523",
"19"=>"41217",
"20"=>"50675",
"21"=>"62305",
"22"=>"76604",
"23"=>"94184",
"24"=>"115798",
"25"=>"142373",
"26"=>"175047",
"27"=>"215219",
"28"=>"264611",
"29"=>"325337",
"30"=>"500000"
);
?>
|