Sponsored Content
Full Discussion: Login
Contact Us Post Here to Contact Site Administrators and Moderators Login Post 303006174 by Neo on Saturday 28th of October 2017 11:18:20 AM
Old 10-28-2017
Correct.

Changing usernames and other benefits of VIP membership (like a unix.com email address) are part of our standard VIP package:

unix.com membership packages
 

9 More Discussions You Might Find Interesting

1. Web Development

APACHE: Tie in Web Page login with server login

Hello, I have created a web page on a server using apache and added .htaccess and .htpasswd in the folder for authentification. I was wondering if there was anyway to tie-in the login for this page with the login used to logon to the server. i.e. the same login info. is used for both,... (2 Replies)
Discussion started by: WhotheWhat
2 Replies

2. Cybersecurity

APACHE: Tie in Web Page login with server login

Hello, I have created a web page on a server using apache and added .htaccess and .htpasswd in the folder for authentification. I was wondering if there was anyway to tie-in the login for this page with the login used to logon to the server. i.e. the same login info. is used for both, when... (1 Reply)
Discussion started by: WhotheWhat
1 Replies

3. Solaris

error message rmclomv ... SC Login Failure for user Please login:

Hello World ~ HW : SUN Fire V240 OS : Solaris 8 Error message prompts 'rmclomv ... SC login failure ...' on terminal. and Error Message prompts continually 'SC Login Failure for user Please login:' on Single Mode(init S) The System is in normal operation, though In case of rain, Can... (1 Reply)
Discussion started by: lifegeek
1 Replies

4. HP-UX

telnet login successful ,but ssh can not login

why I can login by telnet using root account but when i use login by ssh using root account it is not successful ,is it different password i am sure ssh service is started (2 Replies)
Discussion started by: alert0919
2 Replies

5. AIX

User Account Login Login on your AIX server

I want to learn AIX. I would like to find someone who would be willing to give me a login to their AIX home lab server. My intent is to poke around and discover the similarities and differences of AIX compared to other *NIXs. I am a UNIX admin so I can think of what some immediate concerns may... (1 Reply)
Discussion started by: perl_in_my_shel
1 Replies

6. Shell Programming and Scripting

passing login details to htaccess login prompt

Hi, How i can pass the login details to the URL which is password protected with the htaccess using command line or script (perl,or shell,or php). Any help or hint appreciated. Thanks, SJ (4 Replies)
Discussion started by: SilvesterJ
4 Replies

7. UNIX for Advanced & Expert Users

Can adding to a new group be effective in current login environment without re-login?

Hey folks, When a user is added to a new group, the user has to be log out and log in again to make the new group effective. Is there any system command or technique to refresh user group ID update without re-login? I am not talking about to use "login" or "su -l" commands which can only make... (2 Replies)
Discussion started by: hce
2 Replies

8. AIX

Not able to login AIX server but able to login thru console.

Hi, i am able to login to AX server thru console but not able to login directly thru server. also the server is not ping-able with other server. filesystem is fine. and OS version is AIX 5.3. please let me know if you need any specific log. thx in advance. Scriptor (2 Replies)
Discussion started by: scriptor
2 Replies

9. UNIX for Advanced & Expert Users

First login on KUbuntu 16.04 no SKEL copied with first login LDAPusers

Hello, we have an problem on kubuntu16.04 that when i login with ldap, and it is my first login, nothing is copied from skel. With SSH it is working fine. Can anyone say we how KDE setup an new first userlogin? Tested with SDDM and Lightdm. Thanks a lot! Best Regard darktux ----------... (1 Reply)
Discussion started by: darktux
1 Replies
Gravatar::URL(3pm)					User Contributed Perl Documentation					Gravatar::URL(3pm)

NAME
Gravatar::URL - Make URLs for Gravatars from an email address SYNOPSIS
use Gravatar::URL; my $gravatar_id = gravatar_id($email); my $gravatar_url = gravatar_url(email => $email); DESCRIPTION
A Gravatar is a Globally Recognized Avatar for a given email address. This allows you to have a global picture associated with your email address. You can look up the Gravatar for any email address by constructing a URL to get the image from gravatar.com. This module does that. Examples of use include the author faces on <http://search.cpan.org>. See <http://gravatar.com> for more info. Functions gravatar_url # By email my $url = gravatar_url( email => $email, %options ); # By gravatar ID my $url = gravatar_url( id => $id, %options ); Constructs a URL to fetch the gravatar for a given $email or $id. $id is a gravatar ID. See "gravatar_id" for more information. %options are optional and are... rating A user can rate how offensive the content of their gravatar is, like a movie. The ratings are g, pg, r and x. If you specify a rating it is the highest rating that will be given. rating => "r" # includes g, pg and r size Specifies the desired width and height of the gravatar (gravatars are square). Valid values are from 1 to 512 inclusive. Any size other than 80 may cause the original gravatar image to be downsampled using bicubic resampling before output. size => 40, # 40 x 40 image default The url to use if the user has no gravatar or has none that fits your rating requirements. default => "https://secure.wikimedia.org/wikipedia/en/wiki/File:Mad30.jpg" Relative URLs will be relative to the base (ie. gravatar.com), not your web site. Gravatar defines special values that you may use as a default to produce dynamic default images. These are "identicon", "monsterid", "wavatar" and "retro". "404" will cause the URL to return an HTTP 404 "Not Found" error instead whereas "mm" will display the same "mystery man" image for all missing people. See <http://en.gravatar.com/site/implement/url> for more info. If omitted, Gravatar will serve up their default image, the blue G. border DEPRECATED! This key has been removed from the Gravatar protocol. It will be removed from future versions of Gravatar::URL. Gravatars can be requested to have a 1 pixel colored border. If you'd like that, pass in the color to border as a 3 or 6 digit hex string. border => "000000", # a black border, like my soul border => "000", # black, but in 3 digits base This is the URL of the location of the Gravatar server you wish to grab Gravatars from. Defaults to <http://www.gravatar.com/avatar/"> for HTTP and <https://secure.gravatar.com/avatar/> for HTTPS. short_keys If true, use short key names when constructing the URL. "s" instead of "size", "r" instead of "ratings" and so on. short_keys defaults to true. https If true, serve avatars over HTTPS instead of HTTP. You should select this option if your site is served over HTTPS to avoid browser warnings about the presence of insecure content. https defaults to false. gravatar_id my $id = gravatar_id($email); Converts an $email address into its Gravatar $id. THANKS
Thanks to gravatar.com for coming up with the whole idea and Ashley Pond V from whose Template::Plugin::Gravatar I took most of the original code. LICENSE
Copyright 2007 - 2009, Michael G Schwern <schwern@pobox.com>. Copyright 2011, Francois Marier <fmarier@gmail.com>. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. See http://dev.perl.org/licenses/artistic.html SEE ALSO
Template::Plugin::Gravatar - a Gravatar plugin for Template Toolkit <http://www.gravatar.com> - The Gravatar web site <http://en.gravatar.com/site/implement/url> - The Gravatar URL implementor's guide perl v5.14.2 2012-04-04 Gravatar::URL(3pm)
All times are GMT -4. The time now is 10:05 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy