Ver Mensaje Individual
  #2 (permalink)  
Antiguo 13/03/2005, 12:57
jvalpino
 
Fecha de Ingreso: marzo-2004
Ubicación: monterrey nl mexico
Mensajes: 8
Antigüedad: 20 años, 1 mes
Puntos: 1
vinculacion de tablas phpmyadmin

Helheim.
Hola soy jvalpino, tengo el mismo problema y no puedo avanzar.
me sugirieron esto que te envio, no funciono por alguna razon, va,.... pruebalo y porfavor comentame como resulta:
-----------------------------------------
Se debe a que no están creadas la base de datos y tablas que controlan los vínculos relacionales entre tablas. Para crearlas hay que seguir dos pasos:

- Desde el menú de PhpMyadmin presionar el 2º icono por la
izquierda para carga un archivo de datos, y se seleccionar la 2ª pestaña (Importar archivos). Se debe localizar y ejecutar el siguiente archivo:
C:\AppServ\www\phpMyAdmin\scripts\createtables.sql

- Hay que configurar el servidor editando el archivo
C:\AppServ\www\phpMyAdmin\config.inc.php
y sustituir las líneas 92-96 por estas:

cfg['Servers'][$i]['pmadb'] = 'phpmyadmin'; // Database used for Relation, Bookmark and PDF Features
// (see scripts/create_tables.sql)
// - leave blank for no support
// DEFAULT: 'phpmyadmin'
$cfg['Servers'][$i]['bookmarktable'] = 'pma_bookmark'; // Bookmark table
// - leave blank for no bookmark support
// DEFAULT: 'pma_bookmark'
$cfg['Servers'][$i]['relation'] = 'pma_relation'; // table to describe the relation between links (see doc)
// - leave blank for no relation-links support
// DEFAULT: 'pma_relation'
$cfg['Servers'][$i]['table_info'] = 'pma_table_info'; // table to describe the display fields
// - leave blank for no display fields support
// DEFAULT: 'pma_table_info'
$cfg['Servers'][$i]['table_coords'] = 'pma_table_coords'; // table to describe the tables position for the PDF schema
// - leave blank for no PDF schema support
// DEFAULT: 'pma_table_coords'
$cfg['Servers'][$i]['pdf_pages'] = 'pma_pdf_pages'; // table to describe pages of relationpdf
// - leave blank if you don't want to use this
// DEFAULT: 'pma_pdf_pages'
$cfg['Servers'][$i]['column_info'] = 'pma_column_info'; // table to store column information
// - leave blank for no column comments/mime types
// DEFAULT: 'pma_column_info'
$cfg['Servers'][$i]['history'] = 'pma_history'; // table to store SQL history
// - leave blank for no SQL query history
// DEFAULT: 'pma_history'