PDA

View Full Version : Interworx Login


int
03-03-2005, 07:21 PM
I don't know if you guys provide this or if this is something I need to ask a PHP coder to do, but i want users to be able to login to their Interworx CP straight from my website. I guess I need a PHP script that logs them in directly when they click the Submit button on my site.

Is that something I can get here? Is there a standard PHP script that you guys provide for this type of thing? =)

CMI
03-03-2005, 08:00 PM
You *should* be able to go to the SiteWorx login page, copy the form out of the source, and put it on another page.

int
03-11-2005, 12:37 AM
You *should* be able to go to the SiteWorx login page, copy the form out of the source, and put it on another page.

Thanks for the suggestion =)
I tried that finally, but to no avail.

It's the login.php file that i'm looking for - the form is fine. I don't need to copy that. It's getting it to login that i'm having trouble with.

Do any admins have any ideas?

IWorx-Chris
03-13-2005, 12:27 AM
int,

Just copy the HTML from the normal login form but change the <form> tag to the full URL of your SiteWorx page including the port. Something like this:


<form method="post" action="https://123.123.123.123:2443/siteworx/login.php">

... form elements here

</form>


Chris

int
03-13-2005, 04:48 AM
Chris,

That worked SO beautifully! =)

Thanks so much for the reply! I've been at that for awhile - you made my night!

int,

Just copy the HTML from the normal login form but change the <form> tag to the full URL of your SiteWorx page including the port. Something like this:


<form method="post" action="https://123.123.123.123:2443/siteworx/login.php">

... form elements here

</form>


Chris