It was the Bitcointalk forum that inspired us to create Bitcointalksearch.org - Bitcointalk is an excellent site that should be the default page for anybody dealing in cryptocurrency, since it is a virtual gold-mine of data. However, our experience and user feedback led us create our site; Bitcointalk's search is slow, and difficult to get the results you need, because you need to log in first to find anything useful - furthermore, there are rate limiters for their search functionality.
The aim of our project is to create a faster website that yields more results and faster without having to create an account and eliminate the need to log in - your personal data, therefore, will never be in jeopardy since we are not asking for any of your data and you don't need to provide them to use our site with all of its capabilities.
We created this website with the sole purpose of users being able to search quickly and efficiently in the field of cryptocurrency so they will have access to the latest and most accurate information and thereby assisting the crypto-community at large.
sudo -i
aptitude install screen vim ssh postfix dovecot-imapd git-core build-essential apache2 apache2-mpm-prefork php5 mysql-server mysql-client zip unzip php5-mcrypt php5-gmp php5-cli php5-mysql libgtk2.0-dev libssl-dev libdb4.7-dev libdb4.7++-dev libboost-all-dev
deb http://us.archive.ubuntu.com/ubuntu/ natty-proposed main restricted universe multiverse
# deb-src http://us.archive.ubuntu.com/ubuntu/ natty-proposed main restricted universe multiverse
aptitude update; aptitude safe-upgrade
reboot
sudo -i
adduser --gecos "Intersango Web App User" intersango
adduser --gecos "Bitcoin Wallet Manager" bitcoin
adduser --gecos "Intersango Support" support
sudo -i
mysqladmin create intersango_devel -p
Enter password: MySQL_ROOT_PASSWORD
mysql -u root -p
Enter password: MySQL_ROOT_PASSWORD
mysql> GRANT ALL PRIVILEGES ON `intersango_devel`.* TO 'intersango_user'@'localhost' IDENTIFIED BY 'PassW0rd';
mysql> FLUSH PRIVILEGES;
mysql> exit
logout
su - intersango
mkdir ~/src ; cd ~/src
git clone git://gitorious.org/intersango/intersango.git
vim intersango/htdocs/config.php
$abspath = '/home/intersango/src/intersango';
mysql -u intersango_user -p intersango_devel < intersango/DATABASE
Enter password: PassW0rd
vim intersango/cron/process_orders.sh
#! /bin/sh
cd /home/intersango/src/intersango/cron
php5 process_orders.php
chmod +x intersango/cron/process_orders.sh
vim intersango/cron/verify_deposits.sh
#! /bin/sh
cd /home/intersango/src/intersango/cron
php5 verify_deposits.php
chmod +x intersango/cron/verify_deposits.sh
vim intersango/cron/verify_withdrawals_bitcoin.sh
#! /bin/sh
cd /home/intersango/src/intersango/cron
php5 verify_withdrawals_bitcoin.php
chmod +x intersango/cron/verify_withdrawals_bitcoin.sh
crontab -e
# Begin tasks for: Intersango
#*/2 * * * * /home/intersango/src/intersango/cron/process_orders.sh >/dev/null 2>&1
#*/1 * * * * /home/intersango/src/intersango/cron/verify_deposits.sh >/dev/null 2>&1
#*/3 * * * * /home/intersango/src/intersango/cron/verify_withdrawals_bitcoin.sh >/dev/null 2>&1
# End tasks for: Intersango
logout
sudo vim /var/db.intersango.inc
mysql_connect('localhost', 'intersango_user', 'PassW0rd') or die(mysql_error());
mysql_select_db('intersango_devel') or die(mysql_error());
function connect_bitcoin()
{
disable_errors_if_not_me();
$bitcoin = new jsonRPCClient('http://intersango:[email protected]:8332/');
enable_errors();
return $bitcoin;
}
?>
su - bitcoin
git clone git://gitorious.org/intersango/bitcoind.git
cd bitcoind/src
make -f Makefile bitcoind
mkdir ~/.bitcoin ; vim ~/.bitcoin/bitcoin.conf
rpcuser=intersango
rpcpassword=BitPass2011
/home/bitcoin/bitcoind/src/bitcoind
/home/bitcoin/bitcoind/src/bitcoind help
/home/bitcoin/bitcoind/src/bitcoind getinfo
/home/bitcoin/bitcoind/src/bitcoind getconnectioncount
/home/bitcoin/bitcoind/src/bitcoind listaccounts
{
"" : "0"
}
/home/bitcoin/bitcoind/src/bitcoind getaccountaddress ""
1B25DjRb6AQApEkLo7UtNLpKKqGUD1ar3L
logout
sudo -i
cd /var
rm -fr www
ln -s /home/intersango/src/intersango/htdocs www
service apache2 restart
touch /var/tmp/error-reports.log
chmod 666 /var/tmp/error-reports.log
http://bitcoinexample.com/
/home/intersango/src/intersango/cron/process_orders.sh
/home/intersango/src/intersango/cron/verify_deposits.sh
/home/intersango/src/intersango/cron/verify_withdrawals_bitcoin.sh
crontab -e
# Begin tasks for: Intersango
*/2 * * * * /home/intersango/src/intersango/cron/process_orders.sh >/dev/null 2>&1
*/1 * * * * /home/intersango/src/intersango/cron/verify_deposits.sh >/dev/null 2>&1
*/3 * * * * /home/intersango/src/intersango/cron/verify_withdrawals_bitcoin.sh >/dev/null 2>&1
# End tasks for: Intersango
vim /etc/ssh/sshd_config
PermitRootLogin yes
PermitRootLogin no
service ssh restart
sudo aptitude install bind9
vim /etc/bind/named.conf.local
zone "bitcoinexample.com" {
type master;
file "bitcoinexample.com.db";
};
vim /var/cache/bind/bitcoinexample.com.db
;
; BIND data file for BitcoinExample
;
$TTL 604800
@ IN SOA bitcoinexample.com. administrative.bitcoinexample.com. (
2011080801 ; Serial
604800 ; Refresh
86400 ; Retry
2419200 ; Expire
604800 ) ; Negative Cache TTL
;
@ IN NS intersango.bitcoinexample.com.
@ IN MX 0 mail.bitcoinexample.com.
@ IN A 200.1.2.3
mail IN A 200.1.2.3
intersango IN A 200.1.2.3