Posts Tagged ‘Server.’

I Receive An Error Message When I Exit Photoshop Cs2 – Dde Window Server – Photoshop.exe Application Error.?

Monday, February 15th, 2010

The error message only appears whenever I exit PhotoShop CS2. Adobe says this is a Windows error

How Do I Delete Message From Que To Stop Nrouter.exe Errors And My Mail Server From Crashing?

Saturday, February 13th, 2010

My domino lotus notes is set up on a pop3 and it is getting hit. I am continually getting a crash message stating that my nrouter.exe is causing the crash. This has never happened before and all of the information I can find keeps pointing me to delet the message out of the que but I have no idea how to do that

There Was A Problem Logging Onto Your Mail Server. Your Password Was Rejected. Account: ‘pop.mail.yahoo.com’,?

Friday, February 12th, 2010

There was a problem logging onto your mail server. Your Password was rejected. Account: ‘pop.mail.yahoo.com’, Server: ‘pop.mail.yahoo.com’, Protocol: POP3, Server Response: ‘-ERR [SYS/PERM] pop not allowed for user.’, Port: 110, Secure(SSL): No, Server Error: 0×800CCC90, Error Number: 0×800CCC92

Can Anyone Help Me With The Hello World Server And Client Program?

Tuesday, February 9th, 2010

I’m suppose to do this program and make it work in windows os and linux but i can’t seem to make it run. i always get an error. can you tell me wats wrong? should i include some more commands? i’m new in this socket programming thing and i really need help.
here’s the program:
#include
#include /* exit() */
#include /* memset (), memcpy()*/
#include /* uname()*/
#include
#include /* socket(), bind(), listen(),accept()*/
#include
#include
#include
#include /* fork(), write(), close()*/
int_GetHostName(char *buffer, int length);
const char MESSAGE[] = “Hello, World!\n”;
const int BACK_LOG=5;
int main(int argc, char *argv[]){
int serverSocket=0, on=0, port=0,status=0,childPid=0;
struct hostent *hostPtr=NULL;
char hostname[80]=”";
struct sockaddr_in serverName={0};
if (2!=argc){
fprintf(stderr,”Usage: %s \n”,argv[0]);
}
port=atoi(argv[1]);
serverSocket=socket(PF_INET, SOCK_STREAM, IPPROTO_TCP);
if(-1==serverSocket){
perror(“socket()”);
exit;
}
/* turn off bind address checking, and allow port numbers to be reused –
otherwise the TIME_WAIT phenomenon will prevent binding to these address.port
combinations for (2*MSL) seconds.
*/
on=1;
status=setsockopt(serverSocket, SOL_SOCKET, SO_REUSEADDR, (const char*)&on,sizeof(on));
if(-1==status){
perror(“setsockopt(…,SO_REUSEADDR,…
}
/* when connection is closed, thereis a need to linger to ensure all data is transmitted,
so turn this on also
*/
{
struct linger linger={0};
linger.1_onoff=1;
linger.1_linger=30;
status=setsockopt(serverSocket,SOL_S… char*)&linger,sizeof(linger));
if(-1==status){
perror(“setsockopt(…,SO_LINGER,..…
}
}
// FIND OUT WHO I AM
status=_GetHostName(hostname,sizeof(h…
if(-1==status){
perror(“_GetHostName()”);
exit(1);
}
hostPtr=gethostbyname(hostname);
if(NULL==hostPtr){
perror(“gethostbyname()”);
exit(1);
}
(void)memset(&serverName,0,sizeof(ser…
(void)memcpy(&serverName.sin_addr,hos…
/* to allow server be contactable on any of its IP addresses, uncomnment the following line of code
serverName.sin_addr=hton1(INADDR_ANY…
*/
serverName.sin_family=AF_INET;
serverName.sin_port=htons(port); //network order
status=bind(serverSocket,(structsocka…
if(-1==status){
perror(“bind()”);
exit(1);
}
status=listen(serverSocket,BACK_LOG);
if(-1==status){
perror(“listen()”);
exit(1);
}
for(;;){
struct sockaddr_in clientName={0};
int slaveSocket, clientLength=sizeof(clientName);
(void)memset(&clientName,0,sizeof(cl…
slaveSocket=accept(serverSocket,(str… sockaddr*)&clientName,&clientLength);
if(-1==slaveSocket){
perror(“accept()”);
exit(1);
}
childPid=fork();
switch(childPid){
case -1: /* ERROR */
perror(“fork()”);
exit(1);
case 0: /* child process */
close(serverSocket);
if(-1==getpeername(slaveSocket,(s… sockaddr*)&clientName,&clientLength)){
perror(“getpeername()”);
}else{
printf(“Connectionrequest from %s \n”; , inet_ntoa(clientName.sin_addr));
}
/* Server application spoecific code goes here,
e.g.perform some action, respond to client etc.
*/
write(slaveSocket,MESSAGE,strlen(…
close(slaveSocket);
exit(0);
default: /*parentprocess*/
close(slaveSocket);
}
}
return 0;
}
/* Local replacement of gethostname() to aid portability */
int _GetHostName(char *buffer, int length){
struct utsname sysname={0};
int status=0;
status=uname(&sysname);
if(-1!=status){
strncpy(buffer,sysname.nodename,len…
}
return(status);
}
please help..

I Want To Play Maplestory Private Server, But It Says The Application Failed Because Ijl15.dll Was Not Found.?

Saturday, February 6th, 2010

It says re-installing the application may fix this problem, but i tried that many times and it still doesn’t work!

Hi I A Writting Simple Server Client Socket.the Code That I Have Written Is Not Working.please Anyone Help Me?

Friday, January 15th, 2010

#include
#include /* Basic I/O routines */
#include /* standard system types */
#include /* Internet address structures */
#include /* socket interface functions */
#include /* host to IP resolution */
#include
#define portno 6789 /* default port of host */
void error(char *msg);
int main(int argc, char *argv[]);
void error(char *msg)
{
perror(msg);
exit(1);
}
int main(int argc, char *argv[])
{
int serversocket;
int newsockfd;
int clilen;
char buffer[4096];
struct sockaddr_in serv_addr, cli_addr;
/*portno = 80;*/
int n;
serversocket = socket(AF_INET, SOCK_STREAM, 0);
if (serversocket < 0)
{
error("ERROR opening socket");
}
bzero((char *) &serv_addr, sizeof(serv_addr));
serv_addr.sin_family = AF_INET;
serv_addr.sin_addr.s_addr = INADDR_ANY;
/*portno=atoi(argv[1]);*/
serv_addr.sin_port = htons(portno);
printf("Socket has port #%d\n", serv_addr.sin_port);
if (bind(serversocket, (struct sockaddr *) &serv_addr,
sizeof(serv_addr)) < 0)
{
error("ERROR on binding");
}
listen(serversocket,5);
while (1) {
clilen = sizeof(cli_addr);
newsockfd = accept(serversocket,(struct sockaddr *) &cli_addr, &clilen);
if (newsockfd < 0)
{
error("ERROR on accept");
}
/*n = read(newsockfd,buffer,sizeof(buffer)-1);
printf("A connection has been established\n");
if (n < 0)
{
error("ERROR reading from socket");
}
printf("Here is the message: %s\n",buffer);*/
n = write(newsockfd, buffer, sizeof(buffer)-1);
if (n < 0)
{
error("ERROR writing to socket");
}
close(newsockfd);
}
return 0;
}

Rpc Server Is Unavailable Windows Nt Services.exe Error?

Sunday, January 10th, 2010

see the sorce below, they will have all the answers
try them they are terrific,
they are computer pro’s

Wow Private Server Mysql Problem?

Friday, December 18th, 2009

as been said before, I am making this private server, I did everything on a tutorial but then I got stuck to where we open Mysql.bat, when I double click it closes immediately! but then some nice guy told me a trick, which is right click it and chose edit, then at the bottom it should say pause, if not add it. I did all that but then now it says
“090911 10:08:02 [ERROR] Can’t find messagefile ‘C:/documents and settings/ mohammed/desktop/ArcEmu 3.2.0 Repack/server/Mysql/share/Engl ish/errmsg.sys’
090911 10:08:02 [ERROR] Aborting
Press any key to continue . . . ”
when I press any key like they say it closes x_x
please help. It shouldn’t take a weak for me to make a private server that takes 5 mins to make.

There Is A File Called Msvcp57.dll Trojan-backdoor In My Windows 2000 Server But I Cannot Find Any Information?

Thursday, December 3rd, 2009

what is msvcp57.dll? how to remove it?

Dde Server Window : Iexplore.exe-appln Error?

Saturday, November 7th, 2009

iam using windows xp.
when i try to close some software or when trying to shut down i got a error
DDE server window: ieplore.exe – appln error
the instruction at “0*1001cd11″ referenced memory
at “0*1001cd11″ . the memory could not be “read”
click on ok to terminate the program