Hi all. I have created a multisite from a single site. This is from my settings.php:
$db_prefix = array( 'default' => '', 'comments' => 'myprefix_shared.', 'content_field_email' => 'myprefix_shared.', 'content_field_fax' => 'myprefix_shared.', 'content_field_phone' => 'myprefix_shared.', 'content_group' => 'myprefix_shared.', 'content_group_fields' => 'myprefix_shared.', 'content_node_field' => 'myprefix_shared.', 'content_node_field_instance' => 'myprefix_shared.', 'content_type_pastaio' => 'myprefix_shared.', 'files' => 'myprefix_shared.', 'i18n_blocks' => 'myprefix_shared.', 'i18n_strings' => 'myprefix_shared.', 'i18n_variable' => 'myprefix_shared.', 'languages' => 'myprefix_shared.', 'locales_source' => 'myprefix_shared.', 'locales_target' => 'myprefix_shared.', 'node' => 'myprefix_shared.', 'node_access' => 'myprefix_shared.', 'node_comment_statistics' => 'myprefix_shared.', 'node_counter' => 'myprefix_shared.', 'node_revisions' => 'myprefix_shared.', 'node_type' => 'myprefix_shared.', 'myprefix_agents' => 'myprefix_shared.', 'myprefix_competitors' => 'myprefix_shared.', 'myprefix_machines' => 'myprefix_shared.', 'myprefix_machines_taxonomy' => 'myprefix_shared.', 'myprefix_node' => 'myprefix_shared.', 'myprefix_pasta' => 'myprefix_shared.', 'myprefix_pasta_taxonomy' => 'myprefix_shared.', 'myprefix_support' => 'myprefix_shared.', 'term_data' => 'myprefix_shared.', 'term_hierarchy' => 'myprefix_shared.', 'term_node' => 'myprefix_shared.', 'term_relation' => 'myprefix_shared.', 'term_synonym' => 'myprefix_shared.', 'url_alias' => 'myprefix_shared.', 'views_display' => 'myprefix_shared.', 'views_object_cache' => 'myprefix_shared.', 'views_view' => 'myprefix_shared.', 'vocabulary' => 'myprefix_shared.', 'vocabulary_node_types' => 'myprefix_shared.' );
In my content type I have a content type builded using CCK. And my problem is that I can not see anything of these type of nodes. Nothing in view and nothing in edit mode. But I have a view based on this content type and it works: i can see the cck fields.
Any help is welcome.
M.