facebook login page user
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 8812
Address Book Continued 1.0
Address Book Continued provides a multi-user AJAX address book Web application. more>>
Address Book Continued provides a multi-user AJAX address book Web application.
It also makes use of AJAX, which means that page reloads only happen on login/logout; the rest of the operations is handled asynchronously in the background. Its well usable, even over slow connections.
You can even install ABC on your desktop PC and configure it so that it doesnt require login for connections coming from the local computer.
<<lessIt also makes use of AJAX, which means that page reloads only happen on login/logout; the rest of the operations is handled asynchronously in the background. Its well usable, even over slow connections.
You can even install ABC on your desktop PC and configure it so that it doesnt require login for connections coming from the local computer.
Download (0.021MB)
Added: 2007-02-06 License: GPL (GNU General Public License) Price:
990 downloads
OS X Login Screen 1.2
OS X Login Screen is a very accurate OS X login Screen Mimic for Kubuntu Linux. more>>
OS X Login Screen is a very accurate OS X login Screen Mimic for Kubuntu Linux.
<<less Download (0.31MB)
Added: 2007-03-16 License: GPL (GNU General Public License) Price:
981 downloads
NewsCloud Facebook Application 0.26
NewsCloud Facebook application allows Facebook members to read top stories and breaking news. more>>
NewsCloud Facebook application allows Facebook members to read top stories and breaking news and share them with their friends from within Facebook.
The NewsCloud Facebook application also allows you to watch Daily Show and Colbert Report clips inside Facebook and share them with other Facebook members. Facebook is a social network with a new API for applications. NewsCloud is an open source collaborative social news network.
As the documentation to Facebooks API is still incomplete, the source code to the NewsCloud Facebook application may be instructive to other Facebook developers.
Enhancements:
- Added support for multi-friend selector with thumbnail images
- Added SQL table structures
<<lessThe NewsCloud Facebook application also allows you to watch Daily Show and Colbert Report clips inside Facebook and share them with other Facebook members. Facebook is a social network with a new API for applications. NewsCloud is an open source collaborative social news network.
As the documentation to Facebooks API is still incomplete, the source code to the NewsCloud Facebook application may be instructive to other Facebook developers.
Enhancements:
- Added support for multi-friend selector with thumbnail images
- Added SQL table structures
Download (0.019MB)
Added: 2007-06-18 License: GPL (GNU General Public License) Price:
869 downloads
WWW::Facebook::API 0.3.3
WWW::Facebook::API is a Facebook API implementation. more>>
WWW::Facebook::API is a Facebook API implementation.
SYNOPSIS
use WWW::Facebook::API;
my $client = WWW::Facebook::API->new(
desktop => 1,
throw_errors => 1,
parse => 1,
);
print "Enter your public API key: ";
chomp( my $val = < STDIN > );
$client->api_key($val);
print "Enter your API secret: ";
chomp($val = < STDIN > );
$client->secret($val);
print "Enter your e-mail address: ";
chomp(my $email = < STDIN > );
$client->secret($val);
print "Enter your password: ";
chomp(my $pass = < STDIN > );
my $token = $client->auth->login( email => $email, pass => $pass );
$client->auth->get_session( $token );
use Data::Dumper;
my $friends_perl = $client->friends->get;
print Dumper $friends_perl;
my $notifications_perl = $client->notifications->get;
print Dumper $notifications_perl;
# Current users quotes
my $quotes_perl = $client->users->get_info(
uids => $friends_perl,
fields => [quotes]
);
print Dumper $quotes_perl;
$client->auth->logout;
A Perl implementation of the Facebook API, working off of the canonical Java and PHP implementations. By default it uses JSON::Any to parse the response returned by Facebooks server. There is an option to return the raw response in either XML or JSON (See the parse method below).
<<lessSYNOPSIS
use WWW::Facebook::API;
my $client = WWW::Facebook::API->new(
desktop => 1,
throw_errors => 1,
parse => 1,
);
print "Enter your public API key: ";
chomp( my $val = < STDIN > );
$client->api_key($val);
print "Enter your API secret: ";
chomp($val = < STDIN > );
$client->secret($val);
print "Enter your e-mail address: ";
chomp(my $email = < STDIN > );
$client->secret($val);
print "Enter your password: ";
chomp(my $pass = < STDIN > );
my $token = $client->auth->login( email => $email, pass => $pass );
$client->auth->get_session( $token );
use Data::Dumper;
my $friends_perl = $client->friends->get;
print Dumper $friends_perl;
my $notifications_perl = $client->notifications->get;
print Dumper $notifications_perl;
# Current users quotes
my $quotes_perl = $client->users->get_info(
uids => $friends_perl,
fields => [quotes]
);
print Dumper $quotes_perl;
$client->auth->logout;
A Perl implementation of the Facebook API, working off of the canonical Java and PHP implementations. By default it uses JSON::Any to parse the response returned by Facebooks server. There is an option to return the raw response in either XML or JSON (See the parse method below).
Download (0.022MB)
Added: 2007-06-14 License: Perl Artistic License Price:
868 downloads
WWW::Facebook::API::REST::Client::Login 0.0.3
WWW::Facebook::API::REST::Client::Login is a Perl module to ask for user login info. more>>
WWW::Facebook::API::REST::Client::Login is a Perl module to ask for user login info.
SYNOPSIS
use WWW::Facebook::API::REST::Client::Login;
This uses the WWW::Mechanize object to login a user to the Facebook. Useful for quick testing, by replacing WWW::Facebook::API::REST::Client::Auth in Client.pm with this module since this module subclasses that one.
SUBROUTINES/METHODS
base
The WWW::Facebook::API::REST::Client::Base object to use to make calls to the REST server
login_uri
The login uri for having the user login. If you want, there are internal methods available (using WWW::Mechanize) to login the user automatically so they dont have to open a browser window to do so.
login
Given a token, logs in a user using _login_form.
INTERNAL METHODS AND FUNCTIONS
_login_form
Generates the actual form submission for the login process. Ask for the user name and password of a person from STDIN. Their username and password is not masked presently, and it is not stored (the latter of which is a BIG no-no).
<<lessSYNOPSIS
use WWW::Facebook::API::REST::Client::Login;
This uses the WWW::Mechanize object to login a user to the Facebook. Useful for quick testing, by replacing WWW::Facebook::API::REST::Client::Auth in Client.pm with this module since this module subclasses that one.
SUBROUTINES/METHODS
base
The WWW::Facebook::API::REST::Client::Base object to use to make calls to the REST server
login_uri
The login uri for having the user login. If you want, there are internal methods available (using WWW::Mechanize) to login the user automatically so they dont have to open a browser window to do so.
login
Given a token, logs in a user using _login_form.
INTERNAL METHODS AND FUNCTIONS
_login_form
Generates the actual form submission for the login process. Ask for the user name and password of a person from STDIN. Their username and password is not masked presently, and it is not stored (the latter of which is a BIG no-no).
Download (0.010MB)
Added: 2007-01-24 License: Perl Artistic License Price:
1010 downloads
CkFormLogin 1.0
CkFormLogin is a plug-in for the Nagios network monitoring system that makes it more useful in the context of secured Web sites. more>>
CkFormLogin is a plug-in for the Nagios network monitoring system that makes it more useful in the context of secured Web sites (with login forms) and access management/single sign-on protected environments.
Originally developed to monitor Web applications that require authenticated access, it works by simulating an actual user login to verify each and every step in the process.
CkFormLogin can be used to continuously verify the "end-user" functionality of secured Web sites, detect outages in commercial access management products or externalized security plug-ins, and quickly verify security system stability after large configuration changes.
Main features:
- Continuously verify the "end-user" functionality of commercial access management products like Oracle COREid Access Manager, CA eTrust Siteminder, and Sun Access Manager
- Detect outages in secure websites caused by externalized security components or integration issues
- Quickly and easily verify system stability after large configuration changes
- Track uptime and availability for your critical access management integrations
- Immediately notify support personnel when a problem occurs
Enhancements:
- Initial release includes persistent/session cookie handling for complex login scenarios, automatic multi-step redirect handling, login page content validation, target page content validation, and optional verification of post-authentication target URLs.
<<lessOriginally developed to monitor Web applications that require authenticated access, it works by simulating an actual user login to verify each and every step in the process.
CkFormLogin can be used to continuously verify the "end-user" functionality of secured Web sites, detect outages in commercial access management products or externalized security plug-ins, and quickly verify security system stability after large configuration changes.
Main features:
- Continuously verify the "end-user" functionality of commercial access management products like Oracle COREid Access Manager, CA eTrust Siteminder, and Sun Access Manager
- Detect outages in secure websites caused by externalized security components or integration issues
- Quickly and easily verify system stability after large configuration changes
- Track uptime and availability for your critical access management integrations
- Immediately notify support personnel when a problem occurs
Enhancements:
- Initial release includes persistent/session cookie handling for complex login scenarios, automatic multi-step redirect handling, login page content validation, target page content validation, and optional verification of post-authentication target URLs.
Download (0.010MB)
Added: 2006-09-13 License: GPL (GNU General Public License) Price:
1136 downloads
DCE::Login 0.21
DCE::Login is a Perl extension for interfacing to the DCE login API. more>>
DCE::Login is a Perl extension for interfacing to the DCE login API.
SYNOPSIS
use DCE::Login;
my($l, $status) = DCE::Login->get_current_context;
my $pwent = $l->get_pwent;
Perl extension for interfacing to the DCE login API.
<<lessSYNOPSIS
use DCE::Login;
my($l, $status) = DCE::Login->get_current_context;
my $pwent = $l->get_pwent;
Perl extension for interfacing to the DCE login API.
Download (0.035MB)
Added: 2007-04-16 License: Perl Artistic License Price:
921 downloads
AT Media Page 0.1.14
AT Media Page provides a simple and easy to use Plone Page which can contain ATImages. more>>
AT Media Page provides a simple and easy to use Plone Page which can contain ATImages.
<<less Download (0.019MB)
Added: 2007-05-27 License: GPL (GNU General Public License) Price:
881 downloads
Auth MemCookie 1.0
Auth MemCookie is an Apache v2 authentification and authorization modules are based on cookie authentification mecanism. more>>
Auth MemCookie is an Apache v2 authentification and authorization modules are based on "cookie" authentification mecanism.
The module dont make authentification by it self, but verify if authentification "the cookie" are valid for each url protected by the module. The module validate also if the "authentificated user" have authorisation to acces url.
Authentification are made externaly by an authentification form page and all authentification information nessary to the module a stored in memcached indentified by the cookie value "authentification session id" by this login page.
How it Works
Phase 1 : The login Form
Authentification are made by a login formular page.
This login page must authenticate the user with any authenticate source (ldap, /etc/password, file, database....) accessible to langage of the page (php, perl, java... an ldap login page sample in php are in samples directory).
Then must set cookie that contain only a key the "authentification unique id" of the "authentification session".
The login page must store authorisation and user information of the authenticated user in memcached identified by the cookie key "authentification unique id".
The login page can be developted in any langage you want, but must be capable to use memcached (they must have memcache client api for us)
Phase 2 : The Apache v2 Module
After the user are logged, the apache 2 module check on each protected page by apache ACL the presence of the "cookie".
if the "cookie" exist, try to get session in memcached with the "cookie" value if not found return "HTTP_UNAUTHORIZED" page.
if session exist in memcached verify if acl match user session information if not match return "HTTP_FORBIDDEN" page.
<<lessThe module dont make authentification by it self, but verify if authentification "the cookie" are valid for each url protected by the module. The module validate also if the "authentificated user" have authorisation to acces url.
Authentification are made externaly by an authentification form page and all authentification information nessary to the module a stored in memcached indentified by the cookie value "authentification session id" by this login page.
How it Works
Phase 1 : The login Form
Authentification are made by a login formular page.
This login page must authenticate the user with any authenticate source (ldap, /etc/password, file, database....) accessible to langage of the page (php, perl, java... an ldap login page sample in php are in samples directory).
Then must set cookie that contain only a key the "authentification unique id" of the "authentification session".
The login page must store authorisation and user information of the authenticated user in memcached identified by the cookie key "authentification unique id".
The login page can be developted in any langage you want, but must be capable to use memcached (they must have memcache client api for us)
Phase 2 : The Apache v2 Module
After the user are logged, the apache 2 module check on each protected page by apache ACL the presence of the "cookie".
if the "cookie" exist, try to get session in memcached with the "cookie" value if not found return "HTTP_UNAUTHORIZED" page.
if session exist in memcached verify if acl match user session information if not match return "HTTP_FORBIDDEN" page.
Download (0.012MB)
Added: 2006-03-15 License: The Apache License 2.0 Price:
1318 downloads
Secure Login 0.7.2
Secure Login provides a login extension similar to Operas Wand login. more>>
Secure Login provides a login extension similar to Operas Wand login.
It uses the built-in password manager, but deactivates the prefilling of login forms.
Instead, you are now able to login with one click or a keyboard shortcut (ALT+N).
Just add the Secure Login toolbar button to your toolbar, or use the provided statusbar icon.
If you hover over one of the icons, a tooltip is shown, displaying the login url and the number of available logins (users).
For more than one user or login forms on the current page a selection prompt is displayed on login.
You have the option to play sound notifications (*.wav) for found login data on the current page or when logging in.
All the options can be changed using the Secure Login settings menu or the statusbar icon context menu.
Secure Login provides you with a number of Security enhancements and helps protecting you from phishing:
Disabling the prefilling of login forms prevents malicious JavaScript code to automatically steal your login data.
This is due to the fact that no login data is inserted in form fields before the user clicks on the login button or logs in using the keyboard shortcut.
To make sure you login to the right website, the second level domain of the login url is compared to the second level domain of the current page.
If they do not match a dialog prompt is displayed before login.
SecureLogin provides you with an optional setting to protect you from all JavaScript code during login.
This can prevent cross-site scripting (XSS) attacks without having to deactivate JavaScript completely.
If you enable this option, your login data will never be inserted in any form fields nor will the login form be submitted.
Instead your credentials will be sent to the login page using internal Firefox methods.
Not all login forms will work this way, e.g. not those using JavaScript routines.
Therefore, you can add such websites to an exception list.
<<lessIt uses the built-in password manager, but deactivates the prefilling of login forms.
Instead, you are now able to login with one click or a keyboard shortcut (ALT+N).
Just add the Secure Login toolbar button to your toolbar, or use the provided statusbar icon.
If you hover over one of the icons, a tooltip is shown, displaying the login url and the number of available logins (users).
For more than one user or login forms on the current page a selection prompt is displayed on login.
You have the option to play sound notifications (*.wav) for found login data on the current page or when logging in.
All the options can be changed using the Secure Login settings menu or the statusbar icon context menu.
Secure Login provides you with a number of Security enhancements and helps protecting you from phishing:
Disabling the prefilling of login forms prevents malicious JavaScript code to automatically steal your login data.
This is due to the fact that no login data is inserted in form fields before the user clicks on the login button or logs in using the keyboard shortcut.
To make sure you login to the right website, the second level domain of the login url is compared to the second level domain of the current page.
If they do not match a dialog prompt is displayed before login.
SecureLogin provides you with an optional setting to protect you from all JavaScript code during login.
This can prevent cross-site scripting (XSS) attacks without having to deactivate JavaScript completely.
If you enable this option, your login data will never be inserted in any form fields nor will the login form be submitted.
Instead your credentials will be sent to the login page using internal Firefox methods.
Not all login forms will work this way, e.g. not those using JavaScript routines.
Therefore, you can add such websites to an exception list.
Download (0.059MB)
Added: 2007-04-10 License: MPL (Mozilla Public License) Price:
947 downloads
mainfo.org - Easy Page Edit 1.0
Easily change the content of a web page inside your browser. A firefox extensions that allows you to edit page content and locally save changes.... more>> <<less
Download (3KB)
Added: 2009-04-20 License: Freeware Price: Free
187 downloads
Fast Date Picker 0.02
Fast Date Picker is a calendar that is easy to integrate into Web pages that require the users to select a date. more>>
Fast Date Picker project is a calendar which is easy to integrate into pages that require the users to select a date like on travel sites.
Written in ECMAScript, it responds faster to the users clicks than most of the server-side-based or Java-applet-based date pickers often found on travel sites today.
The calendar can be added to your page any way you want (e.g. as a pop-up window or an expandable
<<lessWritten in ECMAScript, it responds faster to the users clicks than most of the server-side-based or Java-applet-based date pickers often found on travel sites today.
The calendar can be added to your page any way you want (e.g. as a pop-up window or an expandable
), and you can integrate it with any type of form fields for selecting dates.
In order to perform the integration, you do, however, need experience with ECMAScript - so if new Date() means nothing to you, Fast Date Picker probably isnt what youre looking for.
Main features:
- Allows you to set whether Sunday or Monday is the first day of the week.
- Can highligt certain days of the week (of your choice), e.g. Saturday and Sunday.
- Can highlight the current date.
- Can make dates up until a certain point (e.g. today) non-selectable so that users cannot select a date in the past.
- Easy to translate.
- Easy to change to fit the design of your website: Just edit the included style sheet.
- Made in a way that minimizes the risk of variable name clashes in ECMAScript and selector clashes in CSS.
- Uses standard ECMAScript, DOM, and CSS.
Enhancements:
- The problem with incorrect dates in calendars set to start weeks with Monday was fixed.
In order to perform the integration, you do, however, need experience with ECMAScript - so if new Date() means nothing to you, Fast Date Picker probably isnt what youre looking for.
Main features:
- Allows you to set whether Sunday or Monday is the first day of the week.
- Can highligt certain days of the week (of your choice), e.g. Saturday and Sunday.
- Can highlight the current date.
- Can make dates up until a certain point (e.g. today) non-selectable so that users cannot select a date in the past.
- Easy to translate.
- Easy to change to fit the design of your website: Just edit the included style sheet.
- Made in a way that minimizes the risk of variable name clashes in ECMAScript and selector clashes in CSS.
- Uses standard ECMAScript, DOM, and CSS.
Enhancements:
- The problem with incorrect dates in calendars set to start weeks with Monday was fixed.
Download (0.004MB)
Added: 2006-01-10 License: GPL (GNU General Public License) Price:
1390 downloads
Apache2::AuthCookieDBI 2.03
Apache2::AuthCookieDBI is an AuthCookie module backed by a DBI database. more>>
Apache2::AuthCookieDBI is an AuthCookie module backed by a DBI database.
SYNOPSIS
# In httpd.conf or .htaccess
PerlModule Apache2::AuthCookieDBI
PerlSetVar WhatEverPath /
PerlSetVar WhatEverLoginScript /login.pl
# Optional, to share tickets between servers.
PerlSetVar WhatEverDomain .domain.com
# These must be set
PerlSetVar WhatEverDBI_DSN "DBI:mysql:database=test"
PerlSetVar WhatEverDBI_SecretKey "489e5eaad8b3208f9ad8792ef4afca73598ae666b0206a9c92ac877e73ce835c"
# These are optional, the module sets sensible defaults.
PerlSetVar WhatEverDBI_User "nobody"
PerlSetVar WhatEverDBI_Password "password"
PerlSetVar WhatEverDBI_UsersTable "users"
PerlSetVar WhatEverDBI_UserField "user"
PerlSetVar WhatEverDBI_PasswordField "password"
PerlSetVar WhatEverDBI_CryptType "none"
PerlSetVar WhatEverDBI_GroupsTable "groups"
PerlSetVar WhatEverDBI_GroupField "grp"
PerlSetVar WhatEverDBI_GroupUserField "user"
PerlSetVar WhatEverDBI_EncryptionType "none"
PerlSetVar WhatEverDBI_SessionLifetime 00-24-00-00
# Protected by AuthCookieDBI.
< Directory /www/domain.com/authcookiedbi >
AuthType Apache2::AuthCookieDBI
AuthName WhatEver
PerlAuthenHandler Apache2::AuthCookieDBI->authenticate
PerlAuthzHandler Apache2::AuthCookieDBI->authorize
require valid-user
# or you can require users:
require user jacob
# You can optionally require groups.
require group system
< /Directory >
# Login location.
< Files LOGIN >
AuthType Apache2::AuthCookieDBI
AuthName WhatEver
SetHandler perl-script
PerlHandler Apache2::AuthCookieDBI->login
< /Files >
This module is an authentication handler that uses the basic mechanism provided by Apache2::AuthCookie with a DBI database for ticket-based protection. It is based on two tokens being provided, a username and password, which can be any strings (there are no illegal characters for either). The username is used to set the remote user as if Basic Authentication was used.
On an attempt to access a protected location without a valid cookie being provided, the module prints an HTML login form (produced by a CGI or any other handler; this can be a static file if you want to always send people to the same entry page when they log in). This login form has fields for username and password. On submitting it, the username and password are looked up in the DBI database. The supplied password is checked against the password in the database; the password in the database can be plaintext, or a crypt() or md5_hex() checksum of the password. If this succeeds, the user is issued a ticket. This ticket contains the username, an issue time, an expire time, and an MD5 checksum of those and a secret key for the server. It can optionally be encrypted before returning it to the client in the cookie; encryption is only useful for preventing the client from seeing the expire time. If you wish to protect passwords in transport, use an SSL-encrypted connection. The ticket is given in a cookie that the browser stores.
After a login the user is redirected to the location they originally wished to view (or to a fixed page if the login "script" was really a static file).
On this access and any subsequent attempt to access a protected document, the browser returns the ticket to the server. The server unencrypts it if encrypted tickets are enabled, then extracts the username, issue time, expire time and checksum. A new checksum is calculated of the username, issue time, expire time and the secret key again; if it agrees with the checksum that the client supplied, we know that the data has not been tampered with. We next check that the expire time has not passed. If not, the ticket is still good, so we set the username.
Authorization checks then check that any "require valid-user" or "require user jacob" settings are passed. Finally, if a "require group foo" directive was given, the module will look up the username in a groups database and check that the user is a member of one of the groups listed. If all these checks pass, the document requested is displayed.
If a ticket has expired or is otherwise invalid it is cleared in the browser and the login form is shown again.
<<lessSYNOPSIS
# In httpd.conf or .htaccess
PerlModule Apache2::AuthCookieDBI
PerlSetVar WhatEverPath /
PerlSetVar WhatEverLoginScript /login.pl
# Optional, to share tickets between servers.
PerlSetVar WhatEverDomain .domain.com
# These must be set
PerlSetVar WhatEverDBI_DSN "DBI:mysql:database=test"
PerlSetVar WhatEverDBI_SecretKey "489e5eaad8b3208f9ad8792ef4afca73598ae666b0206a9c92ac877e73ce835c"
# These are optional, the module sets sensible defaults.
PerlSetVar WhatEverDBI_User "nobody"
PerlSetVar WhatEverDBI_Password "password"
PerlSetVar WhatEverDBI_UsersTable "users"
PerlSetVar WhatEverDBI_UserField "user"
PerlSetVar WhatEverDBI_PasswordField "password"
PerlSetVar WhatEverDBI_CryptType "none"
PerlSetVar WhatEverDBI_GroupsTable "groups"
PerlSetVar WhatEverDBI_GroupField "grp"
PerlSetVar WhatEverDBI_GroupUserField "user"
PerlSetVar WhatEverDBI_EncryptionType "none"
PerlSetVar WhatEverDBI_SessionLifetime 00-24-00-00
# Protected by AuthCookieDBI.
< Directory /www/domain.com/authcookiedbi >
AuthType Apache2::AuthCookieDBI
AuthName WhatEver
PerlAuthenHandler Apache2::AuthCookieDBI->authenticate
PerlAuthzHandler Apache2::AuthCookieDBI->authorize
require valid-user
# or you can require users:
require user jacob
# You can optionally require groups.
require group system
< /Directory >
# Login location.
< Files LOGIN >
AuthType Apache2::AuthCookieDBI
AuthName WhatEver
SetHandler perl-script
PerlHandler Apache2::AuthCookieDBI->login
< /Files >
This module is an authentication handler that uses the basic mechanism provided by Apache2::AuthCookie with a DBI database for ticket-based protection. It is based on two tokens being provided, a username and password, which can be any strings (there are no illegal characters for either). The username is used to set the remote user as if Basic Authentication was used.
On an attempt to access a protected location without a valid cookie being provided, the module prints an HTML login form (produced by a CGI or any other handler; this can be a static file if you want to always send people to the same entry page when they log in). This login form has fields for username and password. On submitting it, the username and password are looked up in the DBI database. The supplied password is checked against the password in the database; the password in the database can be plaintext, or a crypt() or md5_hex() checksum of the password. If this succeeds, the user is issued a ticket. This ticket contains the username, an issue time, an expire time, and an MD5 checksum of those and a secret key for the server. It can optionally be encrypted before returning it to the client in the cookie; encryption is only useful for preventing the client from seeing the expire time. If you wish to protect passwords in transport, use an SSL-encrypted connection. The ticket is given in a cookie that the browser stores.
After a login the user is redirected to the location they originally wished to view (or to a fixed page if the login "script" was really a static file).
On this access and any subsequent attempt to access a protected document, the browser returns the ticket to the server. The server unencrypts it if encrypted tickets are enabled, then extracts the username, issue time, expire time and checksum. A new checksum is calculated of the username, issue time, expire time and the secret key again; if it agrees with the checksum that the client supplied, we know that the data has not been tampered with. We next check that the expire time has not passed. If not, the ticket is still good, so we set the username.
Authorization checks then check that any "require valid-user" or "require user jacob" settings are passed. Finally, if a "require group foo" directive was given, the module will look up the username in a groups database and check that the user is a member of one of the groups listed. If all these checks pass, the document requested is displayed.
If a ticket has expired or is otherwise invalid it is cleared in the browser and the login form is shown again.
Download (0.022MB)
Added: 2007-03-19 License: Perl Artistic License Price:
949 downloads
Catalyst::Plugin::Email::Page 0.26
Catalyst::Plugin::Email::Page is a Perl module to email your Catalyst page. more>>
Catalyst::Plugin::Email::Page is a Perl module to email your Catalyst page.
SYNOPSIS
use Catalyst::Plugin::Email::Page;
__PACKAGE__->config->{email_page}{
email = q{webmaster@example.com},
subject = q{User Report for},
link_text = q{Report Page},
};
# In your Template
[% c.email_page_url %]
This is a simple plugin that lets a developer set and forget e-mail links in Catalyst
INTERFACE
email_page_url
Returns a link in the form of: mailto:webmaster@example.com?subject=User Report for http://yours.com/
The mailto subject is escaped using uri_escape_utf8 from URI::Escape and http://yours.com/ is the current pages uri
email_page_body
Allows you to e-mail the whole page to someone once you have the right template. Used the same way as email_page_url
To do.
email_page_anchor
Allows you to e-mail a page anchor. Used the same way as email_page_url
To do.
_construct_url
Internal routine.
Reads in the various configuration settings and constructs the mailto link. See "CONFIGURATION AND ENVIRONMENT"
<<lessSYNOPSIS
use Catalyst::Plugin::Email::Page;
__PACKAGE__->config->{email_page}{
email = q{webmaster@example.com},
subject = q{User Report for},
link_text = q{Report Page},
};
# In your Template
[% c.email_page_url %]
This is a simple plugin that lets a developer set and forget e-mail links in Catalyst
INTERFACE
email_page_url
Returns a link in the form of: mailto:webmaster@example.com?subject=User Report for http://yours.com/
The mailto subject is escaped using uri_escape_utf8 from URI::Escape and http://yours.com/ is the current pages uri
email_page_body
Allows you to e-mail the whole page to someone once you have the right template. Used the same way as email_page_url
To do.
email_page_anchor
Allows you to e-mail a page anchor. Used the same way as email_page_url
To do.
_construct_url
Internal routine.
Reads in the various configuration settings and constructs the mailto link. See "CONFIGURATION AND ENVIRONMENT"
Download (0.021MB)
Added: 2007-01-17 License: Perl Artistic License Price:
1010 downloads
PowerPhlogger 2.2.5
PowerPhlogger is a counter hosting and website statistics tool. more>>
PowerPhlogger is a counter hosting and website statistics tool. It lets you offer counter service to others from your site. PowerPhlogger is built on PHP and requires a the MySQL database server.
Your members dont need any PHP-support on their webserver. They just pass the required data through JavaScript to PPhlogger that is hosted on your server.
Currently development of Phlogger3, the future version of PowerPhlogger, is still going on and its source has not yet been opened to public.
This future version will be based on the Sourdough framework and will support various different database systems as backend. It will be a whole rewrite of the existing PowerPhlogger code.
Main features:
Logging:
- user sign-up page that allows users to create accounts
- logs host/ip (proxy & real IP !!), referer, agent, time&date, resolution&color, online-time, pageimpressions
- traceroutes by above.net
- stores IP-adress+cookie to avoid multiple hits by the same user (you can set a timeout)
- multiple page count - include PPhlogger on ALL your pages throughout your whole site
- mail-notice - PPhlogger sends you an email every xx hits
- phlogview - view all data and get a mySQL-dump for backup purposes (incl. logs-by-date search)
- optional: download-count
- Top X referers, Top keywords (single-word or full-string mode)
- Top X domains, Top territories
- Top resolution, Top color
- browser/OS stats
- Calendar - shows your daily/monthly unique hits or pageimpressions
- Visitors per day / per hour graph
- enable/disable your own hits (set a cookie)
- show/hide referers in logs
- (re)set your page hits
- delete entries in your logfile
- demo-mode to make stats avail. to public
- generate a pic to make hits visible on your page (requires GD-library!) - user may choose his own TTF-font, bg/fg-color, font-size >>> unlimited styles!!
- CSS-editor: user may create his own StyleSheet or choose a default style (phloggstyle / phpeestyle / sahara / cartesia / lila / metal)
- timezone support - user may choose his own GMT-time
- multi-language support with localization files
- average online-time
- supports unlimited alternate URLs
- visitor-path - shows the path were the visitor browsed through your site
- Admin page includes:
- set up new useraccounts and notifies the new user (incl. attachment)
- delete useraccounts, clean-up unconfirmed or expired useraccounts , edit useraccounts
- shows all user-configurations
- mailing-list feature
- plug-ins: FTP-diskspace, multiple file upload
- shows your system status (checks for ports on your server)
- show last X customers that entered Phlogview
- CSS-editor
<<lessYour members dont need any PHP-support on their webserver. They just pass the required data through JavaScript to PPhlogger that is hosted on your server.
Currently development of Phlogger3, the future version of PowerPhlogger, is still going on and its source has not yet been opened to public.
This future version will be based on the Sourdough framework and will support various different database systems as backend. It will be a whole rewrite of the existing PowerPhlogger code.
Main features:
Logging:
- user sign-up page that allows users to create accounts
- logs host/ip (proxy & real IP !!), referer, agent, time&date, resolution&color, online-time, pageimpressions
- traceroutes by above.net
- stores IP-adress+cookie to avoid multiple hits by the same user (you can set a timeout)
- multiple page count - include PPhlogger on ALL your pages throughout your whole site
- mail-notice - PPhlogger sends you an email every xx hits
- phlogview - view all data and get a mySQL-dump for backup purposes (incl. logs-by-date search)
- optional: download-count
- Top X referers, Top keywords (single-word or full-string mode)
- Top X domains, Top territories
- Top resolution, Top color
- browser/OS stats
- Calendar - shows your daily/monthly unique hits or pageimpressions
- Visitors per day / per hour graph
- enable/disable your own hits (set a cookie)
- show/hide referers in logs
- (re)set your page hits
- delete entries in your logfile
- demo-mode to make stats avail. to public
- generate a pic to make hits visible on your page (requires GD-library!) - user may choose his own TTF-font, bg/fg-color, font-size >>> unlimited styles!!
- CSS-editor: user may create his own StyleSheet or choose a default style (phloggstyle / phpeestyle / sahara / cartesia / lila / metal)
- timezone support - user may choose his own GMT-time
- multi-language support with localization files
- average online-time
- supports unlimited alternate URLs
- visitor-path - shows the path were the visitor browsed through your site
- Admin page includes:
- set up new useraccounts and notifies the new user (incl. attachment)
- delete useraccounts, clean-up unconfirmed or expired useraccounts , edit useraccounts
- shows all user-configurations
- mailing-list feature
- plug-ins: FTP-diskspace, multiple file upload
- shows your system status (checks for ports on your server)
- show last X customers that entered Phlogview
- CSS-editor
Download (0.67MB)
Added: 2005-12-28 License: GPL (GNU General Public License) Price:
1398 downloads
Secleted [ 0 ] software to compare
Copyright Notice:
Software piracy is theft, Using crack, password, serial numbers, registration codes, key generators is illegal and prevent future software development. The above facebook login page user search only lists software in full, demo and trial versions for free download. Download links are directly from our mirror sites or publisher sites, torrent files or links from rapidshare.com, yousendit.com or megaupload.com are not allowed