Unable to register


 
Thread Tools
Contact Us Forum Support Area for Unregistered Users & Account Problems Unable to register
# 1  
Old 11-28-2009
Unable to register

I tried registering couple of times, and got the following message.

Sorry, registration denied. We check new registrations against a database of known forum spammers. At this time, we are unable to contact this database to verify your registration. We are sorry for the inconvenience but please do try again later. Also, please contact us via by posting in this forum if you have tried a couple of times and cannot register. Normally, just try back in a few minutes. Thank you for your patience. You will appreciate our forums and lack of spam, so please be patient!
...you might want to try searching the forums:


usernames: josvasanth / bluethunder
email : vasanthkumar.ravi@gmail.com

Could you please help in registering in this forum.

Thanks.
josvasanth
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Forum Support Area for Unregistered Users & Account Problems

I can not register

I want to register as "nezabudka", but I can't and I have a dynamic ip address. My country is not in the list of restrictions. I'm alive, I'm not a bot ))) (3 Replies)
Discussion started by: nezabudka
3 Replies

2. Forum Support Area for Unregistered Users & Account Problems

Unable to register account

Hello there, I'm trying to register an account on Unix.com, but unfortunately I saw my country in block list due to spamming (Vietnam). Could you give me instruction to create new account on this forum? Any help will be appreciated. Thank you. (0 Replies)
Discussion started by: Unregistered
0 Replies

3. Forum Support Area for Unregistered Users & Account Problems

Unable to register

Unable to login. When trying to make fresh registration getting error that username is already used and when trying to use forget password journey then getting error message, "email address not registered". (1 Reply)
Discussion started by: Unregistered
1 Replies

4. Forum Support Area for Unregistered Users & Account Problems

Unable to register (2x Accounts)

Hello, I have tried to register to the forums twice now, once with the username 'pilnet101' which I signed up with a while back - and second with the user 'omni', using a gmail account. I have not received activation emails for either accounts and as a result, I am unable to post at all in... (2 Replies)
Discussion started by: guest12121
2 Replies

5. Forum Support Area for Unregistered Users & Account Problems

Unable to register

Hallo. I was interested in registering for a forum account but it keeps tossing me to the no permissions page (I was going to answer a question about scripting network changes). I do use a VPN tunnel through AirVPN so that may be the problem. My current IP is <removed IP address> and if you'll have... (2 Replies)
Discussion started by: Unregistered
2 Replies

6. Forum Support Area for Unregistered Users & Account Problems

I am unable to register

i forgot the username and password and random question please remove my mail ids <email removed>@gmail.com <email removed>@gmail.com i mant join this for learn unix my desired username balakrishna and password <removed> (1 Reply)
Discussion started by: Unregistered
1 Replies

7. Red Hat

System unable to register with Red Hat Networks

ISSUE: The system is unable to register with Redhat network (RHN). SYSTEM DETAILS: RHEL6 (2.6.32-131.2.1.el6.x86_64). The firewall is turned off. I have network connectivity. There is no GUI. All work is done from the command line. The following files are installed:... (4 Replies)
Discussion started by: SmithJ
4 Replies

8. Forum Support Area for Unregistered Users & Account Problems

Unable to register

I've tried three times. email: dpc (_a_t_) ucore.info username: dpc . ucore . info Browser: FF 3.0.17 on Solaris Why don't you let me in and consider me a spammer, ha? :) (2 Replies)
Discussion started by: imnotaspammer
2 Replies

9. Forum Support Area for Unregistered Users & Account Problems

Unable to register, cont.

Hi, I'm posting in reply to: https://www.unix.com/forum-support-area-unregistered-users-account-problems/128453-unable-register.html imnotaspammer is me. I'm posting in new thread because it seems I can't reply as I'm not registered. I guess this is a reason why no problem report here... (1 Reply)
Discussion started by: imnotaspammer2
1 Replies

10. Forum Support Area for Unregistered Users & Account Problems

Unable to register

I tried registering couple of times, and got the following message. "Sorry, registration denied. We check new registrations against a database of known forum spammers. At this time, we are unable to contact this database to verify your registration. ...you might want to try searching the... (1 Reply)
Discussion started by: cherry_sas
1 Replies
Login or Register to Ask a Question
ON_EXIT(3)						     Linux Programmer's Manual							ON_EXIT(3)

NAME
on_exit - register a function to be called at normal process termination SYNOPSIS
#include <stdlib.h> int on_exit(void (*function)(int , void *), void *arg); Feature Test Macro Requirements for glibc (see feature_test_macros(7)): on_exit(): _BSD_SOURCE || _SVID_SOURCE DESCRIPTION
The on_exit() function registers the given function to be called at normal process termination, whether via exit(3) or via return from the program's main(). The function is passed the status argument given to the last call to exit(3) and the arg argument from on_exit(). The same function may be registered multiple times: it is called once for each registration. When a child process is created via fork(2), it inherits copies of its parent's registrations. Upon a successful call to one of the exec(3) functions, all registrations are removed. RETURN VALUE
The on_exit() function returns the value 0 if successful; otherwise it returns a nonzero value. CONFORMING TO
This function comes from SunOS 4, but is also present in libc4, libc5 and glibc. It no longer occurs in Solaris (SunOS 5). Avoid this function, and use the standard atexit(3) instead. SEE ALSO
_exit(2), atexit(3), exit(3) COLOPHON
This page is part of release 3.44 of the Linux man-pages project. A description of the project, and information about reporting bugs, can be found at http://www.kernel.org/doc/man-pages/. GNU
2008-12-05 ON_EXIT(3)