Ich meinte die Versionen von mySQL, nicht von PHP....
EDIT: Entschuldigung,es steht ja auch in der Datei: Server Version: 5.0.67
Könnte es wohl sein das es am exportieren und importieren liegt?
Ja, das könnte möglich sein...
Hier ein DB-Export über phpmyAdmin von einer Kategorie
-- phpMyAdmin SQL Dump
-- version 3.1.1
-- http://www.phpmyadmin.net
--
-- Host: localhost
-- Erstellungszeit: 12. März 2009 um 20:38
-- Server Version: 5.1.30
-- PHP-Version: 5.2.8
SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO";
--
-- Datenbank: `joomla15`
--
-- --------------------------------------------------------
--
-- Tabellenstruktur für Tabelle `jos_joomgallery_catg`
--
CREATE TABLE IF NOT EXISTS `jos_joomgallery_catg` (
`cid` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) NOT NULL DEFAULT '',
`parent` int(11) NOT NULL DEFAULT '0',
`description` text,
`ordering` int(11) NOT NULL DEFAULT '0',
`access` tinyint(3) unsigned NOT NULL DEFAULT '0',
`published` char(1) NOT NULL DEFAULT '0',
`owner` int(11) DEFAULT NULL,
`catimage` varchar(100) DEFAULT NULL,
`img_position` int(10) DEFAULT '0',
`catpath` varchar(255) NOT NULL DEFAULT '',
PRIMARY KEY (`cid`),
KEY `idx_parent` (`parent`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=2 ;
--
-- Daten für Tabelle `jos_joomgallery_catg`
--
INSERT INTO `jos_joomgallery_catg` (`cid`, `name`, `parent`, `description`, `ordering`, `access`, `published`, `owner`, `catimage`, `img_position`, `catpath`) VALUES
(1, 'test', 0, 'test', 1, 0, '1', NULL, '', 0, 'test_1');
Keine Änderung in den Default-Einstellungen von phpMyAdmin.
Grundsätzlich scheint es mit dem Export von NULL für das Feld 'owner' zu funktionieren.
Dann würde mir ein Backup ja nichts nützen.
Ein Backup ist wichtig.
Wenn Du aber keinen Test für einen DB-Import durchgeführt hast, hilft Dir ein DB-Backup wenig, stimmt.
Gruß
Andreas