Server Problems
-
Bruce422
- Posts: 167
- Joined: Mon Nov 11, 2013 4:32 pm
- Team: Sina Clothing
- Location: Alabama
- Contact:
Server Problems
So I am trying to make a server for the team I am a member of, and I followed the tutorial on her. Only when I make the new batch file and try to open, the client screen opens and closes really quick. I have been looking and looking and cant find a way to fix this. Can anyone help me?
-
jlv
- Site Admin
- Posts: 15396
- Joined: Fri Nov 02, 2007 5:39 am
- Team: No Frills Racing
- Contact:
Re: Server Problems
Add a line to the end of the batch file like this:
pause
It won't fix the problem but at least you'll be able to see any error messages you're getting.
pause
It won't fix the problem but at least you'll be able to see any error messages you're getting.
Josh Vanderhoof
Sole Proprietor
jlv@mxsimulator.com
If you email, put "MX Simulator" in the subject to make sure it gets through my spam filter.
Sole Proprietor
jlv@mxsimulator.com
If you email, put "MX Simulator" in the subject to make sure it gets through my spam filter.
-
Bruce422
- Posts: 167
- Joined: Mon Nov 11, 2013 4:32 pm
- Team: Sina Clothing
- Location: Alabama
- Contact:
Re: Server Problems
The batch file I downloaded fro you or the one I make? Thanks for the help.jlv wrote:Add a line to the end of the batch file like this:
pause
It won't fix the problem but at least you'll be able to see any error messages you're getting.
-
Bruce422
- Posts: 167
- Joined: Mon Nov 11, 2013 4:32 pm
- Team: Sina Clothing
- Location: Alabama
- Contact:
Re: Server Problems
Okay JLV, it says that the cd Directory Of mxserver:
The system cannot find the path specified. Then it also says, 'mxserver' is not recognized as an internal or external command, operable program or batch file.
The system cannot find the path specified. Then it also says, 'mxserver' is not recognized as an internal or external command, operable program or batch file.
-
jlv
- Site Admin
- Posts: 15396
- Joined: Fri Nov 02, 2007 5:39 am
- Team: No Frills Racing
- Contact:
Re: Server Problems
Sounds like you've found your problem. It failed when it tried to change (i.e. cd) to the mxserver folder. You need to fix the pathname after the cd command.
Josh Vanderhoof
Sole Proprietor
jlv@mxsimulator.com
If you email, put "MX Simulator" in the subject to make sure it gets through my spam filter.
Sole Proprietor
jlv@mxsimulator.com
If you email, put "MX Simulator" in the subject to make sure it gets through my spam filter.
-
Bruce422
- Posts: 167
- Joined: Mon Nov 11, 2013 4:32 pm
- Team: Sina Clothing
- Location: Alabama
- Contact:
Re: Server Problems
I know this is going to make me sound like an idiot, but I have no clue what any of that means.jlv wrote:Sounds like you've found your problem. It failed when it tried to change (i.e. cd) to the mxserver folder. You need to fix the pathname after the cd command.
-
Bruce422
- Posts: 167
- Joined: Mon Nov 11, 2013 4:32 pm
- Team: Sina Clothing
- Location: Alabama
- Contact:
-
BuryYourHead707
- Posts: 173
- Joined: Thu Feb 12, 2009 1:29 am
Re: Server Problems
Edit the batch file located in the "mxserver" folder. (Right-Click then "Edit")
There will be a path name located at the top, this path name needs to correspond to the location of the exe.
Example:
I have the mxserver folder located in my Documents.
So my batch file STARTSERVER looks like:
If it were located on my Desktop per say, it would look like:
Does this help bud?
Cheers
There will be a path name located at the top, this path name needs to correspond to the location of the exe.
Example:
I have the mxserver folder located in my Documents.
So my batch file STARTSERVER looks like:
Code: Select all
cd C:\Users\Jake\Documents\mxserver
mxserver.exe --args-file serverargs.txtCode: Select all
cd C:\Users\Jake\Desktop\mxserver
mxserver.exe --args-file serverargs.txtCheers
-
Bruce422
- Posts: 167
- Joined: Mon Nov 11, 2013 4:32 pm
- Team: Sina Clothing
- Location: Alabama
- Contact:
Re: Server Problems
Do I need to put both of the links from the tutorial, in my startserver file?BuryYourHead707 wrote:Edit the batch file located in the "mxserver" folder. (Right-Click then "Edit")
There will be a path name located at the top, this path name needs to correspond to the location of the exe.
Example:
I have the mxserver folder located in my Documents.
So my batch file STARTSERVER looks like:If it were located on my Desktop per say, it would look like:Code: Select all
cd C:\Users\Jake\Documents\mxserver mxserver.exe --args-file serverargs.txtDoes this help bud?Code: Select all
cd C:\Users\Jake\Desktop\mxserver mxserver.exe --args-file serverargs.txt
Cheers
-
Bruce422
- Posts: 167
- Joined: Mon Nov 11, 2013 4:32 pm
- Team: Sina Clothing
- Location: Alabama
- Contact:
Re: Server Problems
Actually, man! Good news, it workedBuryYourHead707 wrote:Edit the batch file located in the "mxserver" folder. (Right-Click then "Edit")
There will be a path name located at the top, this path name needs to correspond to the location of the exe.
Example:
I have the mxserver folder located in my Documents.
So my batch file STARTSERVER looks like:If it were located on my Desktop per say, it would look like:Code: Select all
cd C:\Users\Jake\Documents\mxserver mxserver.exe --args-file serverargs.txtDoes this help bud?Code: Select all
cd C:\Users\Jake\Desktop\mxserver mxserver.exe --args-file serverargs.txt
Cheers