Interworx Login

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? =)

You should be able to go to the SiteWorx login page, copy the form out of the source, and put it on another page.

Will give that a try, thanks =)

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?

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

Chris,

That worked SO beautifully! =)

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