Skip to content

karbassi/twitalytic

 
 

Repository files navigation

Twitalytic

Twitter data crawler, replies archiver, and statistics generator.

WARNING: Pre-alpha code, PROCEED AT YOUR OWN RISK!

This is not production code. This is a pre-alpha web application. The intended audience is server administrators with experience installing and troubleshooting PHP/MySQL hosted web applications. While Twitaltyic uses OAuth to access Twitter, the webapp’s login is not as secure as it should be. Right now this code is for experimentation and tinkering only. Do not run on a public, production server. You have been warned.

SYSTEM REQUIREMENTS

INSTALL

In future versions, this will get easier.

Set up database

  • Create a database and select it, i.e., CREATE DATABASE twitalytic
  • Build tables with build-db.sql

Register your app with Twitter (for OAuth support)

  • Log into Twitter and register your Twitalytic instance. Set the callback URL to http://yourserver.com/path-to-twitalytic-webapp/account/oauth.php. Write down the items labeled “Consumer key” and “Consumer secret.”

Configure the app

  • Shared libraries: Rename twitalytic/common/config.sample.inc.php to config.inc.php. Add your database credentials, file and webapp paths, and the key/secret you got from Twitter in the previous step.
  • Crawler: Rename twitalytic/crawler/config.crawler.sample.inc.php to config.crawler.inc.php and set include path to the absolute location of twitalytic/common
  • Webapp: Rename twitalytic/webapp/config.webapp.sample.inc.php to config.webapp.inc.php and set include path to the absolute location of twitalytic/common
  • Webserver (optional): Set httpd.conf DocumentRoot to twitalytic/webapp/

RUN

Visit the web application on your server, register/login, and set up your Twitter accounts.

Then, run the crawler to load your Twitter data:

$ php crawler/crawl.php

To view what’s going on with the crawler, use this command:

$ tail -f crawler/logs/crawler.log

Cron the crawler’s run command to go at least once an hour.

See also this helpful HOWTO on installing Twitalytic on Dreamhost.

About

Twitter data crawler, replies archiver, and statistics generator

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • PHP 99.8%
  • JavaScript 0.2%