[Aimmath-developers] port 8080
Brought to you by:
gustav_delius,
npstrick
From: Gustav W D. <gw...@yo...> - 2003-07-17 10:55:38
|
Greg wrote: > ... and it all works fine, except that you will notice that I didn't > want port 8080 (but instead use port 80) which I have configured in > ManualConfig.mpl. However, everytime the admin.html and index.html > page are regenerated (by adding a subject) the form action is set > to a URL with :8080 inserted. I can edit it correctly by hand, but > where is this coming from? It's apparently generated by aim/Zone.mpl > using Config['ServletURL'], but I've checked this via Console.mpl > ... it is the URL given above. So what's going on? This is strange. If you have set Config['TomcatPort'] = "80" in your ManualConfig.mpl then there is really no way the 8080 could enter. The only place where 8080 is explicitly in the code is in AutoConf.mpl in the following line: setconfig('TomcatPort' , "8080"): But the way setconfig works is that if TomcatPort is already assigned a value then it is not overwritten. So it should still be 80. The only idea I have is that perhaps you first used your installation on port 8080 and later changed to 80. It is then possible that the 8080 has found its way into some of the automatically generated files in the directory web-inf/root. Could you search all files in there for an occurence of 8080? Gustav |