From: James E. F. <jf...@ac...> - 2002-02-25 05:49:07
|
On Sun, 24 Feb 2002, Don Sligar wrote: > You are correct! It is not in the table. I browsed for the phpESP.sql > file in phpmyadmin and created the tables. I just looked at the sql > file and it does not have the rating in it either. Did I have an old > sql? If so what can I add to the table to get the correct data? Or do > I have to start all over? Nope. You had a current SQL file (did you read to the bottom?), but phpmyadmin must be broken ... it missed the last 4 lines of the script. Just execute the following four statements by hand: INSERT INTO question_type VALUES ('8','Rate (scale 1..5)','Y','response_rank'); INSERT INTO question_type VALUES ('9','Date','N','response_date'); INSERT INTO question_type VALUES ('10','Numeric','N','response_text'); INSERT INTO question_type VALUES ('99','Page Break','N',''); -James On Sun, 24 Feb 2002, Don Sligar wrote: > I am still trying to figure out how to use the rating option for > questions. Does anyone know? Please excuse this second post > request, but I have noted someone else asking too. I have tried to > update manage.php and phpESP.ini from the CVS and could not get it > to show up on the drop down menu in administration when creating > a survey. The demo shows it works fine. Please help. |