Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

[OFFICIAL] Devias Website by Insane

Status
Not open for further replies.
Experienced Elementalist
Joined
Aug 22, 2013
Messages
208
Reaction score
125
Hello,

Some questions,

1. Suhosin gave me this:
Code:
suhosin[76733]: ALERT - end canary mismatch on efree() - heap overflow detected at 0x801654ac0 (attacker 'X.X.X.X', file '/path/to/index.php')
Have you tried in Suhosin patched server?

2. SQL module, which one should I use? pdo_mssql or mssql? cause I got this
Code:
PHP Notice:  Trying to get property of non-object in /path/to/class/misc.class.php on line 27
Which referring to:
Code:
return $mssql -> getRow("SELECT top 1 nUserCount FROM _ShardCurrentUser WHERE nShardID = '".$core -> aConfig['shardID']."' ORDER BY nID desc");

3. Should i create new table in the database? cause I saw this (in other several files too referring to a custom table):
Code:
$mssql -> exec("update devias_settings set value='$nOnlinePlayers' where valueName='maxPlayersOnline'");
Which seems it's trying to update to table called "devias_settings"

Thank you ;)
 
Last edited:
very nice
Joined
Jul 5, 2013
Messages
518
Reaction score
80
how to change file CHMOD ?!

it's allowed for linux only not windows server!
 
Newbie Spellweaver
Joined
Sep 30, 2012
Messages
36
Reaction score
4
why i got this Error

Internal Server Error

The server encountered an internal error or misconfiguration and was unable to complete your request.

Please contact the server administrator, admin@example.com and inform them of the time the error occurred, and anything you might have done that may have caused the error.

More information about this error may be available in the server error log.
 

F50

Newbie Spellweaver
Joined
Feb 8, 2012
Messages
24
Reaction score
1
thx for help.

here are some improtent things to use with zend server ce

1. look in "php.ini" (you can find it in C:\"xxx"\Zend\ZendServer\etc) for this part
PHP:
short_open_tag = off
and change it to this
PHP:
short_open_tag = on
2.go to C:\"xxx"\Zend\Apache2\conf and open "httpd.conf"
change it from this
PHP:
    # AllowOverride controls what directives may be placed in .htaccess files.
    # It can be "All", "None", or any combination of the keywords:
    #   Options FileInfo AuthConfig Limit
    #
    AllowOverride none
to
PHP:
# AllowOverride controls what directives may be placed in .htaccess files.
    # It can be "All", "None", or any combination of the keywords:
    #   Options FileInfo AuthConfig Limit
    #
    AllowOverride All

3.finally open C:\"xxx"\Zend\Apache2\htdocs\template and have a look to this file "header.php"
change it from this
PHP:
<? //set the title
to
PHP:
<?php //set the title

and
PHP:
<? echo base64_decode
to
PHP:
<?php echo base64_decode

and
PHP:
<? echo $cfg
to
PHP:
<?php echo $cfg

no all moduls and links will work 100%

still the same can you help me ?
 
Newbie Spellweaver
Joined
Aug 30, 2012
Messages
13
Reaction score
0
guys anyone knows about how to fix pingback for paymentwall?
 
Status
Not open for further replies.
Back
Top