WareSeeker Search Software

users


Sponsored Links
Collapse All
Software Name Software Type Category Price
1

MySQL Users


script CGI Perl Free
View Detail
Download MySQL UsersDownload MySQL Users
This utility attempts to take the irritation out of creating new MySQL users by providing a simple, web-based interface that does most of the tedious work for you. It can also be used to add additional privileges to existing MySQL users.
2

users counter


script PHP Free
View Detail
Download users counterDownload users counter
Include this script in the PHP pages of your web site in order to display the number of people that are viewing them. Before using this script remember to create a MySQL database for it (if you dont already have one), and to assign that name to $DataBaseName. Actually, remember to assign a value to all the initialization variables at the beginning of the script. USERS.PHP); ?> will keep count of the users accessing that page. The users() function will display all the users tracked by the script. users_on_this_page() will only display the ones on the current page.
3

Redirecting Users


script PHP Free
View Detail
Download Redirecting UsersDownload Redirecting Users
Ever wanted to redirect users using PHP? Using HTTP headers? Conditionally? Peter explains all this and more, in order to help improve your site and coding.
4

umbrella users


script PHP Free
View Detail
Download umbrella usersDownload umbrella users
User Authentication with built in mailing list. This program contains an easy installer, admin area, members area with members options such as profiles, mailing list password change. PHP, MYSQL required.
5

ezContents Users Guide


script PHP Free
View Detail
Download ezContents Users GuideDownload ezContents Users Guide
English and german Users Guide for ezContents CMS. Tutorial on how to build and maintain a website with ezContents step-by-step.
6

Users online script


script PHP Free
View Detail
Download Users online scriptDownload Users online script
This script adds the users ip to a database and tells it where they are. If 1 people is online, it will say: 1 user online if there are 2 or more users online, it will say: (users) users online Thats it!! The script comes with a handy installer.
7

Online Users Limiter


script PHP Free
View Detail
Download Online Users LimiterDownload Online Users Limiter
Online Users Limiter Features: 1. Limit access to webpage. 2. Shows the statistics of users currently accessing the webpage. (when limit was reached) 3. Email notification when limit was reached.
8

Network Users 1.22


windows Network Tools->Miscellaneous Network Tools Free
View Detail
Download Network Users 1.22Download Network Users 1.22
29 MB
Network Users description
Displays a list of users logged on to a specified Windows system. Network Users is a simple command line tool designed to display a list of users logged on to a specified Windows system.

Syntax:
NetUsers.exe [computername ...] [/history] [/local] [/verbose]

9

Users & Groups 1.2.2


mac Utilities->System Utilities $20
View Detail
Download Users & Groups 1.2.2Download Users & Groups 1.2.2
7.8 MB
Users & Groups is an very interesting application and PreferencePane that allows more control over Mac OS X User and Group accounts than Apples built-in Accounts PreferencePane.

You can create, and delete User and Group accounts, change a Users short name, real name, uid, password, home directory and group membership.


10

PHP Users online Script


script PHP $9.99 Additional Info: Buy it for under $10 or spend hours writing it yourself!
View Detail
Download PHP Users online ScriptDownload PHP Users online Script
This Users Online script shows how many users are on your website, you can change the time in which the MySQL Database Table is refreshed so you can count users online per minute, hour, week etc! This script is more user friendly and comes with a setup.php installation file which will set the script up for you.
11

GlyFy - Users 1


windows Home Shell Desktop->Misc Icons $39.95
View Detail
Download GlyFy - Users 1Download GlyFy - Users 1
1.95MB
Icons of different user types and users related stuff. Includes: Astronaut, Boss, Cowboy, Office workers, Scientist, Technician, King of RnR, Santa Claus, Detective, and others. Formats: BMP 256, BMP 32bit + alpha, PNG + alpha. Image strips and single files.
12

Users Online Hosting


script PHP Free
View Detail
Download Users Online HostingDownload Users Online Hosting
This is a great way to make a webmaster tools website. Especially when people can not have server side scripting, and they want to know how many users are online. Now you can help them out!
13

vBulletin Users module 3.0


windows Network Internet->Other $49.95
View Detail
Download vBulletin Users module 3.0Download vBulletin Users module 3.0
16KB
vBulletin Users module allows to share users table between Esvon Classifieds and popular vBulletin community software. Login/logout procedures are shared between Esvon Classifieds and vBulletin.
vBulletin and Esvon Classifieds must be installed into the same database (with different table prefixes for example).
Registration link from vBulletin should point to classifieds registration page so when user registers in classifieds new account will be created in vBulletin for him automatically. Original vBulletin registration is not allowed.
For shared login to work Esvon Classifieds and vBulletin must be installed at the same domain. After classifieds login user will be logged in vBulletin automatically.
14

osCommerce/osCPro Users Manual


script PHP $19.95
View Detail
Download osCommerce/osCPro Users ManualDownload osCommerce/osCPro Users Manual
Brand New The brand new osCPro Users manual is out!! This manual can be used for both the standard versions of Oscommerce and the osCPro free and exv series! Tired of asking questions and not getting answers? You can spend days and days searching to find this information on the web Every configuration, every function, advanced editing, coding secrets, template tricks, image configuration, invoicing, advanced administration, downloads, even processing orders..... It is all here and explained in detail in an easy to follow, outlined and indexed pdf. You simply cannot find this information any where else then osCPro, get the jump on your competition now before they corner your market.
15

Apache Users 1.0


linux Internet->HTTP Free
View Detail
Download Apache Users 1.0Download Apache Users 1.0
0.023 MB
Apache Users project is an Apache username enumerator, via /~username requests. This script uses a list of common system names like root, admin etc ...

You should manually check the issue to establish the http return code, ie: 403 as this is needed for the command line. No native SSL support.

USAGE apache.pl -h 1.2.3.4 -l names -p 80 (No SSL Support) -e 403 (http code)

Sample script:

use IO::Socket;
use Getopt::Std;
getopt ("h: l: p: e: ");
use vars qw( $opt_h $opt_l $opt_p $opt_e );


if ((! $opt_h) || (! $opt_l ) || (! $opt_p ) || (! $opt_e)) {
print "nUSAGE: apache.pl -h 1.2.3.4 -l names -p 80 (No SSL Support) -e 403 (http code)nn ";

exit 1;
};

$host = $opt_h;
$list = $opt_l;
$port = $opt_p;
$num = $opt_e;

open (LIST, "$list") or die "Unable to open $list ....$!";

&connect;
exit 0;


sub connect {

foreach $name (< LIST >) {


$connection = IO::Socket::INET->new (
Proto => "tcp",
PeerAddr => "$host",
PeerPort => "$port",
) or die "Cant CONNECT to $host on the Port specified.n";

$connection -> autoflush;

chomp $name;
print $connection "GET /~$name HTTP/1.0rnrn";


$results = < $connection >;
if ( $results =~/($num)/g ) {
print "$name exists on $hostn";
};

}

close ($connection);

sleep 1;
};
close LIST;


16

noteNOW 2.0 200 Users


windows Network Internet->Other $150.00
View Detail
Download noteNOW 2.0 200 UsersDownload noteNOW 2.0 200 Users
3.56MB
noteNOW?is a real time messaging system specifically designed for internal company networks. noteNOW combines the core features of email with the real time presence of instant messaging into a single, simple, lightweight system. Features: real-time messages, message retrieval, real time user status, integtrated instant messaging, comprehensive
17

Multiple Users Info 1.0.2


mac Utilities->System Utilities Free
View Detail
Download Multiple Users Info 1.0.2Download Multiple Users Info 1.0.2
25 KB
"Multiple Users Info" is a simple Scripting Additions that will provide basic info about the Muliple Users feature of Mac OS 9.0. An AppleScript, or any application capable of accessing Scripting Additions, can determine if Multiple Users is active and if so determine the type of account currently logged in (if any) and also the name of the account.
Multiple Users Info is an AppleScript that allows you to access the Multiple Users control panel.



18

vBulletin Users module for Esvon Classifieds


script PHP €69.00
View Detail
Download vBulletin Users module for Esvon ClassifiedsDownload vBulletin Users module for Esvon Classifieds
vBulletin Users module allows to share users table between Esvon Classifieds and popular vBulletin community software. User has to register only once in Esvon Classifieds and account is created in vBulletin for him. Users can login with the same login as the classifieds when they are using the vBulletin forum. Login/logout procedures are shared between Esvon Classifieds and vBulletin.
19

Debian Desktop Users Guide 0.02


linux Miscellaneous->Documentation Free
View Detail
Download Debian Desktop Users Guide 0.02Download Debian Desktop Users Guide 0.02
MB
Debian Desktop Users Guide project is a guide which is targeted toward new Debian users.

It brings up-to-date and effective documentation to new Debian users.

This document is based on the Progeny users guide.

This guide is planned to be released in conjunction with Sarge.

Whats New in This Release:

· sections 6.2.1 and 6.2.2 have been rewritten.


20

Sending Mail to Multiple Users


script PHP Free
View Detail
Download Sending Mail to Multiple UsersDownload Sending Mail to Multiple Users
This tutorial explains how to send email to multiple users whose email addressed stored in a Mysql database.

My Software


You have not saved any software. Click "Save" next to each software to save it to your software basket


Related Search