a few days ago, i wrote regarding my problems.
I am using Joomla 1.08 and cannot edit something in the administration.
Wether Content, Menues or something else.
Everytime i call the edit function i get a form to ADD something.
This also related to the user-section. I cannot change some users. Is a user added, i cannot change his user information via administration.
I have tried to debug this. Specially for the content area in wich i cannot change something too.
To change content, the relevant files are admin.content.php, joomla.php and database.php.
So far as i understand, joomla is working and dealing with classes. First, joomla is initiating such a class while i try to change something.
I can find this in admin.content.php at line 380.
[PHP]function editContent [...]
// load the row from the db table
$row = new mosContent( $database );
[/PHP]
After this, the new class has to be extend by the articles data and values..
[PHP]$row->load($uid);[/PHP]
To load the articles data, the program goes to funktion load (ca. line 780) and later to function loadObject (ca. line 440) at line database.php.
After the function loadObject is worked out, the class $object has all values for my article.
But those values will not be stored in $row from admin.content.php

$row will not be extend by the values of $object.
The effect is, that i cannot edit. All forms will be blank and is prepared to ADD New (Content item: New) content.
Now i have tried the following code:
In front of $row->load($uid); in admin.content.php, i declare a now object:
$row1 = $row->load($uid);
The content of $row1 is now correct and filled with the articles data i will edit.
$row should be look like the same, but it has not the content of the article. Only the field names are stored in $row.
Now i go through $row1 and add the values from $row1 to $row.
[PHP]
foreach ($row1 as $name => $value) {
$row->$name = $value;
}[/PHP]
But this makes no sense. I have to modify each module with my code and this is not so good for me and later updates.
Perhaps, someone has an explanation, why $row has no values stored after the call $row->load($uid). Only the field names are stored.
I can also send my phone number if someone is willy to help me by phone.
Here are my system informations:
PHP built On: Linux wega.mine.nu 2.4.18-bf2.4 #1 Son Apr 14 09:53:28 CEST 2002 i686
Database Version: 4.1.11-log
PHP Version: 5.2.0-dev
Web Server: Apache/2.2.2 (Unix) mod_ssl/2.2.2 OpenSSL/0.9.7g DAV/2 PHP/5.2.0-dev
WebServer to PHP interface: apache2handler
Joomla! Version: Joomla! 1.0.8 Stable [ Sunshade ] 26-Feb-2006 05:00 UTC
User Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; de-DE; rv:1.7.12) Gecko/20050919 Firefox/1.0.7
Relevant PHP Settings:
Safe Mode: OFF
Open basedir: none
Display Errors: ON
Short Open Tags: ON
File Uploads: ON
Magic Quotes: ON
Register Globals: OFF
Output Buffering: OFF
Session save path: /tmp
Session auto start: 0
XML enabled: Yes
Zlib enabled: Yes
Disabled Functions: none
WYSIWYG Editor: No WYSIWYG Editor
Configuration File:
I will be happy if someone is helping me to fix this.
Thank you in advance
Daniel