Hi,
I am not getting the import/export module to work on Drupal 4.7.6.
I piled the problem back to the definitions file: importexportapi_node.inc
When I install the module without this file the module installs fine.
But when I also copy the file importexportapi_node.inc to my server at the right spot, I got a blank screen!!

I tried a couple of cvs importexportapi_node.inc files on the 4.7 Branch. Non succeeded.
Can somebody please help?

greetings,
Martijn

Comments

douggreen’s picture

Priority: Critical » Normal

Look at your apache error_log, it will probably tell you a file and line in the importexport_api.inc file where the error is occuring. If this is not enough for you to fix it, then copy and paste the (one) line from the apache error log related to this error.

Did you download from the project releases page or with CVS? If you downloaded with CVS, it's possible that you had local revisions to this file, and that these revisions are causing a php parse error. If this is the case, the thing to do is remove the file and do another "cvs up".

Changing from critical to normal because the problem is on D4.7.

Thanks and good luck!

summit’s picture

One step further..
Hi,
I saw in my Apache report from yesterday that node_def() was redeclared.
I renamed node_def() to node_definition() because in the module import_html.module node_def() was also used.
I don't get a blank screen anymore now with installing the module.
So I am one step further.
Please rename node_def() to another function (I used node_definition())

Now I can use the module.
But when I click Import or Export I got a blank screen!!
I think there are still mistakes in importexportui.module..

But I can see my Apache errorreport tomorrow..so then I will continu this thread.

Greetings,
Martijn

summit’s picture

In importexportui.module I allready see maybe a mistake..
On line 121 the function is called:

function importexporui_initial_selection_form_submit($form_id, $form_values) {

should it not be

function importexportui_initial_selection_form_submit($form_id, $form_values) {
summit’s picture

One other thing I noticed.
Line 396 of importexportui.module it says
$output = '<pre><code>'. check_plain("$ret") .'

';;

Isn't that one : to much?

douggreen’s picture

Line 121 is correct because on line 115 it calls drupal_get_form() with the same name.

There is an extra semi-colon on line 396, but that wouldn't cause an error.

I think the likely culprit is import_html.module node_def(). You can not rename node_def() in the definitions file and expect importexportapi to work. This is a hook function that must match a very specific name. I rather suggest that you disable import_html or rename the function there.

summit’s picture

Line 246 in importexportapi.module was an error in:

  $field += $default_values;

The '+' sign must be erases.
After this the admin/import shows, but not with the correct lay-out yet..
We are going to the bottom :)

summit’s picture

I renamed node_definition() back to node_def().
I unselected html_import.
I have now a screen for import see:

I got another error on line

line 311: $def[$entity_id]['#dependencies'] += _importexportapi_set_def_dependencies_recurse($entity_data);

and:
line 373: $dependencies += _importexportapi_set_def_dependencies_recurse($field[$child]);
 

should also be the "+" sign erased.
Or am I wrong and is this correct coding...

douggreen’s picture

I doubt that the += is the problem. += is valid php and is used throughout Drupal core (even in D4.7).

 $a += $b; // is the same as $a = $a + $b;

If you're system doesn't support +=, then you have bigger problems. What version of php are you using. Drupal 4.7 requires php 4.3.3 (see http://drupal.org/requirements).

summit’s picture

Hi,

After a while I got the import module to show like this: http://www.best-information.eu/importexport.JPG
But I don't see the fileds for which the values are.
And when I want to go to step 2..I got a blank screen again...
I don't think the module is stable enough if the "+" signs are errors..

douggreen’s picture

I'm not going to have time to debug this with you today (or even this week). Maybe someone else can step in.

summit’s picture

Ok.
I got PHP Fatal error: Unsupported operand types in ../public_html/modules/importexportapi/importexportapi.module on line 246,
Line 246 is:

$field += $default_values;

I have no problems throughout drupal 4.7 and it's true += is used many times, sorry for that, but I am not a programmer :( I just try to help..I don';t understand this PHP error then...

summit’s picture

If I change line 246 from:

$field += $default_values;

to:

$field = $default_values;

The admin/import works and shows like http://www.best-information.eu/importexport.JPG but then the process stops...

I got the error:
Unvalid choice input_format in the element Entities to import.
What can be the problem please help!

summit’s picture

Has somebody got this import/export api module for 4.7 working...?
Please leave a message for me. Or continu this thread.
Doug thanks for your help so far..and hopefully somebody takes over..

greetings,
Martijn

redmonp’s picture

Hey. I just downloaded the 4.7.x-1.x-dev, and I'm looking at line 246, and my line looks like:

$field['#process'] = array_merge($default_values['#process'], $field['#process']);

Perhaps you'd better recap what other changes you've made to this script, or download the module again and replace your changed files with the new download. You may have just left off a ; somewhere.

redmonp’s picture

I've installed the importexportapi-4.7.x-1.x-dev.tar.gz module on Drupal 4.7.4 and 4.7.5 successfully several times. It installs just like other modules, tar -zxvf module.name, move the untarred folder to the modules directory, and select the checkboxes in the admin page.

The only problems I ever had were utilizing the thing as an api. I've said in the past this is probably the most important module out there, as the main problem with any system is schema translation.

ray007’s picture

Blank screen usually means "out of memory".
If you activate error-logging you should find something in the errorlog of the webserver.
Try to increase the memory settings and see if it helps.

summit’s picture

I just downloaded again the importexportapi-4.7.x-1.x-dev.tar.gz file.
And on line 246 is the line I allready stated.
I only get the module working when I change node_def() to another name.
And only the import function a little bit working with changing line 246 from += to =.

But then the import itself is not correct and I get the error I stated above.
Please help!
Greetings,
Martijn

summit’s picture

I typed in above code and came to a patch:
http://drupal.org/files/issues/robustness_fix_for_missing_modules.patch.txt

I tried changing the latest .dev file with this patch and changed line:

246:  $field += $default_values;
to
246-247: 
$field += $default_values;
$field = array_merge((array)$default_values,$field);

I got at the same place as with changing:
246 to $field = $default_values;

With these changes I am back at square 2..I got the error within the admin/import as stated above.
The screen still looks like: www.best-information.eu/importexport.JPG
Blank fields..
Please help!!

summit’s picture

Hi,

If somebody has a working version for drupal 4.7.6 I'll be happy to exchange emailadresses and winzip please.
I can't get it working.
No I got the blank screen again..
greetings and thanks in advance,
Martijn

summit’s picture

Am I the only one you who doesn't get the importexportapi module working on 4.7.6?
I use the category module also...
Has anybody got this module working on 4.7.6 (with category module)?
Please respond.
Thanks in advance!
greetings,
Martijn

douggreen’s picture

Yes, you are the only person having this problem. The problem is not 4.7.6, but something you have installed or configured on your site. It is working on the majority of sites.

I suggested it might be a php requirements problem several days ago. Please check which version of php you are using and post the answer here.

Rather than fiddle with the code as you have been doing (your programming skills are showing), if you could narrow down what is causing the problem, we might be able to help you. To narrow down the problem, try various things like: uninstall one module at a time and see if the problem goes away. I'm not exactly sure which screen is doing the White-Screen-of-Death (WSOD), but if you selected anything before getting WSOD, try selecting fewer things.

You might also consider that, while importexportapi is a handy module, it is still relatively new and considered a beta product. It says as much on the product page! Do you really need this module to work? You've spent quite a bit of time already. Is it worth the additional time? Can you do what you want in some other way? If you're simply trying to export data, you can do this in SQL.

But until I hear the answer to the php version question, everything is a little moot.

The open source community is willing to assist you, but you'll need to help isolate the problem. Good luck!

summit’s picture

Hi Doug.

I am looking for a module to be able to import and export all kind of content with xml.
I am using the category module with drupal 4.7.6.

The PHP version I use is: PHP Version 5.1.6.
I still got the problem on line 246:

Line 246: $field += $default_values;

The error is:
PHP Fatal error: Unsupported operand types in ../public_html/modules/importexportapi/importexportapi.module on line 246, referer: ../admin/modules

What I am gone do is taking the module on a fresh drupal 4.7.6 install and see whats happens.
Thanks for your input so far!
I am that kind of a person that bites in a problem if it is not solved. Certainly as I don't understand why.
But you're right may be it is not the most efficient way!
Greetings,
Martijn

douggreen’s picture

Thanks for ruling out an obsolete php version. So, you're using a current version of php, Great!

It seems that either $field or $default_values on line 246 has something in it that is unexpected. A quick look at the code, and I think that if you just print out $field, it will tell us which definition is causing the problem. So, please add the following php above line 246, run the code once, save the html somewhere, then remove the line:

print "FIELD...\n";
print_r($field);
print "...FIELD\n";

Please view the html source and find the last entries printed between the FIELD... and ...FIELD, and copy the results here; put it inside <code> and </code> formatting to make it easier to read. It should say something like:

FIELD...
array
(
  ...
)
...FIELD

I know that there are some problems with importexportapi on Drupal 5 (the cck definition hasn't been upgraded yet), but why are you building this site in Drupal 4.7.6 instead of Drupal 5? I strongly recommend Drupal 5 for any new development.

douggreen’s picture

I just re-read your initial report, and it mentions importexportapi_node.inc. I expect the above test to print something related to this field definition.

summit’s picture

Hi Doug,
I am not at home now, so can't do the code-testing. I will do this this evening.
I am using drupal 4.7.6. simple because other modules I am working with are not all been updated to drupal 5 yet. Or the update is still buggy.
I keep you posted on my findings.

Greetings,
Martijn

summit’s picture

Hi Doug,

THis is what the variable $FIELD says with using

	 $field = $default_values;


FIELD... Array ( [#type] => entity [#title] => Invoerformaat [#db_default_table] => filter_formats [#xml_plural] => input-formats [#csv_plural] => input-formats [format] => Array ( [#type] => int [#title] => Input format ID [#key] => 1 ) [format_name] => Array ( [#title] => Input format name [#alt_key_for] => format [#db_field_unaliased] => name ) [role] => Array ( [#type] => freeform [#title] => Rollen [#db_field_unaliased] => roles [#xml_plural] => roles [#csv_plural] => roles ) [cache] => Array ( [#type] => int [#title] => Cacheable ) [#id] => input_format ) ...FIELD FIELD... Array ( [#type] => entity [#title] => Filter [#db_default_table] => filters [#xml_plural] => filters [#csv_plural] => filters [format] => Array ( [#type] => int [#title] => Input format ID [#key_component] => 1 [#reference_entity] => input_format ) [module] => Array ( [#title] => Responsible module [#key_component] => 1 ) [delta] => Array ( [#type] => int [#title] => Delta [#key_component] => 1 ) [weight] => Array ( [#type] => int [#title] => Gewicht ) [#id] => filter ) ...FIELD FIELD... #ntity...FIELD FIELD... #rupal node...FIELD FIELD... Array ( [#title] => Node Body [#key] => 1 [#id] => body [#type] => string ) ...FIELD FIELD... Array ( [#title] => Node Title [#key] => 1 [#id] => title [#type] => string ) ...FIELD FIELD... Array ( [#type] => int [#title] => Node ID [#identifier] => drupal:nid [#id] => nid ) ...FIELD FIELD... Array ( [#title] => Pad [#identifier] => drupal:path [#id] => path [#type] => string ) ...FIELD FIELD... Array ( [#title] => Drupal Node Type [#identifier] => drupal:type [#id] => type [#type] => string ) ...FIELD FIELD... Array ( [#type] => int [#title] => Date Created [#identifier] => dc:created [#id] => created ) ...FIELD FIELD... Array ( [#type] => int [#title] => Date Modified [#identifier] => dc:modified [#id] => changed ) ...FIELD FIELD... Array ( [#title] => Tag [#key] => 1 [#id] => taxonomy [#type] => string ) ...FIELD FIELD... Array ( [#type] => entity [#title] => Variable [#xml_plural] => variables [#csv_plural] => variables [name] => Array ( [#title] => Variable name [#key_component] => 1 [#unique] => 1 ) [value] => Array ( [#type] => serialized [#title] => Variable value ) [#id] => variable ) ...FIELD FIELD... Array ( [#type] => entity [#title] => File [#db_default_table] => files [#xml_plural] => files [#csv_plural] => files [fid] => Array ( [#type] => int [#title] => File ID [#key] => 1 [#db_uses_sequences] => 1 ) [nid] => Array ( [#type] => int [#title] => Node ID [#reference_entity] => node ) [file_name] => Array ( [#title] => File name [#db_field_unaliased] => filename ) [file_path] => Array ( [#type] => file [#title] => File path [#db_field_unaliased] => filepath ) [file_mime] => Array ( [#title] => File MIME type [#db_field_unaliased] => filemime ) [file_size] => Array ( [#title] => File size [#db_field_unaliased] => filesize ) [file_revisions] => Array ( [#type] => array [#title] => File revisions [#xml_plural] => file-revisions [#csv_plural] => file-revisions [#xml_mapping] => file-revision [fid] => Array ( [#type] => int [#title] => File ID [#reference_entity] => file ) [vid] => Array ( [#type] => int [#title] => Node revision ID [#reference_entity] => node [#reference_field] => Array ( [0] => revisions [1] => vid ) ) [description] => Array ( [#title] => Beschrijving ) [list] => Array ( [#type] => int [#title] => Show in list ) ) [#id] => file ) ...FIELD FIELD... Array ( [#type] => entity [#title] => User role [#xml_plural] => roles [#csv_plural] => roles [#process] => Array ( [_importexportapi_user_process_role] => Array ( ) ) [rid] => Array ( [#type] => int [#title] => Role ID [#key] => 1 ) [role_name] => Array ( [#title] => Naam rol [#alt_key_for] => rid [#db_field_unaliased] => name ) [perm_rid] => Array ( [#type] => int [#title] => Role ID [#reference_entity] => role [#reference_field] => Array ( [0] => rid ) [#db_table] => permission [#db_field_unaliased] => rid [#key_component] => 1 [#csv_hidden] => 1 ) [perm] => Array ( [#type] => freeform [#title] => Permission list [#default_value] => [#xml_plural] => permissions [#csv_plural] => permissions [#db_table] => permission ) [#id] => role ) ...FIELD FIELD... Array ( [#type] => entity [#title] => Gebruiker [#db_default_table] => users [#xml_plural] => users [#csv_plural] => users [uid] => Array ( [#type] => int [#title] => User ID [#key] => 1 [#db_uses_sequences] => 1 ) [name] => Array ( [#title] => Gebruikersnaam [#alt_key_for] => uid ) [pass] => Array ( [#title] => Wachtwoord ) [mail] => Array ( [#title] => E-mail adres [#alt_key_for] => uid ) [theme] => Array ( [#title] => Template-instellingen ) [created] => Array ( [#type] => datetime [#title] => Member since ) [access] => Array ( [#type] => datetime [#title] => Laatste toegang ) [login] => Array ( [#type] => datetime [#title] => Last login ) [status] => Array ( [#type] => int [#title] => Status ) [timezone] => Array ( [#type] => int [#title] => Tijdszone [#default_value] => ) [picture] => Array ( [#type] => file [#title] => Afbeelding ) [roles] => Array ( [#type] => array [#title] => Rollen [#db_default_table] => users_roles [#xml_plural] => roles [#csv_plural] => users-roles [#xml_mapping] => role [uid] => Array ( [#type] => int [#title] => User ID [#reference_entity] => user [#key_component] => 1 ) [rid] => Array ( [#type] => int [#title] => Role ID [#reference_entity] => role [#key_component] => 1 ) ) [auth] => Array ( [#type] => array [#title] => Remote auth [#db_default_table] => authmap [#xml_plural] => authmaps [#csv_plural] => authmaps [aid] => Array ( [#type] => int [#title] => Auth ID [#key] => 1 ) [uid] => Array ( [#type] => int [#title] => User ID [#reference_entity] => user [#alt_key_ignore] => Array ( [0] => name ) ) [authname] => Array ( [#title] => Auth name [#reference_entity] => user [#reference_field] => Array ( [0] => name ) [#alt_key_ignore] => 1 ) [module] => Array ( [#title] => Auth module [#required] => 1 ) ) [mode] => Array ( [#type] => int [#title] => Comment viewing mode ) [sort] => Array ( [#type] => int [#title] => Comment viewing order ) [signature] => Array ( [#title] => Signatuur ) [language] => Array ( [#title] => Taal ) [profile] => Array ( [#type] => array [#title] => Profile information [#db_default_table] => profile_values [#xml_plural] => profile-values [#csv_plural] => profile-values [#process] => Array ( [_importexportapi_profile_process_values] => Array ( [0] => Array ( [9] => stdClass Object ( [name] => profile_pubcode [title] => Pubcode [required] => 0 [type] => textfield ) [1] => stdClass Object ( [name] => user_yim [title] => YIM [required] => 0 [type] => textfield ) [2] => stdClass Object ( [name] => user_aim [title] => AIM [required] => 0 [type] => textfield ) [3] => stdClass Object ( [name] => user_msnm [title] => MSN [required] => 0 [type] => textfield ) [4] => stdClass Object ( [name] => user_icq [title] => icq [required] => 0 [type] => textfield ) [5] => stdClass Object ( [name] => user_website [title] => Website [required] => 0 [type] => url ) [6] => stdClass Object ( [name] => user_from [title] => Location [required] => 0 [type] => textfield ) [7] => stdClass Object ( [name] => user_occ [title] => Occupation [required] => 0 [type] => textfield ) [8] => stdClass Object ( [name] => user_interests [title] => Interests [required] => 0 [type] => textfield ) ) ) ) [fid] => Array ( [#type] => int [#title] => Field ID [#reference_entity] => profile_field [#key_component] => 1 ) [uid] => Array ( [#type] => int [#title] => User ID [#reference_entity] => user [#key_component] => 1 ) [value] => Array ( [#title] => Field value [#default_value] => [#xml_plural] => values ) ) [#id] => user ) ...FIELD FIELD... Array ( [#type] => entity [#title] => Watchdog log message [#db_default_table] => watchdog [#xml_plural] => watchdog-log [#csv_plural] => watchdog-log [wid] => Array ( [#type] => int [#title] => Watchdog message ID [#key] => 1 ) [uid] => Array ( [#type] => int [#title] => User ID [#reference_entity] => user ) [message_type] => Array ( [#title] => Message type [#db_field_unaliased] => type ) [message] => Array ( [#title] => Message text [#xml_mapping] => message-text [#csv_mapping] => message-text ) [severity] => Array ( [#type] => int [#title] => strengheid ) [link] => Array ( [#title] => Link ) [location] => Array ( [#title] => Location URL ) [referer] => Array ( [#title] => Referer URL ) [hostname] => Array ( [#title] => Hostnaam ) [timestamp] => Array ( [#type] => datetime [#title] => Tijdstip ) [#id] => watchdog_message ) ...FIELD FIELD... Array ( [#type] => entity [#title] => Aggregator category [#xml_plural] => aggregator-categories [#csv_plural] => aggregator-categories [cid] => Array ( [#type] => int [#title] => Aggregator category ID [#key] => 1 [#db_uses_sequences] => 1 ) [category_title] => Array ( [#title] => Category title [#db_field_unaliased] => title [#alt_key_for] => cid ) [category_description] => Array ( [#title] => Category description [#db_field_unaliased] => description ) [num_items_in_block] => Array ( [#type] => int [#title] => Number of items in block [#db_field_unaliased] => block ) [#id] => aggregator_category ) ...FIELD FIELD... Array ( [#type] => entity [#title] => Aggregator feed [#xml_plural] => aggregator-feeds [#csv_plural] => aggregator-feeds [fid] => Array ( [#type] => int [#title] => Aggregator feed ID [#key] => 1 [#db_uses_sequences] => 1 ) [feed_title] => Array ( [#title] => Feed title [#db_field_unaliased] => title [#alt_key_for] => fid ) [feed_source_url] => Array ( [#title] => Feed source URL [#db_field_unaliased] => url ) [refresh_interval] => Array ( [#type] => int [#title] => Refresh interval [#db_field_unaliased] => refresh ) [last_checked_date] => Array ( [#type] => datetime [#title] => Last checked date [#db_field_unaliased] => checked ) [feed_syndicated_url] => Array ( [#title] => Feed syndicated URL [#db_field_unaliased] => link ) [feed_description] => Array ( [#title] => Feed description [#db_field_unaliased] => description ) [image] => Array ( [#title] => Feed image ) [etag] => Array ( [#title] => E-tag ) [last_modified_date] => Array ( [#type] => datetime [#title] => Last modified date [#db_field_unaliased] => modified ) [num_items_in_block] => Array ( [#type] => int [#title] => Number of items in block [#db_field_unaliased] => block ) [feed_categories] => Array ( [#type] => array [#title] => Feed categories [#db_default_table] => aggregator_category_feed [#xml_plural] => feed-categories [#csv_plural] => feed-categories [#xml_mapping] => feed-category [fid] => Array ( [#type] => int [#title] => Aggregator feed ID [#reference_entity] => aggregator_feed ) [cid] => Array ( [#type] => int [#title] => Aggregator category ID [#reference_entity] => aggregator_category [#key_component] => 1 ) ) [#id] => aggregator_feed ) ...FIELD FIELD... Array ( [#type] => entity [#title] => Aggregator item [#xml_plural] => aggregator-items [#csv_plural] => aggregator-items [iid] => Array ( [#type] => int [#title] => Aggregator item ID [#key] => 1 [#db_uses_sequences] => 1 ) [fid] => Array ( [#type] => int [#title] => Aggregator feed ID [#reference_entity] => aggregator_feed ) [item_title] => Array ( [#title] => Item title [#db_field_unaliased] => title [#alt_key_for] => iid ) [source_url] => Array ( [#title] => Source URL [#db_field_unaliased] => link ) [author] => Array ( [#title] => Auteur ) [item_description] => Array ( [#title] => Item description [#db_field_unaliased] => description ) [created] => Array ( [#type] => datetime [#title] => Creation date [#db_field_unaliased] => timestamp ) [item_categories] => Array ( [#type] => array [#title] => Item categories [#db_default_table] => aggregator_category_item [#xml_plural] => item-categories [#csv_plural] => item-categories [#xml_mapping] => item-category [iid] => Array ( [#type] => int [#title] => Aggregator item ID [#reference_entity] => aggregator_item ) [cid] => Array ( [#type] => int [#title] => Aggregator category ID [#reference_entity] => aggregator_category [#key_component] => 1 ) ) [#id] => aggregator_item ) ...FIELD FIELD... Array ( [#type] => entity [#title] => Blok [#db_default_table] => blocks [#xml_plural] => blocks [#csv_plural] => blocks [module] => Array ( [#title] => Responsible module [#key_component] => 1 [#db_filter] => Array ( [values] => Array ( [0] => block ) [operator] => neq ) ) [delta] => Array ( [#title] => Delta [#key_component] => 1 ) [theme] => Array ( [#title] => Theme [#key_component] => 1 ) [status] => Array ( [#type] => int [#title] => Ingeschakeld ) [weight] => Array ( [#type] => int [#title] => Gewicht ) [region] => Array ( [#title] => Region ) [custom] => Array ( [#type] => int [#title] => Custom ) [throttle] => Array ( [#type] => int [#title] => Afknijpen (Throttle) ) [visibility] => Array ( [#type] => int [#title] => Zichtbaarheid ) [pages] => Array ( [#title] => Pagina's ) [#id] => block ) ...FIELD FIELD... Array ( [#type] => entity [#title] => Block (custom) [#db_default_table] => blocks [#xml_plural] => blocks-custom [#csv_plural] => blocks-custom [module] => Array ( [#title] => Responsible module [#key_component] => 1 [#db_filter] => Array ( [values] => Array ( [0] => block ) ) ) [delta] => Array ( [#title] => Delta [#key_component] => 1 [#reference_entity] => block_custom [#reference_field] => Array ( [0] => bid ) ) [theme] => Array ( [#title] => Theme [#key_component] => 1 ) [status] => Array ( [#type] => int [#title] => Ingeschakeld ) [weight] => Array ( [#type] => int [#title] => Gewicht ) [region] => Array ( [#title] => Region ) [custom] => Array ( [#type] => int [#title] => Custom ) [throttle] => Array ( [#type] => int [#title] => Afknijpen (Throttle) ) [visibility] => Array ( [#type] => int [#title] => Zichtbaarheid ) [pages] => Array ( [#title] => Pagina's ) [bid] => Array ( [#type] => int [#title] => Box ID [#db_table] => boxes [#key] => 1 ) [title] => Array ( [#title] => Titel [#db_table] => boxes ) [body] => Array ( [#title] => Berichttekst [#db_table] => boxes ) [info] => Array ( [#title] => Beschrijving [#unique] => 1 [#db_table] => boxes ) [format] => Array ( [#type] => int [#title] => Input format ID [#reference_entity] => input_format [#db_table] => boxes ) [#id] => block_custom ) ...FIELD FIELD... Array ( [#type] => entity [#title] => Commentaar [#db_default_table] => comments [#xml_plural] => comments [#csv_plural] => comments [#process] => Array ( [_importexportapi_comment_process_thread] => Array ( ) ) [cid] => Array ( [#type] => int [#title] => Comment ID [#key] => 1 [#db_uses_sequences] => 1 [#db_force_generate_id] => 1 ) [parent] => Array ( [#type] => int [#title] => Parent comment ID [#reference_entity] => comment [#reference_field] => Array ( [0] => cid ) [#reference_delta] => 1 [#reference_parent] => [#db_field_unaliased] => pid ) [nid] => Array ( [#type] => int [#title] => Node ID [#reference_entity] => node ) [uid] => Array ( [#type] => int [#title] => User ID [#reference_entity] => user ) [subject] => Array ( [#title] => Onderwerp ) [body] => Array ( [#title] => Comment text [#db_field_unaliased] => comment ) [hostname] => Array ( [#title] => Hostnaam ) [timestamp] => Array ( [#type] => datetime [#title] => Last modified date ) [score] => Array ( [#type] => int [#title] => Score ) [status] => Array ( [#type] => int [#title] => Gepubliceerd ) [format] => Array ( [#type] => int [#title] => Invoerformaat [#reference_entity] => input_format ) [thread] => Array ( [#title] => Thread position ) [commenter_name] => Array ( [#title] => Commenter name [#db_field_unaliased] => name ) [commenter_mail] => Array ( [#title] => Commenter e-mail address [#db_field_unaliased] => mail ) [commenter_homepage] => Array ( [#title] => Commenter home page [#db_field_unaliased] => homepage ) [#id] => comment ) ...FIELD FIELD... Array ( [#type] => entity [#title] => Locale source string [#db_default_table] => locales_source [#xml_plural] => locale-source-strings [#csv_plural] => locale-source-strings [lid] => Array ( [#type] => int [#title] => Source string ID [#key] => 1 ) [location] => Array ( [#title] => Locatie ) [source_string] => Array ( [#title] => Source string [#db_field_unaliased] => source ) [#id] => locale_source ) ...FIELD FIELD... Array ( [#type] => entity [#title] => Locale [#db_default_table] => locales_meta [#xml_plural] => locales [#csv_plural] => locales [locale_code] => Array ( [#title] => Locale language code [#key_component] => 1 [#db_field_unaliased] => locale ) [name] => Array ( [#title] => Locale name [#unique] => 1 ) [enabled] => Array ( [#type] => int [#title] => Ingeschakeld ) [isdefault] => Array ( [#type] => int [#title] => Is default ) [plurals] => Array ( [#type] => int [#title] => Plurals ) [localized_strings] => Array ( [#type] => array [#title] => Localized strings [#db_default_table] => locales_target [#xml_plural] => localized-strings [#csv_plural] => localized-strings [#xml_mapping] => localized-string [lid] => Array ( [#type] => int [#title] => Source string ID [#reference_entity] => locale_source [#key_component] => 1 ) [translation] => Array ( [#title] => Localized string ) [locale_code] => Array ( [#title] => Locale language code [#db_field_unaliased] => locale [#reference_entity] => locale [#key_component] => 1 ) [plid] => Array ( [#type] => int [#title] => Plural source string ID [#reference_entity] => locale [#reference_field] => Array ( [0] => localized_strings [1] => lid ) [#reference_parent] => [#key_component] => 1 ) [plural] => Array ( [#type] => int [#title] => Is plural ) ) [#id] => locale ) ...FIELD FIELD... Array ( [#type] => entity [#title] => Menu onderdeel [#db_default_table] => menu [#xml_plural] => menu-items [#csv_plural] => menu-items [mid] => Array ( [#type] => int [#title] => Menu item ID [#key] => 1 [#db_uses_sequences] => 1 ) [pid] => Array ( [#type] => int [#title] => Parent menu item ID [#reference_entity] => menu_item [#reference_field] => Array ( [0] => mid ) [#reference_parent] => ) [path] => Array ( [#title] => System path [#xml_mapping] => system-path [#csv_mapping] => system-path ) [title] => Array ( [#title] => Titel ) [description] => Array ( [#title] => Beschrijving ) [weight] => Array ( [#type] => int [#title] => Gewicht ) [type] => Array ( [#type] => int [#title] => Type ) [#id] => menu_item ) ...FIELD FIELD... Array ( [#type] => entity [#title] => Pagina [#db_default_table] => node [#xml_plural] => pages [#csv_plural] => pages [#db_process_generate_id] => Array ( [importexportapi_node_process_generate_id] => Array ( ) ) [nid] => Array ( [#type] => int [#title] => Node ID [#key] => 1 [#db_uses_sequences] => 1 [#abstract_parent] => node ) [vid] => Array ( [#type] => int [#title] => Revision ID [#reference_entity] => page [#reference_field] => Array ( [0] => revisions [1] => vid ) [#key_component] => 1 [#abstract_parent] => node ) [type] => Array ( [#title] => Type [#abstract_parent] => node [#db_filter] => Array ( [values] => Array ( [0] => page ) ) ) [title] => Array ( [#title] => Titel [#alt_key_for] => nid [#abstract_parent] => node ) [uid] => Array ( [#type] => int [#title] => User ID [#reference_entity] => user [#abstract_parent] => node ) [status] => Array ( [#type] => int [#title] => Gepubliceerd [#default_value] => 1 [#abstract_parent] => node ) [created] => Array ( [#type] => datetime [#title] => Creation date [#abstract_parent] => node ) [changed] => Array ( [#type] => datetime [#title] => Last changed date [#abstract_parent] => node ) [promote] => Array ( [#type] => int [#title] => Aangeraden op de voorpagina [#abstract_parent] => node ) [moderate] => Array ( [#type] => int [#title] => In de moderatiewachtrij [#abstract_parent] => node ) [sticky] => Array ( [#type] => int [#title] => Vastgeplakt bovenaan de lijst [#abstract_parent] => node ) [revisions] => Array ( [#type] => array [#title] => Revisions [#db_default_table] => node_revisions [#xml_plural] => revisions [#xml_mapping] => revision [#csv_plural] => page-revisions [nid] => Array ( [#type] => int [#title] => Node ID [#reference_entity] => page [#abstract_parent] => node ) [vid] => Array ( [#type] => int [#title] => Revision ID [#key] => 1 [#db_uses_sequences] => 1 [#abstract_parent] => node ) [uid] => Array ( [#type] => int [#title] => User ID [#reference_entity] => user [#abstract_parent] => node ) [title_revision] => Array ( [#title] => Titel [#alt_key_for] => vid [#db_field_unaliased] => title [#abstract_parent] => node ) [body] => Array ( [#title] => Berichttekst [#abstract_parent] => node ) [teaser] => Array ( [#title] => Teaser [#abstract_parent] => node ) [log] => Array ( [#title] => Logbericht [#abstract_parent] => node ) [timestamp] => Array ( [#type] => datetime [#title] => Last changed date [#abstract_parent] => node ) [format] => Array ( [#type] => int [#title] => Input format ID [#reference_entity] => input_format [#abstract_parent] => node ) [#abstract_parent] => node ) [comment] => Array ( [#type] => int [#title] => Comment setting [#abstract_parent] => node ) [comment_statistics_nid] => Array ( [#type] => int [#title] => Node ID [#reference_entity] => page [#reference_field] => Array ( [0] => nid ) [#db_table] => node_comment_statistics [#db_field_unaliased] => nid [#key_component] => 1 [#csv_hidden] => 1 [#abstract_parent] => node ) [last_comment_timestamp] => Array ( [#type] => datetime [#title] => Last comment date [#db_table] => node_comment_statistics [#abstract_parent] => node ) [last_comment_name] => Array ( [#title] => Last comment username [#default_value] => [#db_table] => node_comment_statistics [#reference_entity] => user [#reference_field] => Array ( [0] => uid ) [#alt_key_ignore] => 1 [#abstract_parent] => node ) [last_comment_uid] => Array ( [#type] => int [#title] => Last comment user ID [#db_table] => node_comment_statistics [#reference_entity] => user [#reference_field] => Array ( [0] => uid ) [#abstract_parent] => node ) [comment_count] => Array ( [#type] => int [#title] => Comment count [#db_table] => node_comment_statistics [#abstract_parent] => node ) [counter_nid] => Array ( [#type] => int [#title] => Node ID [#reference_entity] => page [#reference_field] => Array ( [0] => nid ) [#db_table] => node_counter [#db_field_unaliased] => nid [#key_component] => 1 [#csv_hidden] => 1 [#abstract_parent] => node ) [totalcount] => Array ( [#type] => int [#title] => Total page views [#db_table] => node_counter [#abstract_parent] => node ) [daycount] => Array ( [#type] => int [#title] => Today's page views [#db_table] => node_counter [#abstract_parent] => node ) [viewed] => Array ( [#type] => int [#title] => Last viewed date [#db_table] => node_counter [#db_field_unaliased] => timestamp [#abstract_parent] => node ) [taxonomy] => Array ( [#type] => array [#title] => Taxonomy terms [#db_default_table] => term_node [#xml_plural] => taxonomy-terms [#csv_plural] => taxonomy-terms [#xml_mapping] => term [nid] => Array ( [#type] => int [#title] => Node ID [#reference_entity] => page [#key_component] => 1 [#abstract_parent] => node ) [tid] => Array ( [#type] => int [#title] => Term ID [#reference_entity] => term [#key_component] => 1 [#abstract_parent] => node ) [#abstract_parent] => node ) [#id] => page ) ...FIELD FIELD... Array ( [#type] => entity [#title] => URL alias [#xml_plural] => url-aliases [#csv_plural] => url-aliases [pid] => Array ( [#type] => int [#title] => URL alias ID [#key] => 1 ) [src] => Array ( [#title] => System path [#xml_mapping] => system-path [#csv_mapping] => system-path ) [dst] => Array ( [#title] => Aliased path [#xml_mapping] => aliased-path [#csv_mapping] => aliased-path [#unique] => 1 ) [#id] => url_alias ) ...FIELD FIELD... Array ( [#type] => entity [#title] => Enquête [#db_default_table] => node [#xml_plural] => polls [#csv_plural] => polls [#db_process_generate_id] => Array ( [importexportapi_node_process_generate_id] => Array ( ) ) [nid] => Array ( [#type] => int [#title] => Node ID [#key] => 1 [#db_uses_sequences] => 1 [#abstract_parent] => node ) [vid] => Array ( [#type] => int [#title] => Revision ID [#reference_entity] => poll [#reference_field] => Array ( [0] => revisions [1] => vid ) [#key_component] => 1 [#abstract_parent] => node ) [type] => Array ( [#title] => Type [#abstract_parent] => node [#db_filter] => Array ( [values] => Array ( [0] => poll ) ) ) [title] => Array ( [#title] => Titel [#alt_key_for] => nid [#abstract_parent] => node ) [uid] => Array ( [#type] => int [#title] => User ID [#reference_entity] => user [#abstract_parent] => node ) [status] => Array ( [#type] => int [#title] => Gepubliceerd [#default_value] => 1 [#abstract_parent] => node ) [created] => Array ( [#type] => datetime [#title] => Creation date [#abstract_parent] => node ) [changed] => Array ( [#type] => datetime [#title] => Last changed date [#abstract_parent] => node ) [promote] => Array ( [#type] => int [#title] => Aangeraden op de voorpagina [#abstract_parent] => node ) [moderate] => Array ( [#type] => int [#title] => In de moderatiewachtrij [#abstract_parent] => node ) [sticky] => Array ( [#type] => int [#title] => Vastgeplakt bovenaan de lijst [#abstract_parent] => node ) [revisions] => Array ( [#type] => array [#title] => Revisions [#db_default_table] => node_revisions [#xml_plural] => revisions [#xml_mapping] => revision [#csv_plural] => poll-revisions [nid] => Array ( [#type] => int [#title] => Node ID [#reference_entity] => poll [#abstract_parent] => node ) [vid] => Array ( [#type] => int [#title] => Revision ID [#key] => 1 [#db_uses_sequences] => 1 [#abstract_parent] => node ) [uid] => Array ( [#type] => int [#title] => User ID [#reference_entity] => user [#abstract_parent] => node ) [title_revision] => Array ( [#title] => Titel [#alt_key_for] => vid [#db_field_unaliased] => title [#abstract_parent] => node ) [body] => Array ( [#title] => Berichttekst [#abstract_parent] => node ) [teaser] => Array ( [#title] => Teaser [#abstract_parent] => node ) [log] => Array ( [#title] => Logbericht [#abstract_parent] => node ) [timestamp] => Array ( [#type] => datetime [#title] => Last changed date [#abstract_parent] => node ) [format] => Array ( [#type] => int [#title] => Input format ID [#reference_entity] => input_format [#abstract_parent] => node ) [#abstract_parent] => node ) [comment] => Array ( [#type] => int [#title] => Comment setting [#abstract_parent] => node ) [comment_statistics_nid] => Array ( [#type] => int [#title] => Node ID [#reference_entity] => poll [#reference_field] => Array ( [0] => nid ) [#db_table] => node_comment_statistics [#db_field_unaliased] => nid [#key_component] => 1 [#csv_hidden] => 1 [#abstract_parent] => node ) [last_comment_timestamp] => Array ( [#type] => datetime [#title] => Last comment date [#db_table] => node_comment_statistics [#abstract_parent] => node ) [last_comment_name] => Array ( [#title] => Last comment username [#default_value] => [#db_table] => node_comment_statistics [#reference_entity] => user [#reference_field] => Array ( [0] => uid ) [#alt_key_ignore] => 1 [#abstract_parent] => node ) [last_comment_uid] => Array ( [#type] => int [#title] => Last comment user ID [#db_table] => node_comment_statistics [#reference_entity] => user [#reference_field] => Array ( [0] => uid ) [#abstract_parent] => node ) [comment_count] => Array ( [#type] => int [#title] => Comment count [#db_table] => node_comment_statistics [#abstract_parent] => node ) [counter_nid] => Array ( [#type] => int [#title] => Node ID [#reference_entity] => poll [#reference_field] => Array ( [0] => nid ) [#db_table] => node_counter [#db_field_unaliased] => nid [#key_component] => 1 [#csv_hidden] => 1 [#abstract_parent] => node ) [totalcount] => Array ( [#type] => int [#title] => Total page views [#db_table] => node_counter [#abstract_parent] => node ) [daycount] => Array ( [#type] => int [#title] => Today's page views [#db_table] => node_counter [#abstract_parent] => node ) [viewed] => Array ( [#type] => int [#title] => Last viewed date [#db_table] => node_counter [#db_field_unaliased] => timestamp [#abstract_parent] => node ) [taxonomy] => Array ( [#type] => array [#title] => Taxonomy terms [#db_default_table] => term_node [#xml_plural] => taxonomy-terms [#csv_plural] => taxonomy-terms [#xml_mapping] => term [nid] => Array ( [#type] => int [#title] => Node ID [#reference_entity] => poll [#key_component] => 1 [#abstract_parent] => node ) [tid] => Array ( [#type] => int [#title] => Term ID [#reference_entity] => term [#key_component] => 1 [#abstract_parent] => node ) [#abstract_parent] => node ) [poll_nid] => Array ( [#type] => int [#title] => Node ID [#reference_entity] => poll [#reference_field] => Array ( [0] => nid ) [#db_table] => poll [#db_field_unaliased] => nid [#key_component] => 1 [#csv_hidden] => 1 ) [poll_runtime] => Array ( [#type] => int [#title] => Duur van de enquête [#db_table] => poll [#db_field_unaliased] => runtime ) [poll_active] => Array ( [#type] => int [#title] => Poll currently active [#db_table] => poll [#db_field_unaliased] => active ) [poll_choices] => Array ( [#type] => array [#title] => Poll choices [#xml_plural] => poll-choices [#csv_plural] => poll-choices [#xml_mapping] => choice [chid] => Array ( [#type] => int [#title] => Choice ID [#key] => 1 ) [nid] => Array ( [#type] => int [#title] => Node ID [#reference_entity] => poll ) [chtext] => Array ( [#title] => Choice description ) [chvotes] => Array ( [#type] => int [#title] => Choice votes ) [chorder] => Array ( [#type] => int [#title] => Choice order ) ) [poll_votes] => Array ( [#type] => array [#title] => Poll votes [#xml_plural] => poll-votes [#csv_plural] => poll-votes [#xml_mapping] => vote [nid] => Array ( [#type] => int [#title] => Node ID [#reference_entity] => poll ) [uid] => Array ( [#type] => int [#title] => User ID [#reference_entity] => user ) [hostname] => Array ( [#type] => int [#title] => Hostnaam ) ) [#id] => poll ) ...FIELD FIELD... Array ( [#type] => entity [#title] => Profile field [#db_default_table] => profile_fields [#xml_plural] => profile-fields [#csv_plural] => profile-fields [fid] => Array ( [#type] => int [#title] => Field ID [#key] => 1 ) [title] => Array ( [#title] => Title (human-readable) [#alt_key_for] => fid ) [field_name] => Array ( [#title] => Name (machine-readable) [#alt_key_for] => fid [#db_field_unaliased] => name ) [type] => Array ( [#title] => Type [#required] => 1 ) [category] => Array ( [#title] => Categorie [#default_value] => ) [explanation] => Array ( [#title] => Uitleg [#default_value] => ) [options] => Array ( [#type] => freeform [#title] => Selectie-opties [#default_value] => [#xml_plural] => options [#xml_mapping] => option ) [weight] => Array ( [#type] => int [#title] => Gewicht ) [visibility] => Array ( [#type] => int [#title] => Zichtbaarheid ) [page] => Array ( [#title] => Pagina titel [#default_value] => ) [required] => Array ( [#type] => int [#title] => Vereist ) [register] => Array ( [#type] => int [#title] => Visible in user registration form ) [#id] => profile_field ) ...FIELD FIELD... Array ( [#type] => entity [#title] => Access log message [#db_default_table] => accesslog [#xml_plural] => access-log [#csv_plural] => access-log [aid] => Array ( [#type] => int [#title] => Access log message ID [#key] => 1 ) [sid] => Array ( [#title] => Session ID ) [title] => Array ( [#title] => Pagina titel ) [path] => Array ( [#title] => System path ) [url] => Array ( [#title] => Page URL ) [hostname] => Array ( [#title] => Hostnaam ) [uid] => Array ( [#type] => int [#title] => User ID [#reference_entity] => user ) [page_generation_time] => Array ( [#type] => int [#title] => Page generation time [#db_field_unaliased] => timer ) [date_accessed] => Array ( [#type] => datetime [#title] => Date accessed [#db_field_unaliased] => timestamp ) [#id] => access_log_message ) ...FIELD FIELD... Array ( [#type] => entity [#title] => Verhaal [#db_default_table] => node [#xml_plural] => stories [#csv_plural] => stories [#db_process_generate_id] => Array ( [importexportapi_node_process_generate_id] => Array ( ) ) [nid] => Array ( [#type] => int [#title] => Node ID [#key] => 1 [#db_uses_sequences] => 1 [#abstract_parent] => node ) [vid] => Array ( [#type] => int [#title] => Revision ID [#reference_entity] => story [#reference_field] => Array ( [0] => revisions [1] => vid ) [#key_component] => 1 [#abstract_parent] => node ) [type] => Array ( [#title] => Type [#abstract_parent] => node [#db_filter] => Array ( [values] => Array ( [0] => story ) ) ) [title] => Array ( [#title] => Titel [#alt_key_for] => nid [#abstract_parent] => node ) [uid] => Array ( [#type] => int [#title] => User ID [#reference_entity] => user [#abstract_parent] => node ) [status] => Array ( [#type] => int [#title] => Gepubliceerd [#default_value] => 1 [#abstract_parent] => node ) [created] => Array ( [#type] => datetime [#title] => Creation date [#abstract_parent] => node ) [changed] => Array ( [#type] => datetime [#title] => Last changed date [#abstract_parent] => node ) [promote] => Array ( [#type] => int [#title] => Aangeraden op de voorpagina [#abstract_parent] => node ) [moderate] => Array ( [#type] => int [#title] => In de moderatiewachtrij [#abstract_parent] => node ) [sticky] => Array ( [#type] => int [#title] => Vastgeplakt bovenaan de lijst [#abstract_parent] => node ) [revisions] => Array ( [#type] => array [#title] => Revisions [#db_default_table] => node_revisions [#xml_plural] => revisions [#xml_mapping] => revision [#csv_plural] => story-revisions [nid] => Array ( [#type] => int [#title] => Node ID [#reference_entity] => story [#abstract_parent] => node ) [vid] => Array ( [#type] => int [#title] => Revision ID [#key] => 1 [#db_uses_sequences] => 1 [#abstract_parent] => node ) [uid] => Array ( [#type] => int [#title] => User ID [#reference_entity] => user [#abstract_parent] => node ) [title_revision] => Array ( [#title] => Titel [#alt_key_for] => vid [#db_field_unaliased] => title [#abstract_parent] => node ) [body] => Array ( [#title] => Berichttekst [#abstract_parent] => node ) [teaser] => Array ( [#title] => Teaser [#abstract_parent] => node ) [log] => Array ( [#title] => Logbericht [#abstract_parent] => node ) [timestamp] => Array ( [#type] => datetime [#title] => Last changed date [#abstract_parent] => node ) [format] => Array ( [#type] => int [#title] => Input format ID [#reference_entity] => input_format [#abstract_parent] => node ) [#abstract_parent] => node ) [comment] => Array ( [#type] => int [#title] => Comment setting [#abstract_parent] => node ) [comment_statistics_nid] => Array ( [#type] => int [#title] => Node ID [#reference_entity] => story [#reference_field] => Array ( [0] => nid ) [#db_table] => node_comment_statistics [#db_field_unaliased] => nid [#key_component] => 1 [#csv_hidden] => 1 [#abstract_parent] => node ) [last_comment_timestamp] => Array ( [#type] => datetime [#title] => Last comment date [#db_table] => node_comment_statistics [#abstract_parent] => node ) [last_comment_name] => Array ( [#title] => Last comment username [#default_value] => [#db_table] => node_comment_statistics [#reference_entity] => user [#reference_field] => Array ( [0] => uid ) [#alt_key_ignore] => 1 [#abstract_parent] => node ) [last_comment_uid] => Array ( [#type] => int [#title] => Last comment user ID [#db_table] => node_comment_statistics [#reference_entity] => user [#reference_field] => Array ( [0] => uid ) [#abstract_parent] => node ) [comment_count] => Array ( [#type] => int [#title] => Comment count [#db_table] => node_comment_statistics [#abstract_parent] => node ) [counter_nid] => Array ( [#type] => int [#title] => Node ID [#reference_entity] => story [#reference_field] => Array ( [0] => nid ) [#db_table] => node_counter [#db_field_unaliased] => nid [#key_component] => 1 [#csv_hidden] => 1 [#abstract_parent] => node ) [totalcount] => Array ( [#type] => int [#title] => Total page views [#db_table] => node_counter [#abstract_parent] => node ) [daycount] => Array ( [#type] => int [#title] => Today's page views [#db_table] => node_counter [#abstract_parent] => node ) [viewed] => Array ( [#type] => int [#title] => Last viewed date [#db_table] => node_counter [#db_field_unaliased] => timestamp [#abstract_parent] => node ) [taxonomy] => Array ( [#type] => array [#title] => Taxonomy terms [#db_default_table] => term_node [#xml_plural] => taxonomy-terms [#csv_plural] => taxonomy-terms [#xml_mapping] => term [nid] => Array ( [#type] => int [#title] => Node ID [#reference_entity] => story [#key_component] => 1 [#abstract_parent] => node ) [tid] => Array ( [#type] => int [#title] => Term ID [#reference_entity] => term [#key_component] => 1 [#abstract_parent] => node ) [#abstract_parent] => node ) [#id] => story ) ...FIELD FIELD... Array ( [#type] => entity [#title] => Vocabulary [#xml_plural] => vocabularies [#csv_plural] => vocabularies [vid] => Array ( [#type] => int [#title] => Vocabulary ID [#key] => 1 [#db_uses_sequences] => 1 ) [vocabulary_name] => Array ( [#title] => Woordenschat naam [#alt_key_for] => vid [#db_field_unaliased] => name ) [description] => Array ( [#title] => Beschrijving ) [help] => Array ( [#title] => Helptekst ) [relations] => Array ( [#type] => int [#title] => Gerelateerde termen ) [hierarchy] => Array ( [#type] => int [#title] => Hiërarchie ) [multiple] => Array ( [#type] => int [#title] => Meervoudige selectie ) [required] => Array ( [#type] => int [#title] => Vereist ) [tags] => Array ( [#type] => int [#title] => Vrij labelen (free tagging) ) [module] => Array ( [#title] => Responsible module ) [weight] => Array ( [#type] => int [#title] => Gewicht ) [types] => Array ( [#type] => array [#title] => Node types [#db_default_table] => vocabulary_node_types [#xml_plural] => types [#csv_plural] => vocabulary-types [#xml_mapping] => type [vid] => Array ( [#type] => int [#title] => Vocabulary ID [#reference_entity] => vocabulary [#key_component] => 1 ) [type_name] => Array ( [#title] => Node type [#db_field_unaliased] => type [#key_component] => 1 ) ) [#id] => vocabulary ) ...FIELD FIELD... Array ( [#type] => entity [#title] => Term [#db_default_table] => term_data [#xml_plural] => terms [#csv_plural] => terms [#process] => Array ( [_importexportapi_taxonomy_process_term_parents] => Array ( ) ) [tid] => Array ( [#type] => int [#title] => Term ID [#key] => 1 [#db_uses_sequences] => 1 ) [vid] => Array ( [#type] => int [#title] => Vocabulary ID [#reference_entity] => vocabulary ) [term_name] => Array ( [#title] => Naam term [#alt_key_for] => tid [#db_field_unaliased] => name ) [description] => Array ( [#title] => Beschrijving ) [weight] => Array ( [#type] => int [#title] => Gewicht ) [parents] => Array ( [#type] => array [#title] => Ouders [#db_default_table] => term_hierarchy [#xml_plural] => parents [#csv_plural] => term-parents [#xml_mapping] => parent-instance [tid] => Array ( [#type] => int [#title] => Term ID [#reference_entity] => term [#key_component] => 1 ) [parent] => Array ( [#type] => int [#title] => Parent term ID [#reference_entity] => term [#reference_field] => Array ( [0] => tid ) [#key_component] => 1 [#reference_delta] => 1 [#reference_parent] => ) ) [relations] => Array ( [#type] => array [#title] => Gerelateerde termen [#db_default_table] => term_relation [#xml_plural] => relations [#csv_plural] => term-relations [#xml_mapping] => relation-instance [tid] => Array ( [#type] => int [#title] => Term ID [#db_field_unaliased] => tid1 [#reference_entity] => term ) [relation] => Array ( [#type] => int [#title] => Related term ID [#reference_entity] => term [#reference_field] => Array ( [0] => tid ) [#db_field_unaliased] => tid2 [#reference_delta] => 1 [#reference_parent] => ) ) [synonyms] => Array ( [#type] => array [#title] => Synoniemen [#db_default_table] => term_synonym [#xml_plural] => synonyms [#csv_plural] => term-synonyms [#xml_mapping] => synonym [tid] => Array ( [#type] => int [#title] => Term ID [#reference_entity] => term ) [synonym_name] => Array ( [#title] => Synonym name [#reference_entity] => term [#reference_field] => Array ( [0] => term_name ) [#alt_key_ignore] => 1 [#db_field_unaliased] => name [#reference_parent] => ) ) [#id] => term ) ...FIELD

greetings,
Martijn

summit’s picture

Hi Doug,

THis is what the variable $FIELD says with using

	 $field += $default_values; (White screen with only print of variable:

FIELD... Array ( [#type] => entity [#title] => Invoerformaat [#db_default_table] => filter_formats [#xml_plural] => input-formats [#csv_plural] => input-formats [format] => Array ( [#type] => int [#title] => Input format ID [#key] => 1 ) [format_name] => Array ( [#title] => Input format name [#alt_key_for] => format [#db_field_unaliased] => name ) [role] => Array ( [#type] => freeform [#title] => Rollen [#db_field_unaliased] => roles [#xml_plural] => roles [#csv_plural] => roles ) [cache] => Array ( [#type] => int [#title] => Cacheable ) [#id] => input_format ) ...FIELD FIELD... Array ( [#type] => int [#title] => Input format ID [#key] => 1 [#parents] => Array ( [0] => input_format ) [#id] => format ) ...FIELD FIELD... Array ( [#title] => Input format name [#alt_key_for] => format [#db_field_unaliased] => name [#parents] => Array ( [0] => input_format ) [#id] => format_name [#type] => string ) ...FIELD FIELD... Array ( [#type] => freeform [#title] => Rollen [#db_field_unaliased] => roles [#xml_plural] => roles [#csv_plural] => roles [#parents] => Array ( [0] => input_format ) [#id] => role ) ...FIELD FIELD... Array ( [#type] => int [#title] => Cacheable [#parents] => Array ( [0] => input_format ) [#id] => cache ) ...FIELD FIELD... Array ( [#type] => entity [#title] => Filter [#db_default_table] => filters [#xml_plural] => filters [#csv_plural] => filters [format] => Array ( [#type] => int [#title] => Input format ID [#key_component] => 1 [#reference_entity] => input_format ) [module] => Array ( [#title] => Responsible module [#key_component] => 1 ) [delta] => Array ( [#type] => int [#title] => Delta [#key_component] => 1 ) [weight] => Array ( [#type] => int [#title] => Gewicht ) [#id] => filter ) ...FIELD FIELD... Array ( [#type] => int [#title] => Input format ID [#key_component] => 1 [#reference_entity] => input_format [#parents] => Array ( [0] => filter ) [#reference_field] => Array ( [0] => format ) [#reference_delta] => 0 [#id] => format ) ...FIELD FIELD... Array ( [#title] => Responsible module [#key_component] => 1 [#parents] => Array ( [0] => filter ) [#id] => module [#type] => string ) ...FIELD FIELD... Array ( [#type] => int [#title] => Delta [#key_component] => 1 [#parents] => Array ( [0] => filter ) [#id] => delta ) ...FIELD FIELD... Array ( [#type] => int [#title] => Gewicht [#parents] => Array ( [0] => filter ) [#id] => weight ) ...FIELD FIELD... #ntity...FIELD 

greetings,
Martijn

summit’s picture

And this is with also the $default_values

FIELD... Array ( [#type] => entity [#title] => Invoerformaat [#db_default_table] => filter_formats [#xml_plural] => input-formats [#csv_plural] => input-formats [format] => Array ( [#type] => int [#title] => Input format ID [#key] => 1 ) [format_name] => Array ( [#title] => Input format name [#alt_key_for] => format [#db_field_unaliased] => name ) [role] => Array ( [#type] => freeform [#title] => Rollen [#db_field_unaliased] => roles [#xml_plural] => roles [#csv_plural] => roles ) [cache] => Array ( [#type] => int [#title] => Cacheable ) [#id] => input_format ) ...FIELD DEFAULT... Array ( ) ...DEFAULT FIELD... Array ( [#type] => int [#title] => Input format ID [#key] => 1 [#parents] => Array ( [0] => input_format ) [#id] => format ) ...FIELD DEFAULT... Array ( [#required] => [#default_value] => 0 ) ...DEFAULT FIELD... Array ( [#title] => Input format name [#alt_key_for] => format [#db_field_unaliased] => name [#parents] => Array ( [0] => input_format ) [#id] => format_name [#type] => string ) ...FIELD DEFAULT... Array ( [#required] => [#default_value] => ) ...DEFAULT FIELD... Array ( [#type] => freeform [#title] => Rollen [#db_field_unaliased] => roles [#xml_plural] => roles [#csv_plural] => roles [#parents] => Array ( [0] => input_format ) [#id] => role ) ...FIELD DEFAULT... Array ( [#required] => [#default_value] => Array ( ) [#process] => Array ( [importexportapi_process_freeform] => Array ( ) ) ) ...DEFAULT FIELD... Array ( [#type] => int [#title] => Cacheable [#parents] => Array ( [0] => input_format ) [#id] => cache ) ...FIELD DEFAULT... Array ( [#required] => [#default_value] => 0 ) ...DEFAULT FIELD... Array ( [#type] => entity [#title] => Filter [#db_default_table] => filters [#xml_plural] => filters [#csv_plural] => filters [format] => Array ( [#type] => int [#title] => Input format ID [#key_component] => 1 [#reference_entity] => input_format ) [module] => Array ( [#title] => Responsible module [#key_component] => 1 ) [delta] => Array ( [#type] => int [#title] => Delta [#key_component] => 1 ) [weight] => Array ( [#type] => int [#title] => Gewicht ) [#id] => filter ) ...FIELD DEFAULT... Array ( ) ...DEFAULT FIELD... Array ( [#type] => int [#title] => Input format ID [#key_component] => 1 [#reference_entity] => input_format [#parents] => Array ( [0] => filter ) [#reference_field] => Array ( [0] => format ) [#reference_delta] => 0 [#id] => format ) ...FIELD DEFAULT... Array ( [#required] => [#default_value] => 0 ) ...DEFAULT FIELD... Array ( [#title] => Responsible module [#key_component] => 1 [#parents] => Array ( [0] => filter ) [#id] => module [#type] => string ) ...FIELD DEFAULT... Array ( [#required] => [#default_value] => ) ...DEFAULT FIELD... Array ( [#type] => int [#title] => Delta [#key_component] => 1 [#parents] => Array ( [0] => filter ) [#id] => delta ) ...FIELD DEFAULT... Array ( [#required] => [#default_value] => 0 ) ...DEFAULT FIELD... Array ( [#type] => int [#title] => Gewicht [#parents] => Array ( [0] => filter ) [#id] => weight ) ...FIELD DEFAULT... Array ( [#required] => [#default_value] => 0 ) ...DEFAULT FIELD... #ntity...FIELD DEFAULT... Array ( ) ...DEFAULT 

Happy eastern!

greetings,
Martijn

summit’s picture

It's not about the "+="
I changed it to:

$field = $field + $default_values;

And the same blank screen with the variabels stated is shown.
greetings,
Martijn

douggreen’s picture

I'm not sure from your posting if its $field or $default_values that is set to '#ntity', but this is the problem. Both of these variables should be arrays. This is obviously a problem with the code. I'd do one of two things at this point:

  1. A quick work-around is to add something like if (!is_array($field)) { return; } (again, I'm not sure if it's $field or $default_values that is bad, but I'd use a check to ignore the bad data.
  2. Dig deeper and figure out why it is not an array. You can put print statements before and after code to see which line is setting it to #ntity. Rather than printing the entire array, which will be difficult to read, you might add something like print is_array($field) ? "ARRAY" : $field;
summit’s picture

Hi Doug,

The workaround is working for the first screen, thanks!
But when I want to do the NEXT [field mapping]. Blank screen again.
I will investigate what the errorlog from APACHE will say tomorrow.
Thanks for your support so far.

greetings,
Martijn

summit’s picture

Hi,

I got the second screen now also. It was maybe array-printing what took to long.
With erasing these PRINT lines the module works till the second screen.
But now I first want to export say node-title..and I only get one result, while my testsite has many nodes in it..
I will look into it after eastern!
thanks for your help and if this is a familiar problem please respond.
greetings,
Martijn

flippen’s picture

Hi,

I also got the blanc screen using Drupal 5.1 and PHP 5.1.2. The error.log is complaining about some memory size in "includes/theme.inc" and "includes/install.inc" but I don't know if it's related with the blanc screen.

douggreen’s picture

The memory error is not a problem with importexportapi, but a common problem with the relationship between Drupal and php and web hosting companies. You need to allocate more memory to php. Increase your memory_limit in php.ini.

summit’s picture

Status: Active » Closed (fixed)

Solved, but very difficult to add a term.
I can't get the importfile to work ok, but the module is working I guess..thanks Doug for your support.

Greetings,
Martijn