wapircgw 0.1.7 review

Download
by rbytes.net on

wapircgw helps you easily connect to irc networks using your wap browser on your mobile phone

License: GPL (GNU General Public License)
File size: 82K
Developer: Nonoo
0 stars award from rbytes.net

wapircgw helps you easily connect to irc networks using your wap browser on your mobile phone. You just need a Linux box with internet connection to act as a gateway between your mobile phone and the irc network. You can join to multiple channels and talk to others privately like when you use a real irc client.

wapircgw consists of 2 cooperative pieces: wapircphp and wapircd.

wapircd is the daemon which handles connections to irc networks and requests from your mobile phone. wapircphp generates wml webpages that you can view with your mobile phone. So you'll need a web-server application with PHP and MySQL support (ex. Apache). MySQL support is needed because of the user administration and settings storage.

Example: when a user logs in with his/her mobile phone, wapircphp communicates with wapircd, requesting a new irc connection to be made. So wapircd connects to the given irc server and joins the channels which the user gave in his/her settings. When the user logs out (or does nothing for a few minutes), wapircd closes the connection with the irc server.

Installation:

Don't forget to edit wapircd password in wapircd/src/config.h!

Then run ./configure and then make. PLEASE REMEMBER: you don't have to be root to run wapircd. It's more secure to run it as a single user. You'll find the wapircd binary in the src dir after running make, but if you're lazy you can run make install as root and it'll place the binary in /usr/local/bin. Run wapircd -h for further options. You don't have to have write access in the directory you start wapircd, because everything is stored in memory.

After starting wapircd, copy the contents of the wapircphp directory to your website. Add the following table to your MySQL database:

CREATE TABLE `wapirc` (
`user` varchar(20) default NULL,
`pass` varchar(20) default NULL,
`ircserver` varchar(50) default NULL,
`ircport` varchar(5) default '6667',
`ircuser` varchar(50) NOT NULL default 'wapirc',
`ircnick` varchar(50) default NULL,
`ircpass` varchar(20) default NULL,
`autojoin` varchar(255) default NULL,
`loglines` tinyint(3) unsigned NOT NULL default '20',
`loglineslong` tinyint(3) unsigned NOT NULL default '100',
`allowrawirccmds` tinyint(1) NOT NULL default '0'
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

What's New in This Release:
Host resolving did not work under Solaris; this has been fixed.

wapircgw 0.1.7 search tags