Chive Error

Hi

I have downloaded chive the web root and logged in using mysql root account as usual.

all the databases are shown to the right and I can click on any database to view the tables inside, but when I click on a table the following error appears.


Internal Server Error

The requested schema does not exist.

[font="Verdana"][size="2"]An internal error occurred while the Web server was processing your request. Please contact the webmaster to report this problem.[/size][/font]

[font="Verdana"][size="2"]Thank you.[/size][/font]

[color="gray"][font="Verdana"][size="1"]2013-05-22 07:49:19[/size][/font][/color]


this error occur with all the tables in all the databases,

I am able to log in to mysql server via command line and phpMyAdmin without any problems.

can anybody help?

Thanks,

[left]If you use Firefox , edit file "protected/components/helpers/Html.php"

51 else

52 {

53 $target = "#" . $target;

54 }

55

56 $htmloptions[‘href’] = $target;

57 $htmloptions[‘onmouseup’] = ‘if(event.button == 0) { chive.goto("’ . $target . ‘"); return false; }’;

58 }

59

60 return CHtml::tag(‘a’, $htmloptions, $content, $close);

add 1 line between 57 to 58 like this

51 else

52 {

53 $target = "#" . $target;

54 }

55

56 $htmloptions[‘href’] = $target;

57 $htmloptions[‘onmouseup’] = ‘if(event.button == 0) { chive.goto("’ . $target . ‘"); return false; }’;

58 $htmloptions[‘onclick’] = ‘return false;’; // <<— add line

59 }

60

61 return CHtml::tag(‘a’, $htmloptions, $content, $close);

I success this

[/left]

Thanks very much. That’s solved the problem, [size=2]but may I ask how did you figure it out? [/size]

Good to hear.

On click "A tag" ,two events occur, "Onclick" and "Onmouseup" .

Then browser send two request to server,and second request is allways bad.

I do’nt know same probrem huppen on other browsers.

Sorry poor english.