-
Re: Phoenix CMS [UberEmu Compatible]
I can't get the client to work, the bottom bar loads half way then goes away and the top bar never moves.
-
Re: Phoenix CMS [UberEmu Compatible]
Uhm i guess im a total noob with ColdFusion but eh..
Im receiving this error the whole time.
Im using OtakuHTTPD :p
-
Re: Phoenix CMS [UberEmu Compatible]
Quote:
Originally Posted by
PEjump2
Uhm i guess im a total noob with ColdFusion but eh..
Im receiving
this error the whole time.
Im using OtakuHTTPD :p
Quote:
datasource [uberdb] doesn't exist
Go into your coldfusion admin panel and click data sources on the left, create a new data source called uberdb, if you watch the video, somewhere near the end it shows how to make a data source :)
-
Re: Phoenix CMS [UberEmu Compatible]
And where the fuck is the admin panel?
-
Re: Phoenix CMS [UberEmu Compatible]
Quote:
Originally Posted by
PEjump2
And where the fuck is the admin panel?
When you install ColdFusion on your web server it is in /CFIDE/administrator, however I don't know what this "OtakuHTTPD" is so I can't help I guess.
-
Re: Phoenix CMS [UberEmu Compatible]
Aaron is it posable to change the way the passwords are encrypted to work with my existing Uber DB
-
Re: Phoenix CMS [UberEmu Compatible]
Quote:
Originally Posted by
SpazzEmu
Aaron is it posable to change the way the passwords are encrypted to work with my existing Uber DB
In config.ini there is a bit which says encryption=MD5, I am not sure, but changing this to the same encryption as uberCMS might work?
-
Re: Phoenix CMS [UberEmu Compatible]
Uber encrypts with MD5 & it's own one, i'm sure?
-
Re: Phoenix CMS [UberEmu Compatible]
Quote:
Originally Posted by
Grant
Uber encrypts with MD5 & it's own one, i'm sure?
Uhm, sha1 + secret site hash..
---------- Post added at 03:16 PM ---------- Previous post was at 03:16 PM ----------
Quote:
Originally Posted by
Hejula
When you install ColdFusion on your web server it is in /CFIDE/administrator, however I don't know what this "OtakuHTTPD" is so I can't help I guess.
Ugh whatever, i'm porting this to PHP anyways :/
-
Re: Phoenix CMS [UberEmu Compatible]
What a facepalm thread..
OtakuHTTPD is basically a better run XAMPP.
You could run this on XAMPP, but seriously your better off running it on IIS..
I see intelligent people..(PEJump2,Hejula ect..) acting like noobs,
I could see if you guys needed a little bit of help, but you call yourself "coders" but you cannot figure out how to setup a un-done cms.
Kudos to Aaron i like this cms, can't wait till you finish it, that is when i'll be a license.
By the Way
PeJump2, if Admin Panel = Housekeeping, you'll clearly see in one of Aaron's posts that he hasn't finished that nor a install script yet.
-
Re: Phoenix CMS [UberEmu Compatible]
-
Re: Phoenix CMS [UberEmu Compatible]
Ugh, this would have been lots of better if it was coded in PHP and not that gay ColdFusion language,
that makes a new Database connection the whole time & generates SSO wrong..
-
Re: Phoenix CMS [UberEmu Compatible]
Coldfusion outclasses PHP in a few ways.
-
Re: Phoenix CMS [UberEmu Compatible]
Quote:
Originally Posted by
PEjump2
Ugh, this would have been lots of better if it was coded in PHP and not that gay ColdFusion language,
that makes a new Database connection the whole time & generates SSO wrong..
You are just jealous that you don't understand ColdFusion, and can't use it :) and other people can, so fuck you and fuck off and don't use it. nerd
-
Re: Phoenix CMS [UberEmu Compatible]
Link to swfs that will work for client? I tried my old r63 (i think they are r63) they didnt work. I tried r59, They didnt work :\
-
Re: Phoenix CMS [UberEmu Compatible]
Quote:
Originally Posted by
Knail
You are just jealous that you don't understand ColdFusion, and can't use it :) and other people can, so fuck you and fuck off and don't use it. nerd
This is one of the un-intelligent users..
-
Re: Phoenix CMS [UberEmu Compatible]
-
Re: Phoenix CMS [UberEmu Compatible]
Quote:
Originally Posted by
PEjump2
Ugh, this would have been lots of better if it was coded in PHP and not that gay ColdFusion language,
that makes a new Database connection the whole time & generates SSO wrong..
shut the fuck up! you want a php cms, make one, Aaron learned ColdFusion so he is not going to code a php cms just to suite you! This is an excellent cms, it is not anyone elses fault that you do not know how to setup ColdFusion.
-
Re: Phoenix CMS [UberEmu Compatible]
Quote:
Originally Posted by
thetrev14
Link to swfs that will work for client? I tried my old r63 (i think they are r63) they didnt work. I tried r59, They didnt work :\
/client/index.cfm
Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<!-- Read config.ini settings & apply them -->
<cfset iniFile = expandPath("/config.ini")>
<cfset DSN = getProfileString(iniFile, "coldfusion", "DSN")>
<!-- Read config.ini settings & apply them -->
<cfinclude template = "/system/functions/checkusersession.cfm" />
<cfinclude template = "/system/functions/loadclientsettings.cfm" />
<cfscript>
function randString(type,ct){ var i=1; var randStr=""; var randNum=""; var
useList=""; var
alpha="A,B,C,D,E,F,G,H,I,J,K,L,M,N,O,P,Q,R,S,T,U,V,W,X,Y,Z,a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u,v,w,x,y,z";
var secure="!,@,$,%,&,*,-,_,=,+,?,~"; for(i=1;i LTE ct;i=i+1){
randNum=RandRange(1,10); useList="0,1,2,3,4,5,6,7,8,9";
randStr="#randStr##ListGetAt(useList,randNum)#"; } return randStr; }
</cfscript>
<cfset rand1 ="#randString('numeric',6)#" />
<cfset rand2 ="#randString('numeric',5)#" />
<cfset rand3 ="#randString('numeric',5)#" />
<cfset rand4 ="#randString('numeric',5)#" />
<cfset rand5 ="#randString('numeric',5)#" />
<cfset rand6 ="#randString('numeric',1)#" />
<cfset ticket ="ST-#rand1#-#rand2##rand3#-#rand4##rand5#-otaku-#rand6#">
<cfquery name="ssoticket" datasource="#DSN#">
UPDATE users SET auth_ticket = '#ticket#' WHERE username = '#session.username#'
</cfquery>
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en" xmlns:og="http://opengraphprotocol.org/schema/" xmlns:fb="http://www.facebook.com/2008/fbml">
<head>
<title>SpazzLake: Client</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<style type="text/css">
body {
background-color: #000000;
color: #FFFFFF;
margin: 0;
padding: 0;
}
a {
color: #FFFFFF;
}
div#client { margin:0; }
</style>
<script src="./swfobject.js"></script>
</head>
<body>
<center>
<div id="client-ui">
<div id="client" style='position:absolute; left:0; right:0; top:0; bottom:0; overflow:hidden; height:100%; width:100%;'>
</div>
</div>
<cfoutput>
<script>
var Client = new SWFObject("http://spazzlake.co.cc/gordon/RELEASE63-30321-30315-201011261026_5c1cea64af7b6d2573b0d9936b1fa1ad/Habbo.swf", "client", "100%", "100%", "10.0.0");
Client.addParam( 'base', 'http://spazzlake.co.cc/gordon/RELEASE63-30321-30315-201011261026_5c1cea64af7b6d2573b0d9936b1fa1ad/' );
Client.addParam( 'allowScriptAccess', true );
Client.addParam( 'menu', false );
Client.addVariable( "client.allow.cross.domain", "0" );
Client.addVariable( "client.notify.cross.domain", "1" );
Client.addVariable( "connection.info.host", "#client_ip#" );
Client.addVariable( "connection.info.port", "#client_port#" );
Client.addVariable( "site.url", "http://spazzlake.co.cc/" );
Client.addVariable( "url.prefix", "http://spazzlake.co.cc/" );
Client.addVariable( "client.reload.url", "#cms_url#/reauthenticate.cfm?page=/client" );
Client.addVariable( "client.fatal.error.url", "#cms_url#/client/disconnected.cfm?flash_client_error" );
Client.addVariable( "client.connection.failed.url", "#cms_url#/client/disconnected.cfm?client_connection_failed" );
Client.addVariable( "external.variables.txt", "http://spazzlake.co.cc/gamedata/external_variables.txt" );
Client.addVariable( "external.texts.txt", "http://spazzlake.co.cc/gamedata/external_flash_texts.txt" );
Client.addVariable( "use.sso.ticket", "1" );
Client.addVariable( "sso.ticket", "#ticket#" );
Client.addVariable( "processlog.enabled", "0" );
//Client.addVariable( "account_id", "" );
Client.addVariable( "client.starting", "Please+wait%21+Spazz+is+starting+up." );
Client.addVariable( "flash.client.url", "http://spazzlake.co.cc/gordon/RELEASE63-30321-30315-201011261026_5c1cea64af7b6d2573b0d9936b1fa1ad/" );
Client.addVariable( "flash.client.origin", "popup" );
//New Habbo Stuff - they I didn't think we needed..
//Client.addVariable( "external.override.texts.txt", "" );
//Client.addVariable( "external.override.variables.txt", "" );
//Client.addVariable( "productdata.load.url", "http://hotel-us.habbo.com/gamedata/productdata/387c9ca84ebbf9242686e69a161e787e5aa3cce7" );
//Client.addVariable( "furnidata.load.url", "http://hotel-us.habbo.com/gamedata/furnidata/d3527b24a48164fcb83892738205d19a359cb2ed" );
Client.addVariable( "user.hash", "" );
//Client.addVariable( "has.identity", "1" );
Client.write( 'client' );
</script>
</cfoutput>
</center>
</body>
</html>
./Client/
Download And Add
Code:
http://www.mediafire.com/?32aaorqz6baqcqv
Took most of this code from h4bbo
-
Re: Phoenix CMS [UberEmu Compatible]
PEJump you judge to much. Yet in your signature you have a CMS you are making, so you can go ahead and use it. He is not forcing you to use his CMS.
-
Re: Phoenix CMS [UberEmu Compatible]
-
Re: Phoenix CMS [UberEmu Compatible]
Quote:
Originally Posted by
SpazzEmu
/client/index.cfm
Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<!-- Read config.ini settings & apply them -->
<cfset iniFile = expandPath("/config.ini")>
<cfset DSN = getProfileString(iniFile, "coldfusion", "DSN")>
<!-- Read config.ini settings & apply them -->
<cfinclude template = "/system/functions/checkusersession.cfm" />
<cfinclude template = "/system/functions/loadclientsettings.cfm" />
<cfscript>
function randString(type,ct){ var i=1; var randStr=""; var randNum=""; var
useList=""; var
alpha="A,B,C,D,E,F,G,H,I,J,K,L,M,N,O,P,Q,R,S,T,U,V,W,X,Y,Z,a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u,v,w,x,y,z";
var secure="!,@,$,%,&,*,-,_,=,+,?,~"; for(i=1;i LTE ct;i=i+1){
randNum=RandRange(1,10); useList="0,1,2,3,4,5,6,7,8,9";
randStr="#randStr##ListGetAt(useList,randNum)#"; } return randStr; }
</cfscript>
<cfset rand1 ="#randString('numeric',6)#" />
<cfset rand2 ="#randString('numeric',5)#" />
<cfset rand3 ="#randString('numeric',5)#" />
<cfset rand4 ="#randString('numeric',5)#" />
<cfset rand5 ="#randString('numeric',5)#" />
<cfset rand6 ="#randString('numeric',1)#" />
<cfset ticket ="ST-#rand1#-#rand2##rand3#-#rand4##rand5#-otaku-#rand6#">
<cfquery name="ssoticket" datasource="#DSN#">
UPDATE users SET auth_ticket = '#ticket#' WHERE username = '#session.username#'
</cfquery>
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en" xmlns:og="http://opengraphprotocol.org/schema/" xmlns:fb="http://www.facebook.com/2008/fbml">
<head>
<title>SpazzLake: Client</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<style type="text/css">
body {
background-color: #000000;
color: #FFFFFF;
margin: 0;
padding: 0;
}
a {
color: #FFFFFF;
}
div#client { margin:0; }
</style>
<script src="./swfobject.js"></script>
</head>
<body>
<center>
<div id="client-ui">
<div id="client" style='position:absolute; left:0; right:0; top:0; bottom:0; overflow:hidden; height:100%; width:100%;'>
</div>
</div>
<cfoutput>
<script>
var Client = new SWFObject("http://spazzlake.co.cc/gordon/RELEASE63-30321-30315-201011261026_5c1cea64af7b6d2573b0d9936b1fa1ad/Habbo.swf", "client", "100%", "100%", "10.0.0");
Client.addParam( 'base', 'http://spazzlake.co.cc/gordon/RELEASE63-30321-30315-201011261026_5c1cea64af7b6d2573b0d9936b1fa1ad/' );
Client.addParam( 'allowScriptAccess', true );
Client.addParam( 'menu', false );
Client.addVariable( "client.allow.cross.domain", "0" );
Client.addVariable( "client.notify.cross.domain", "1" );
Client.addVariable( "connection.info.host", "#client_ip#" );
Client.addVariable( "connection.info.port", "#client_port#" );
Client.addVariable( "site.url", "http://spazzlake.co.cc/" );
Client.addVariable( "url.prefix", "http://spazzlake.co.cc/" );
Client.addVariable( "client.reload.url", "#cms_url#/reauthenticate.cfm?page=/client" );
Client.addVariable( "client.fatal.error.url", "#cms_url#/client/disconnected.cfm?flash_client_error" );
Client.addVariable( "client.connection.failed.url", "#cms_url#/client/disconnected.cfm?client_connection_failed" );
Client.addVariable( "external.variables.txt", "http://spazzlake.co.cc/gamedata/external_variables.txt" );
Client.addVariable( "external.texts.txt", "http://spazzlake.co.cc/gamedata/external_flash_texts.txt" );
Client.addVariable( "use.sso.ticket", "1" );
Client.addVariable( "sso.ticket", "#ticket#" );
Client.addVariable( "processlog.enabled", "0" );
//Client.addVariable( "account_id", "" );
Client.addVariable( "client.starting", "Please+wait%21+Spazz+is+starting+up." );
Client.addVariable( "flash.client.url", "http://spazzlake.co.cc/gordon/RELEASE63-30321-30315-201011261026_5c1cea64af7b6d2573b0d9936b1fa1ad/" );
Client.addVariable( "flash.client.origin", "popup" );
//New Habbo Stuff - they I didn't think we needed..
//Client.addVariable( "external.override.texts.txt", "" );
//Client.addVariable( "external.override.variables.txt", "" );
//Client.addVariable( "productdata.load.url", "http://hotel-us.habbo.com/gamedata/productdata/387c9ca84ebbf9242686e69a161e787e5aa3cce7" );
//Client.addVariable( "furnidata.load.url", "http://hotel-us.habbo.com/gamedata/furnidata/d3527b24a48164fcb83892738205d19a359cb2ed" );
Client.addVariable( "user.hash", "" );
//Client.addVariable( "has.identity", "1" );
Client.write( 'client' );
</script>
</cfoutput>
</center>
</body>
</html>
./Client/
Download And Add
Code:
http://www.mediafire.com/?32aaorqz6baqcqv
Took most of this code from h4bbo
Release the SWF
-
Re: Phoenix CMS [UberEmu Compatible]
I know my problem. When i run my emu (Syther) It goes to http://localhost/account/disconnecte...t&origin=popup
And it says page not found basically. But when i turn emu off it loads all the way. :\. What can i do to fix this??
Note: Id post screens but tinypic is the only picture thingy i know and its loading pics slow and im too impatient lol
-
Re: Phoenix CMS [UberEmu Compatible]
Quote:
Originally Posted by
vLife
PEJump you judge to much. Yet in your signature you have a CMS you are making, so you can go ahead and use it. He is not forcing you to use his CMS.
hypocrite.
-
Re: Phoenix CMS [UberEmu Compatible]
Quote:
Originally Posted by
thetrev14
I know my problem. When i run my emu (Syther) It goes to
http://localhost/account/disconnecte...t&origin=popup
And it says page not found basically. But when i turn emu off it loads all the way. :\. What can i do to fix this??
Note: Id post screens but tinypic is the only picture thingy i know and its loading pics slow and im too impatient lol
Because the emu