TWLan Forum
max. storage.php fehler - Printable Version

+- TWLan Forum (https://twlan.org)
+-- Forum: Legacy (https://twlan.org/forumdisplay.php?fid=61)
+--- Forum: TWLan 1.x (DSLan) (https://twlan.org/forumdisplay.php?fid=62)
+---- Forum: Deutsche Community (https://twlan.org/forumdisplay.php?fid=65)
+----- Forum: Fragen & Probleme (https://twlan.org/forumdisplay.php?fid=7)
+----- Thread: max. storage.php fehler (/showthread.php?tid=1529)



max. storage.php fehler - Vykk - 17.05.2009

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?


RE: max. storage.php fehler - extra - 17.05.2009

post mal den ganzen code


RE: max. storage.php fehler - Vykk - 17.05.2009

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");?>


RE: max. storage.php fehler - Black Arrow - 17.05.2009

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"

);

?>