Php mmorpg game

Status
Not open for further replies.

Greik Ancient

New Member
Messages
34
Reaction score
0
Points
0
Im trying to make a mmorpg in php and using x10 for it. And I need some help. Can the server handle it?
 
Last edited:

Corey

I Break Things
Staff member
Messages
34,551
Reaction score
204
Points
63
Can the server handle it?

-Corey
 

TheSeer

New Member
Messages
52
Reaction score
0
Points
0
php/mysql games are generally low load games, its just depends on the amount of users that play it but if theres a lot of users u'll reach ur bandwidth limit :p
 

Corey

I Break Things
Staff member
Messages
34,551
Reaction score
204
Points
63
The server should be fine.

-Corey
 

Matt

New Member
Messages
1,862
Reaction score
0
Points
0
there is a premade one called the phprpg project. you can google it, im not sure where i found it.
 

CheetahShrk

New Member
Messages
204
Reaction score
0
Points
0
The only thing about the games is sometimes they require cron running every 5 minutes or so which may affect the server.
 

Bryon

I Fix Things
Messages
8,149
Reaction score
101
Points
48
CheetahShrk said:
The only thing about the games is sometimes they require cron running every 5 minutes or so which may affect the server.


Or every hour.... Or every 24 hours at midnight...
 

Corey

I Break Things
Staff member
Messages
34,551
Reaction score
204
Points
63
Well, running every 5 minutes might get your account suspended :)

-Corey
 

Xenon Design

New Member
Messages
160
Reaction score
0
Points
0
Rly? How bout every hour? Cause if im running my beta it will have hourly crons :s
 

t2t2t

New Member
Messages
690
Reaction score
0
Points
0
I have found this little php script that act as cron.

Features:
runs any PHP script
periodical or time-controlled script execution
logs all executed jobs
can be run from an IMG tag in an HTML page
follows Unix cron syntax for crontabs
sends an email with the results​
Usage:
Modify the variables in the config section below to match your server.
Write a PHP script that does the job you want to be run regularly. Be sure that any paths in it are relative to the script that include()s pseudo-cron.
Set up your crontab file with your script
Include pseudo-cron.inc.php in a high traffic page
Wait for the next scheduled run :)
Note:
You can log messages from your job script to pseudo-cron's log file by calling logMessage("log a message")​
http://www.bitfolge.de/pseudocron-en.html

This script will only make cron jobs when someone visites site and its time to do a job, so server wont have to do it itself.
 
Status
Not open for further replies.
Top