[an error occurred while processing this directive]
[an error occurred while processing this directive]proxy_ajpを使ってapache2経由でeasyrec_otherUsersAlsoViewed()を呼び出すと、 なぜかURLに:-1が入ってしまう。 なので、drawRecommendationListToDiv()を1行書き換えた。
"<li><a href=\"" + items[x].url + "\">"
を
"<li><a href=\"" + items[x].url.replace(/:-1/,"") + "\">"
である。