-
Notifications
You must be signed in to change notification settings - Fork 674
Installation: Local Computer
Chris Moyer edited this page Dec 9, 2013
·
9 revisions
ThinkUp works most smoothly on a public web server, but it’s best not to develop on or expose alpha code to the public web.
The Twitter plugin requires a public URL to OAuth-authorize your ThinkUp installation. If you’re installing ThinkUp on a local computer that’s behind a firewall, your ThinkUp callback URL won’t work because it’s not reachable on a public web server.
A page on your public web server can redirect Twitter’s OAuth token to your local computer. If you’ve got a local ThinkUp installation, save this one page on your public web server and edit it to redirect to your local instance.
<?php header( 'Location: http://localhost/thinkup/account/?p=twitter&oauth_token='.$_GET['oauth_token'].'#manage_plugin' ) ; // http://localhost/thinkup is the URL to access thinkup on your local server. ?>