• Unfortunately, we have experienced significant hard drive damage that requires urgent maintenance and rebuilding. The forum will be a state of read only until we install our new drives and rebuild all the configurations needed. Please follow our Facebook page for updates, we will be back up shortly! (The forum could go offline at any given time due to the nature of the failed drives whilst awaiting the upgrades.) When you see an Incapsula error, you know we are in the process of migration.

[Share] RanCP Administration Panel

Newbie Spellweaver
Joined
Feb 23, 2007
Messages
31
Reaction score
0
Thanks for the script! it's working perfectly. I just want to ask if possible, can you also add a function of logging out of an account? for some reason, sometimes the account is not being properly logged out. thanks
 
Newbie Spellweaver
Joined
Nov 8, 2007
Messages
35
Reaction score
0
I got this error when logging in my Gm account with usertype=30. Jst like popup comes out and it says "Kamu tidak dibenarkan login" and i think in english "Session Ends Please Re-Login". Although i tried to log in again and again but this keep poping out.. Please help.
 
Wazup fucckerrsss
Joined
Jan 14, 2008
Messages
473
Reaction score
91
alert("Kamu tidak dibenarkan login.");
</script>
';
quickrefresh('index.php');

what is that mean? invalid?
cant login always go back index


10q u for sharing sir :D
 
Initiate Mage
Joined
Sep 27, 2007
Messages
2
Reaction score
0
Fatal error: Call to undefined function: mssql_connect() in C:\AppServ\www\admin\function.php on line 37
 
Junior Spellweaver
Joined
Mar 6, 2008
Messages
148
Reaction score
0
@tictace
hmm..mbe this would help you..or anyone..

find this on ur query..
from this
DEFINE("ACCOUNT_ONLINE", "UPDATE UserInfo SET WebLoginState = 1 WHERE UserName = '%s'");

DEFINE("ACCOUNT_OFFLINE", "UPDATE UserInfo SET WebLoginState = 0 WHERE UserName = '%s'");

to this
DEFINE("ACCOUNT_ONLINE", "UPDATE UserInfo SET UserAvailable = 0 WHERE UserName = '%s'");

DEFINE("ACCOUNT_OFFLINE", "UPDATE UserInfo SET UserAvailable = 1 WHERE UserName = '%s'");
 
Junior Spellweaver
Joined
Jan 3, 2008
Messages
182
Reaction score
179
i will add a search script for userinfo so it will be easier. And on the home page wat do u guys want on there.
 
Newbie Spellweaver
Joined
Oct 18, 2006
Messages
9
Reaction score
0
little help here guys...
how to change my cp's background color....or i want to put an img on my cp background...?

tnx ^_^
 
Junior Spellweaver
Joined
Jan 3, 2008
Messages
182
Reaction score
179
@this error "Kamu tidak dibenarkan login"
OK find config.php CHANGE it to your server's config.

<?php
//
$CONFIG['servername'] = "WEBNAME";//Web Name
$CONFIG['dbaddress'] = "YOURCOMPUTER\SQLEXPRESS";//DB IP
$CONFIG['dbuser'] = "sa";//DB ID
$CONFIG['dbpass'] = "1234";//DB PASS
$CONFIG['dbdbname'] = "RanUser";
$CONFIG['dbdbname1'] = "RanGame1";
$CONFIG['dbdbname2'] = "RanShop";
$CONFIG['registration'] = "1";
$CONFIG['maxaccounts'] = "0";
$CONFIG['maxemail'] = "1";
$CONFIG['email'] = "0";
$CONFIG['emailaddress'] = "";
$CONFIG['emailsmtp'] = "";
$CONFIG['emailuser'] = "";
$CONFIG['emailpass'] = "";
?>
 
Experienced Elementalist
Joined
Dec 16, 2007
Messages
227
Reaction score
0
Sir how about this error?

"Fatal error: Maximum execution time of 30 seconds exceeded in C:\Program Files\Abyss Web Server\htdocs\admin\page\userinfo.php on line 278"
 
Junior Spellweaver
Joined
Jan 3, 2008
Messages
182
Reaction score
179
download the new userinfo.php and replace the old userinfo.php

heres the link.
 
Newbie Spellweaver
Joined
Apr 6, 2005
Messages
91
Reaction score
0
i got a prob coz
the chars that are online does not appear in the table
wat seems to be the problem
 

Attachments

You must be registered for see attachments list
Junior Spellweaver
Joined
Jan 3, 2008
Messages
182
Reaction score
179
OK here you go just replace your announcemnt.php with this one. (I havent tested it).Replace you query.php too.

 
Junior Spellweaver
Joined
Mar 4, 2008
Messages
147
Reaction score
21
bk2483 - [Share] RanCP Administration Panel - RaGEZONE Forums



bk2483 - [Share] RanCP Administration Panel - RaGEZONE Forums


How to FIX this error?
 
Junior Spellweaver
Joined
Feb 5, 2008
Messages
117
Reaction score
2
Suggestion. Kindly add another feature to show inactive accounts and characters for about 60days or 3months. So that we can lessen our database using this feature.. So this must be d easier way to clean our database automatically or manually. Thanks....
(DAGHANG SALAMAT)
 
Experienced Elementalist
Joined
May 30, 2006
Messages
257
Reaction score
6
i just have one question i ban user but still user can log in?
what is the problem? can anyone give me a reason

thnx po
 
Newbie Spellweaver
Joined
Apr 6, 2005
Messages
76
Reaction score
0
Bro can you add in your share admin.php like user connected problem, like logoff his account
 
Junior Spellweaver
Joined
Jan 3, 2008
Messages
182
Reaction score
179
@Vision
OK find gmaccount.php and find this action='index.php?page=gmaccount'
and change it to this action='home.php?page=gmaccount'

just redownload admin.rar and replace your old files.

@truclan
did you put the correct date format. if you banned a user and u want to block him for 5 days just add 5 to the days.
ex.
3/3/2008 4:15:09 PM
it should be 3/8/2008 4:15:09 PM2

@Corey02
You copied the namechange.php to you CP thats why your getting the error. What you should do is copy my query.php to your CP. or you can copy this line and paste it in your query.php

And Add this a column to your ChaInfo
Column Name: ChaReborn
Type: smallint
Deafult Value: 0
No NULL

Code:
DEFINE("UPDATE_NAME","UPDATE RanGame1.dbo.ChaInfo SET ChaName = '%s' WHERE ChaName = '%s' ");
DEFINE("SELECT_USER_FULLINFO2", "SELECT UserName, UserPass, UserPass2, UserEmail, UserNum, UserType, UserPoint FROM RanUser.dbo.UserInfo WHERE UserName = '%s' ");
 
Last edited:
Back
Top