以下是解决方法的源网址:
http://hackbase.com/hacker/program/200410238065.htm按照那样做后还是不行,这需要注意什么吗?

解决方案 »

  1.   

    请更新你的php到5.0,和mysql到4.3以上
      

  2.   

    为什么要将PHP4更新到PHP5呢?我现在的运行环境为:
    Apache v1.3.29 (Win32)
    PHP v4.3.4 (Win32)
    MySQL v4.0.17(Win32)难道说我的配置不行吗?激活不了链接表的额外特性吗?
      

  3.   

    很多人用的PHP版本也不高呀,大家都怎么解决这个问题的呢?
    未激活的方法怎么不管用呢?
      

  4.   

    1、检查库phomyadmin的7张表是否都建立了
    2、核查config.inc.php中相关参数是否都正确填入了,正确的值就在行尾的注释中,复制一下就可以了
      

  5.   

    网上有文章:http://hackbase.com/hacker/program/200410238065.htm________________
    1、在这篇文章中,红色部分是什么?是拿它来替换掉它上面的与它相似的代码吗?
    2、我新建一个MySQL数据库phpmyadmin,然后我也没建数据表,只是将phpmyadin的scripts文件夹下的create_tables.sql导入了,这样做没事吧
      

  6.   

    网上有文章:http://hackbase.com/hacker/program/200410238065.htm________________
    1、在这篇文章中,红色部分是什么?是拿它来替换掉它上面的与它相似的代码吗?
    2、我新建一个MySQL数据库phpmyadmin,然后我也没建数据表,只是将phpmyadin的scripts文件夹下的create_tables.sql导入了,这样做没事吧
      

  7.   

    是的$cfg['Servers'][$i]['pmadb']         = 'phpmyadmin';          // Database used for Relation, Book and PDF Features
                                                        // (see scripts/create_tables.sql)
                                                        //   - leave blank for no support
                                                        //     DEFAULT: 'phpmyadmin'
    $cfg['Servers'][$i]['booktable'] = 'pma_book';          // Book table
                                                        //   - leave blank for no book support
                                                        //     DEFAULT: 'pma_book'
    $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'
      

  8.   

    第三部分中是将config.inc.php中的如下部分:
    $cfg['Servers'][$i]['pmadb'] = ''; // 'phpmyadmin' - see scripts/create_tables.sql 
    $cfg['Servers'][$i]['booktable'] = ''; // 'pma_book' 
    $cfg['Servers'][$i]['relation'] = ''; // 'pma_relation' 
    $cfg['Servers'][$i]['table_info'] = ''; // 'pma_table_info' 
    $cfg['Servers'][$i]['table_coords'] = ''; // 'pma_table_coords' 
    $cfg['Servers'][$i]['pdf_pages'] = ''; // 'pma_pdf_pages' 
    $cfg['Servers'][$i]['column_info'] = ''; // 'pma_column_info' 
    $cfg['Servers'][$i]['history'] = ''; // 'pma_history'替换成以下代码吗?:$cfg['Servers'][$i]['pmadb'] = 'phpmyadmin'; // 'phpmyadmin' - see scripts/create_tables.sql 
    $cfg['Servers'][$i]['booktable'] = 'pma_book'; // 'pma_book' 
    $cfg['Servers'][$i]['relation'] = 'pma_relation'; // 'pma_relation' 
    $cfg['Servers'][$i]['table_info'] = 'pma_table_info'; // 'pma_table_info' 
    $cfg['Servers'][$i]['table_coords'] = 'pma_table_coords'; // 'pma_table_coords' 
    $cfg['Servers'][$i]['pdf_pages'] = 'pma_pdf_pages'; // 'pma_pdf_pages' 
    $cfg['Servers'][$i]['column_info'] = 'pma_column_info'; // 'pma_column_info' 
    $cfg['Servers'][$i]['history'] = 'pma_history'; // 'pma_history'
    注:上面的代码1有两处呢,需要都替换成下面的吗?
      

  9.   

    注:上面的代码1在config.inc.php中有两处呢,需要都替换成下面的代码吗?
      

  10.   

    大哥,能不能讲得详细一些呢?具体在第三步中改哪些地方,有什么注意事项吗?怎么我按照如下网址http://hackbase.com/hacker/program/200410238065.htm
    改了后不起作用呢?具体怎么去做呢?大哥,帮小弟呀,再次感谢!
      

  11.   

    第一步不需要做;
    第二步开始(其实这里是phpmyadmin的库,而不是phpmyadin库)
    点SQL就会出现可以编辑SQL语句的地方,在输入框下面的或 文本文件的位置 :选择scripts/create_tables.sql这个文件,会自动建立一个库及表个;
    第三步打开config.inc.php,把那些红色的替换成之前的就可以了。
      

  12.   

    我用的PHP环境是  Apache+PHP+MySQL的集成软件,版本为:
    Apache v1.3.29 (Win32)
    PHP v4.3.4 (Win32)
    MySQL v4.0.17(Win32)不知为什么不可以,就用上面那篇文章,别人都行,为什么我配置完后不管用呢?
    第三步中是将上面的代码替换成红色的代码吗?替换完怎么不成功呢?
      

  13.   

    检查库phomyadmin的7张表是否都建立了
      

  14.   

    To:xuzuning(唠叨)
    七张表我已经查看了,都建立正确了,但不知为什么还是不行第三步中是将上面的代码替换成红色的代码吗?
      

  15.   

    To:xuzuning(唠叨)
    七张表我已经查看了,都建立正确了,但不知为什么还是不行第三步中是将上面的代码替换成红色的代码吗?
      

  16.   

    我用的是三个集成的 
    Apache v1.3.29 (Win32)
    PHP v4.3.4 (Win32)
    MySQL v4.0.17(Win32)不知集成的与自己配置的在解决"链接表的额外特性尚未激活"的问题时有什么不同吗?集成的防碍激活的解决吗?