PDA

Archiv verlassen und diese Seite im Standarddesign anzeigen : Phpmyadmin doppelte Felder



I-Master
19.08.03, 16:13
Ich hab seit neustem nen ganz eigenartiges Problem mit PHPmyadmin. Wenn ich versuche neue Felder einzufügen kommt immer dieses:

CREATE TABLE `1` (

`1` INT NOT NULL ,
`1` INT NOT NULL
)

Ich wollte aber nur 1 Feld erzeugen? Wieso denkt phpmyadmin jetzt, dass das 2 sind?!
Mit der Hand

CREATE TABLE `1` (

`1` INT NOT NULL
)

gehts ohne Probleme. Aber wieso nicht per Phpmyadmin? Weiß da jemand Rat? Hab auch die neue Version von PHPmyadmin installiert, der Fehler ist aber gleich.

I-Master
19.08.03, 16:51
1.29] When I create a table or modify a field, I get an error and the fields are duplicated.
It is possible to configure Apache in such a way that PHP has problems interpreting .php files.

The problems occur when two different (and conflicting) set of directives are used:

SetOutputFilter PHP
SetInputFilter PHP
&
AddType application/x-httpd-php .php

In the case we saw, one set of directives was in httpd.conf, while the other set was in php.conf.
The recommended way is with AddType, so just comment out the first set of lines and restart Apache:

#SetOutputFilter PHP
#SetInputFilter PHP


Mmmmh. Bis letzte Woche gings auch noch so. Blicke ich nicht warum das jetzt auf einmal nicht mehr
ging.