1
Answer

Incorrect Redirection while clicking the Articles link in Members Profile.

Hi,

In Members profile side panel, if click the Article link it is not switching to Articles tab in that Profile page instead of this it is redirecting to latest articles page.



If We click Articles then it should switch the Articles Tab of the Current Member.



But it is redirecting to Latest Articles Page. This is not only for Articles but for all the link in the Contribution panel.



Thanks.

Answers (1)

0
Photo of Sokak
NA 43 2k 18y
Have you attached the Visual Studio debugger to the service to follow exactly what is going on?

Typically anything that falls into "Works as an application, fails or behaves unexpectedly as a service" boils down to security permissions. After you set up the service, try configuring it to run using your own login credentials (as a test) and see what it does. Essentially that should make your service behave the same as an Exe. The other key difference is the executing path, as a service it doesn't execute from the location you install the assemblies, if memory serves me it runs in Windows/System32. (XP) I believe it finds .config files ok, but if you use GetExecutingAssembly or relative paths you may be hitting snags.