![]() |
| | LinkBack (1) | Themen-Optionen | Thema durchsuchen | Thema bewerten | Ansicht |
|
#1
| ||||
| ||||
Hallo, Ich möchte auf meinem sarge server typo3 4.0RC1 installieren, um gleich die kommende t3 version zu lernen. Jetzt scheiter ich aber schon am quickstart. Anm.: Ich habe quickstart von v3.7 entpackt, und in die Hierarchie eingefügt. Die folgende Meldung bekam ich aber schon vorher) Zitat:
Zitat:
ciao floogy |
|
#2
| |||
| |||
| Vielleicht solltest du auch das machen, was Typo3 von dir verlangt: Type in your database parameters here:
__________________ |
|
#3
| |||
| |||
| Zitat:
Nun habe ich database.sql aus quickstart 3.70 importiert, und bekomme diese Meldung: Code: Fatal error: Allowed memory size of 8388608 bytes exhausted (tried to allocate 20438 bytes) in /home/www/typo3/t3lib/class.t3lib_install.php on line 620 ciao floogy |
|
#4
| |||
| |||
Zitat:
Code: 602
603 /**
604 * Returns an array where every entry is a single sql-statement. Input must be formatted like an ordina 604 ry MySQL-dump files
605 *
606 * @param string $sqlcode The sql-file content. Provided that 1) every query in t 606 he input is ended with ';' and that a line in the file contains only one query or a part of a query.
607 * @param boolean If set, non-sql (like comments and blank lines) are not included in the 607 final product)
608 * @param string Regex to filter SQL lines to include.
609 * @return array Array of SQL statements.
610 */
611 function getStatementArray($sqlcode,$removeNonSQL=0,$query_regex='') {
612 $sqlcodeArr = explode(chr(10),$sqlcode);
613
614 // Based on the assumption that the sql-dump has
615 $statementArray = array();
616 $statementArrayPointer = 0;
617
618 foreach($sqlcodeArr as $line => $linecontent) {
619 $is_set = 0;
620 if(stristr($linecontent,'auto_increment')) {
621 $linecontent = eregi_replace(' default \'0\'','',$linecontent);
622 }
623
624 if (!$removeNonSQL || (strcmp(trim($linecontent),'') && substr(trim($linecontent),0,1)! 624 ='#' && substr(trim($linecontent),0,2)!='--')) { // '--' is seen as mysqldump comments from serv 624 er version 3.23.49
625 $statementArray[$statementArrayPointer].= $linecontent;
626 $is_set = 1;
627 }
628 if (substr(trim($linecontent),-1)==';') {
629 if (isset($statementArray[$statementArrayPointer])) {
630 if (!trim($statementArray[$statementArrayPointer]) || ($query_regex &&
630 !eregi($query_regex,trim($statementArray[$statementArrayPointer])))) {
631 unset($statementArray[$statementArrayPointer]);
632 }
633 }
634 $statementArrayPointer++;
635 } elseif ($is_set) {
636 $statementArray[$statementArrayPointer].=chr(10);
637 }
638 }
639 return $statementArray;
640 }
: Geändert von floogy (19.03.06 um 11:56 Uhr). Grund: Änderung des subjects wegen Folgefehler |
|
#5
| |||
| |||
| Zitat:
vi /etc/php4/apache/php.ini 192 memory_limit = 16M ; Maximum amount of memory a script may consume (8MB) von 8 auf 16 MB erhöht. Fertig. ciao floogy |
|
#6
| ||||
| ||||
| Da hätte dir unsere FAQ auch weiter geholfen: http://www.typo3forum.net/forum/typo...aq_memory_size ;-) Ganz lieben Gruss Junior |
|
#7
| ||||
| ||||
| Zitat:
Zitat:
Code: php_value memory_limit "32M" Was ist denn Grundsätzlich davon zu halten Typo3 4.0RC1 mit quickstart 3.7 oder quickstart 3.81 zu nutzen, um Typo3 kennenzulernen? Ich meine das neue Typo3 4.0 erscheint ja bald, und das Buch von Robert Meyer startet ja, glaube ich, im April in die 2. Auflage und behandelt v4.0 . Für mich ist die v4 so interessant wegen Templa Voila! und vor allem dem Advanced Shop System (ecommerce Erweiterung),rtehtmlarea und dem neuen Workflow (da muß ich mich nicht wieder umstellen, wenn ich auf 4.0 upgrade). floogy Geändert von floogy (19.03.06 um 13:35 Uhr). |
|
#8
| ||||
| ||||
| Zitat:
Zitat:
floogy |
|
#9
| |||
| |||
| Was noch aussteht: Ist es Sinnvoll (nach erfolgreicher Installation ;-)) mit Typo3 v4 in Typo3 einzusteigen? Ich denke Ja. Was meint ihr? floogy |
![]() |
| Themen-Optionen | Thema durchsuchen |
| Ansicht | Thema bewerten |
| |
LinkBacks (?)
LinkBack to this Thread: http://www.typo3forum.net/forum/typo3-4-x-installation-updates/5387-typo3-lernen-v4-0rc1.html | ||||
| Erstellt von | For | Type | Datum | |
| Thema: Memory Limit | This thread | Refback | 24.08.08 15:58 | |
Ähnliche Themen | ||||
| Thema | Autor | Forum | Antworten | Letzter Beitrag |
| Typo3 Kennen lernen etc | giSpL | Tools und Tipps | 4 | 02.10.07 20:25 |
| jetzt muss ich typo3 lernen | Nemi | Forum Bar | 5 | 16.01.07 01:05 |
| Workflow Modul in Typo3 4.0RC1 | nugget | TYPO3 4.x Fragen und Probleme | 2 | 22.03.06 11:53 |
| Gemeinsam lernen im Ruhrgebiet | mbtec | TYPO3-Jobs | 0 | 01.09.05 11:52 |
| Wie das Coding für FE Entwicklung lernen? | Fabian | Extension modifizieren oder neu erstellen | 2 | 15.09.04 22:58 |