Gabor wrote: > Suppose you own two sites: A and B. Both have public areas and both have > secure (password protected) areas. You want users to be able to access > (without any authentication) some of the secure pages of site B if they > navigate there from some of the secure pages of site A. Otherwise users > have to be authenticated by site B to see the secure pages there. > > > * Is this possible to do? If yes, what is the simplest solution I > could use (please don't forget that I am a novice!)? > * If not, replace the italicized (I hope it shows up that way) words > "some" with "any". Does that make the task doable? > Thanks in advance! > > Gabor
20080716 2223 GMT-6 Since you own both sites this is really a snap! Both sites can access the same database of users. They are already pre-authenticated from site A to site B because they are already in the db. You could just pass session variables back and forth. The easiest thing to do is this: Site A and B both access the same db. If user is registered in Site A then they can also access site B. Wade
