Projects tagged ‘client’, ‘http’, and ‘php’


Jump to tag:

Projects tagged ‘client’, ‘http’, and ‘php’

Filtered by Project Tags client http php

Refine results Project Tags mysql (2) java (2) file_sharing (2) p2p (2) download (2) sharing (2) seed (1) downloads (1) peer (1) lirc (1) instant (1) lcd (1)

[5 total ]

3 Users

PeerTracker is an Open Sourced, Simple, Efficient and Fast BitTorrent Tracker With the increasing number of public trackers shutting down, it only makes sense for the average user to setup one of ... [More] their own. To accomplish this, PeerTracker has been designed from the ground up to be easily deployed and operated from the typical shared hosting environment. The focus of this project is entirely centered on maximizing speed, minimizing http server and database resource consumption while at the same time providing full scale tracking capabilities. PeerTracker does not concern itself with the indexing or uploading of torrents, nor with share ratio monitoring or any other form of user management. [Less]
Created 6 months ago.

3 Users

Web based DC++ NMDC protocol capable client written in PHP using AJAX techniques.
Created over 2 years ago.

0 Users

Simple Android Instant Messaging ApplicationSimple because it is not a kind of application for end users. It is for people who want to learn somethings about Android or test some applications on ... [More] Android also in order to be honest , this software was prepared to be admitted to PhD at NEU :), however I didn't succeed :( so this software may be considered as useless for me, but it may be useful for some beginners and I am willing to share all information I have for free so you can contact me by email below Then let me describe the software, this is a simple IM application runs on Android, application makes http request to a server, implemented in php and mysql, to authenticate, to register and to get the other friends' status and data, then it communicates with other applications in other devices by socket interface. FeaturesUser registration User authentication Adding a new friend by username Approving a friend Messaging with a friend in list (Of course) Shows online and offline users Runs a background service in order to get messages even when the application is closed. Uses notification area when a new message is received. Quiting the application(kills the background service) How to make it runThere is a folder whose name is Server, copy all files under Server folder to a folder in your web server directory, for instance android_im that can be accessed by http://192.168.7.5/android_im/ (192.168.7.5 is the IP address of computer which runs apache and mysql, use local network IP address instead of using localhost or 127.0.0.1) Open the index.php and enter database connectivity parameters such as host, username, password etc. Create the tables in mysql database CREATE TABLE `friends` ( `Id` int(10) unsigned NOT NULL auto_increment, `providerId` int(10) unsigned NOT NULL default '0', `requestId` int(10) unsigned NOT NULL default '0', `status` binary(1) NOT NULL default '0', PRIMARY KEY (`Id`), UNIQUE KEY `Index_3` (`providerId`,`requestId`), KEY `Index_2` (`providerId`,`requestId`,`status`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='providerId is the Id of the users who wish to be friend with'; CREATE TABLE `users` ( `Id` int(10) unsigned NOT NULL auto_increment, `username` varchar(45) NOT NULL default '', `password` varchar(32) NOT NULL default '', `email` varchar(45) NOT NULL default '', `date` datetime NOT NULL default '0000-00-00 00:00:00', `status` tinyint(3) unsigned NOT NULL default '0', `authenticationTime` datetime NOT NULL default '0000-00-00 00:00:00', `userKey` varchar(32) NOT NULL default '', `IP` varchar(45) NOT NULL default '', `port` int(10) unsigned NOT NULL default '0', PRIMARY KEY (`Id`), UNIQUE KEY `Index_2` (`username`), KEY `Index_3` (`authenticationTime`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8;set AUTHENTICATION_SERVER_ADDRESS in socketOperator, it must be the address where server folder are located, for our example it is http://localhost/android_im/ Then run your application in Eclipse with ADT plugin. it can be learned how to install Android SDK and ADT plugin Every application opens a random port(more than 10000) to listen, port forwarding is needed to communicate applications. It can be learned what the port numbers are that applications open in "users" table. if it is wanted to run applications on same computer, remove the slashes at the line of //IP=10.0.2.2 in sendmessage function in imService . Demo VideoYou can download and watch video(26 MB) from Downloads section. Screenshots Contactif you have any question, feel free to contact me by email below. I will be glad if I can help you AuthorAhmet Oguz Mermerkaya (mekya) - ahmetmermerkaya@gmail.com [Less]
Created 7 months ago.

0 Users

A collection of multipurpose PHP and other code. Jump to the object of your interest with navigation links: Subprojects' outlineANTLR PHP TargetJob crawlerLambda templatesDetached ... [More] QuercusDownloadUsage Subprojects' outline Subproject Description Status ANTLR PHP Target An implementation of ANTLR PHP Target Merged with original project jobcrawler in python A trivial set of scripts for crawling job websites and creating tables for further job "spam" automation Beta (Rss parsing is working; CSV files are generated) Lambda Templates Possiblly the most trivial templates engine ever Stable Detached Quercus A command line ad hoc for Quercus Project Beta ANTLR PHP TargetTo follow ANTLR PHP go to http://code.google.com/p/antlrphpruntime/ Old version is here http://phpandallthat.googlecode.com/svn/trunk/antlr Job crawlerTo access jobcrawler in python code do svn checkout http://phpandallthat.googlecode.com/svn/trunk/jobcrawler Lambda templatesTo access Lambda Templates code do svn checkout http://phpandallthat.googlecode.com/svn/trunk/lambdatemplates Detached QuercusDetached Quercus is a command line ad hoc for Quercus Project - standalone Open Source version of PHP implementation in Java http://quercus.caucho.com/ (available under GNU Public License (GPL)). DownloadBeforehand, you may want to download the latest version of Quercus on the project website. Usually, they provide only .src.jar and .war files. Archive with all libs (including recompiled .jar for Quercus 3.2.1) and single .jar for Detached Quercus are available in download. (Please, see provided quercus-License.txt for Quercus distribution license). You can download the latest source from corresponding SVN folder inside the current project. Code is provided under the New BSD License. (It's not much though). UsageYou can launch cli with querc-cli.bat (or querc-cli.sh) querc-cli.bat test.phpAssuming you have a proper classpath you can do java org.phpandallthat.PhpCli file.php as well. [Less]
Created 9 months ago.

0 Users

HTTP client for use on the Linksys NSLU2 (Slug), with a Pertellian LCD display and a LIRC compatible remote control.
Created about 1 year ago.