-
Re: Phoenix CMS [UberEmu Compatible]
Wow, nice man Good luck with it and hope it Go's good ;D
-
Re: Phoenix CMS [UberEmu Compatible]
Getting better with each update! I like it alot :)
-
Re: Phoenix CMS [UberEmu Compatible]
Right finished off the basics for commenting, users can now submit comments and what not - I gotta throw together a thing so mods can remove comments easily later but I'm starving so it's break time for me ^_^
http://img534.imageshack.us/img534/5741/commenting.gif
-
Re: Phoenix CMS [UberEmu Compatible]
Uhh, try to make an spam-filter also (:
And damn, you'r layout is getting sexyier every minute.
-
Re: Phoenix CMS [UberEmu Compatible]
Quote:
Originally Posted by
PEjump2
Uhh, try to make an spam-filter also (:
And damn, you'r layout is getting sexyier every minute.
That's probably something I'll do in the future - however in the meantime I made the comment box and submit button go away so that people don't just spam click submit - intentionally or accidentally.
-
Re: Phoenix CMS [UberEmu Compatible]
Quote:
Originally Posted by
PEjump2
Uhh, try to make an spam-filter also (:
And damn, you'r layout is getting sexyier every minute.
I know right ;) I love them and + A spam filter will be good (:
-
Re: Phoenix CMS [UberEmu Compatible]
Started working on the user settings page now, got the first 3 options done and dusted (only the block friend requests option will work by default on uber, you'll need to code the other 2 settings into your emulator yourself or alternatively use Phoenix 3.0 when it's released);
http://img207.imageshack.us/img207/2...tsettingsc.png
-
Re: Phoenix CMS [UberEmu Compatible]
Damn nice, and how much does an Phoenix license cost?
And when is the PHP version ready for download? ^_^
-
Re: Phoenix CMS [UberEmu Compatible]
Uhm it's like 20 Uk money Lol ;D and Yh I was going too buy it but ;) no offence I just love RageZONE aha (:
-
Re: Phoenix CMS [UberEmu Compatible]
Finally done login error boxes - no more guessing what went wrong and why you're back at the start, heh;
http://img202.imageshack.us/img202/9339/loginyb.png
I've also done the update password page in user settings, working fine;
http://img249.imageshack.us/img249/318/passwordg.png
-
Re: Phoenix CMS [UberEmu Compatible]
Awww, Nice ;) Hope to see it out soon for the Phoenix Licenced people!
(Off-topic; I still love habborp But Not much people go on anymore :l )
-
Re: Phoenix CMS [UberEmu Compatible]
my god this needs to get released already I can't wait anymore!
-
Re: Phoenix CMS [UberEmu Compatible]
Almost finished all of the user settings options now, just thrown together the user email settings now, it checks if someone else is using the email and that it is a valid email before submission;
http://img41.imageshack.us/img41/7010/emaill0.png
http://img15.imageshack.us/img15/5969/email2i.png
http://img42.imageshack.us/img42/2298/email3.png
One last thing to do and that's email verification.
-
Re: Phoenix CMS [UberEmu Compatible]
This Is Nice Man Can't Wait
-
Re: Phoenix CMS [UberEmu Compatible]
MY GOD RELEASE IT DX. Im gonna suck your d*** if you don't release this today.
Off-Topic: Hey Tren babes :D
-
Re: Phoenix CMS [UberEmu Compatible]
Very nice indeed, I still find myself very unkeen on the layout.. :( Could you upload some spinets of code?
-
Re: Phoenix CMS [UberEmu Compatible]
Quote:
Originally Posted by
Pure
Very nice indeed, I still find myself very unkeen on the layout.. :( Could you upload some spinets of code?
Such as? Also the whole template is pretty much CSS driven so you can easily modify the look by creating a new skin and changing the CSS - I'll probably do another skin or 2 at some point too.
-
Re: Phoenix CMS [UberEmu Compatible]
do you know a excat release date of this? :$
-
Re: Phoenix CMS [UberEmu Compatible]
Quote:
Originally Posted by
No0b
do you know a excat release date of this? :$
No idea.
-
Re: Phoenix CMS [UberEmu Compatible]
Goodluck Aaron I hope you will be releasing this today because i am very looking into this.
-
Re: Phoenix CMS [UberEmu Compatible]
Quote:
Originally Posted by
psykoo
Goodluck Aaron I hope you will be releasing this today because i am very looking into this.
Today? Not a chance lol xD
---------- Post added at 07:14 AM ---------- Previous post was at 06:48 AM ----------
Right, done and dusted. Clicking the Re-send verification email button will now email the user with a link where they can validate their email address;
http://img543.imageshack.us/img543/2120/emailsent.png
http://img190.imageshack.us/img190/1...ilvalidate.png
http://img100.imageshack.us/img100/4...lvalidated.png
-
Re: Phoenix CMS [UberEmu Compatible]
Making good progress!
OT: Stop asking for a release and release date because it just winds people up, and I'm sure it's against the rules. If it isn't, it should be.
-
Re: Phoenix CMS [UberEmu Compatible]
Not exactly a huge update, but staff comments are now highlighted (again - easy enough to change the colours and appearance in the css files);
http://img338.imageshack.us/img338/3...ffcomments.png
-
Re: Phoenix CMS [UberEmu Compatible]
Cewl, But i didn't know that ColdFusion had an mail-function? :o
-
Re: Phoenix CMS [UberEmu Compatible]
Quote:
Originally Posted by
Sojobo
Such as? Also the whole template is pretty much CSS driven so you can easily modify the look by creating a new skin and changing the CSS - I'll probably do another skin or 2 at some point too.
I'm just not to sure on colours and stuff, I'm more of a gradient man, why not have a look into css3 stuff?
I wouldn't mind seeing the snipets of code for email verification. (sending the email and such.. and then the receiving of it.)
@above, I agree. Unless, his linking it in with php some how..
-
Re: Phoenix CMS [UberEmu Compatible]
cfmail bro;
Code:
<cfmail
from="contact@*************.com"
to="#user.mail#"
subject="Habboon: Validate your email address"
server="smtp.googlemail.com"
username = "contact@*************.com"
password = "password"
port = "465"
useSSL = "yes"
type = "html">
<cfinclude template="/system/email/resend.htm">
</cfmail>
And the verification page;
Code:
<!-- Read config.ini settings & apply them -->
<cfset iniFile = expandPath("/config.ini")>
<cfset DSN = getProfileString(iniFile, "coldfusion", "DSN")>
<!-- Read config.ini settings & apply them -->
<cfquery name = "GrabUser" datasource = "#DSN#">
SELECT *
FROM users
WHERE mail = '#url.mail#'
LIMIT 1
</cfquery>
<cfif not GrabUser.recordcount>
<cfset StructClear(session)>
<cflocation url="/index.cfm" addtoken="no">
</cfif>
<cfif GrabUser.mail_verified is url.ver AND not url.ver is "0">
<cfquery name = "VerifyEmail" datasource = "#DSN#">
UPDATE users
SET mail_verified = "true"
WHERE mail = "#url.mail#"
</cfquery>
<cflocation url="/content/1-Home/settings.cfm?page=email&validated=true" addtoken="no">
</cfif>
<cflocation url="/index.cfm" addtoken="no">
-
Re: Phoenix CMS [UberEmu Compatible]
-
Re: Phoenix CMS [UberEmu Compatible]
I've gotta admit, I like the fact that CF is so alike to HTML, however, I just love the syntax of php.. Also, isn't there anyway of commenting
<!-- Read config.ini settings & apply them -->
so it isn't displayed in browser, for instance //in php.
-
Re: Phoenix CMS [UberEmu Compatible]
Uh I don't think so - they're just html comments - they don't need to be in there but I have a few scattered around, usually when I'm half asleep and need reminders of what I'm doing and what I'm up to lol.
I usually place comments in places so that if a page errors out I can view source and see where it got to before crashing - that way I can narrow down the source of the problem, for instance I do it with the login script;
Code:
<!-- Read config.ini settings & apply them -->
<cfset iniFile = expandPath("/config.ini")>
<cfset DSN = getProfileString(iniFile, "coldfusion", "DSN")>
<!-- Read config.ini settings & apply them -->
<!-- WHAT THE FUCK WHY ISN'T THIS SHIT WORKING?! -->
<cfif not isdefined('form.username') OR not isdefined('form.password') OR isdefined('url.session.account')>
<cflocation url="/mexico.cfm?error=fields" Addtoken="no">
</cfif>
<cfquery name = "userexists" datasource = "#DSN#">
SELECT *
FROM users
WHERE username = '#form.username#'
</cfquery>
<cfquery name = "mailexists" datasource = "#DSN#">
SELECT *
FROM users
WHERE mail = '#form.username#'
</cfquery>
<cfif not userexists.RecordCount AND not mailexists.RecordCount>
<cflocation url="/index.cfm?error=username" Addtoken="no">
</cfif>
<cfif not form.username is ""><!-- check for username in form -->
<cfif not form.password is ""><!-- check for password in form -->
<!-- Are we logging in with an email? -->
<cfif hash(form.password) is mailexists.password><!-- check if pass is right -->
<!-- set session username -->
<cfset session.account = #form.username#>
<cfquery name = "UpdateLastLogin" datasource = "#DSN#">
UPDATE users
SET last_online = UNIX_TIMESTAMP(), ip_last = '#CGI.REMOTE_ADDR#'
WHERE mail = '#form.username#'
</cfquery>
<cflocation url="/characters.cfm" Addtoken="no">
<!-- Are we logging in with an account name? -->
<cfelseif hash(form.password) is userexists.password><!-- check if pass is right -->
<!-- set session username -->
<cfquery name = "UpdateLastLogin" datasource = "#DSN#">
UPDATE users
SET last_online = UNIX_TIMESTAMP(), ip_last = '#CGI.REMOTE_ADDR#'
WHERE username = '#form.username#'
</cfquery>
<cfset session.account = #userexists.mail#>
<cfset session.username = #form.username#>
<cflocation url="/main.cfm" Addtoken="no">
<cfelse>
<cflocation url="/index.cfm?error=password" Addtoken="no">
</cfif>
<cfelse>
<cflocation url="/index.cfm?error=password" Addtoken="no">
</cfif>
<cfelse>
<cflocation url="/index.cfm?error=username" Addtoken="no">
</cfif>
Huh I need to fix that mexico link lol - looks like I was frustrated xD
-
Re: Phoenix CMS [UberEmu Compatible]
Quote:
Originally Posted by
Sojobo
Uh I don't think so - they're just html comments - they don't need to be in there but I have a few scattered around, usually when I'm half asleep and need reminders of what I'm doing and what I'm up to lol.
I usually place comments in places so that if a page errors out I can view source and see where it got to before crashing - that way I can narrow down the source of the problem, for instance I do it with the login script;
Code:
<!-- Read config.ini settings & apply them -->
<cfset iniFile = expandPath("/config.ini")>
<cfset DSN = getProfileString(iniFile, "coldfusion", "DSN")>
<!-- Read config.ini settings & apply them -->
<!-- WHAT THE FUCK WHY ISN'T THIS SHIT WORKING?! -->
<cfif not isdefined('form.username') OR not isdefined('form.password') OR isdefined('url.session.account')>
<cflocation url="/mexico.cfm?error=fields" Addtoken="no">
</cfif>
<cfquery name = "userexists" datasource = "#DSN#">
SELECT *
FROM users
WHERE username = '#form.username#'
</cfquery>
<cfquery name = "mailexists" datasource = "#DSN#">
SELECT *
FROM users
WHERE mail = '#form.username#'
</cfquery>
<cfif not userexists.RecordCount AND not mailexists.RecordCount>
<cflocation url="/index.cfm?error=username" Addtoken="no">
</cfif>
<cfif not form.username is ""><!-- check for username in form -->
<cfif not form.password is ""><!-- check for password in form -->
<!-- Are we logging in with an email? -->
<cfif hash(form.password) is mailexists.password><!-- check if pass is right -->
<!-- set session username -->
<cfset session.account = #form.username#>
<cfquery name = "UpdateLastLogin" datasource = "#DSN#">
UPDATE users
SET last_online = UNIX_TIMESTAMP(), ip_last = '#CGI.REMOTE_ADDR#'
WHERE mail = '#form.username#'
</cfquery>
<cflocation url="/characters.cfm" Addtoken="no">
<!-- Are we logging in with an account name? -->
<cfelseif hash(form.password) is userexists.password><!-- check if pass is right -->
<!-- set session username -->
<cfquery name = "UpdateLastLogin" datasource = "#DSN#">
UPDATE users
SET last_online = UNIX_TIMESTAMP(), ip_last = '#CGI.REMOTE_ADDR#'
WHERE username = '#form.username#'
</cfquery>
<cfset session.account = #userexists.mail#>
<cfset session.username = #form.username#>
<cflocation url="/main.cfm" Addtoken="no">
<cfelse>
<cflocation url="/index.cfm?error=password" Addtoken="no">
</cfif>
<cfelse>
<cflocation url="/index.cfm?error=password" Addtoken="no">
</cfif>
<cfelse>
<cflocation url="/index.cfm?error=username" Addtoken="no">
</cfif>
Huh I need to fix that mexico link lol - looks like I was frustrated xD
Haha, If I was you I would do some research into optimizing your query's... for instance, ALWAYS. I mean ALWAYS. Have ; at the of your querys.
for instance:
Code:
SELECT null FROM users WHERE id = 1 LIMIT 1;
Also, only grab what is needed, in this case, nothing is needed so we use NULL, i've also limited it to 1, because there can only be one row returned, but its nice to LIMIT 1, so the query doesn't keep looking for others with the ID of 1, which would save alot of time load with a large db..
I love mySQL. I'm extremely fluent in it, so ya.. Only one thing I hate to see people do is this...
Code:
id = SELECT id FROM users WHERE name = 'Pure' LIMIT 1;
SELECT user_group FROM groups WHERE id_user = id LIMIT 1;
You could easily do this via a dual query.. for instance.
Code:
SELECT
g.user_group
FROM
users AS u, groups AS g
WHERE
u.username = 'Pure' AND g.id_user = u.id
LIMIT 1;
I know thats a little oftopic, but I hope you're using the query right, from the looks of it your not but still, If you need any help.. PM me your msn and I will help you.
-
Re: Phoenix CMS [UberEmu Compatible]
Quote:
Originally Posted by
Pure
Haha, If I was you I would do some research into optimizing your query's... for instance, ALWAYS. I mean ALWAYS. Have ; at the of your querys.
for instance:
Code:
SELECT null FROM users WHERE id = 1 LIMIT 1;
Also, only grab what is needed, in this case, nothing is needed so we use NULL, i've also limited it to 1, because there can only be one row returned, but its nice to LIMIT 1, so the query doesn't keep looking for others with the ID of 1, which would save alot of time load with a large db..
I love mySQL. I'm extremely fluent in it, so ya.. Only one thing I hate to see people do is this...
Code:
id = SELECT id FROM users WHERE name = 'Pure' LIMIT 1;
SELECT user_group FROM groups WHERE id_user = id LIMIT 1;
You could easily do this via a dual query.. for instance.
Code:
SELECT
g.user_group
FROM
users AS u, groups AS g
WHERE
u.username = 'Pure' AND g.id_user = u.id
LIMIT 1;
I know thats a little oftopic, but I hope you're using the query right, from the looks of it your not but still, If you need any help.. PM me your msn and I will help you.
Yeah I use LIMIT 1 in most places, however there are some places in which I can't just limit 1. Although looking at that login page yeah it needs some fixing up.
Also I know that you can get fancy with SQL statements by merging multiple queries into one like that but I've not really got to grips with that yet - definitely something I'll be looking into in the future though
-
Re: Phoenix CMS [UberEmu Compatible]
Quote:
Originally Posted by
Sojobo
Yeah I use LIMIT 1 in most places, however there are some places in which I can't just limit 1. Although looking at that login page yeah it needs some fixing up.
Also I know that you can get fancy with SQL statements by merging multiple queries into one like that but I've not really got to grips with that yet - definitely something I'll be looking into in the future though
yeh, it isn't something you learn overnight, it takes time.. it took me a while, but I've got my head around it, and once you've learnt it you can merge like 4 tables if needs be.. haha.
-
Re: Phoenix CMS [UberEmu Compatible]
I'm probably going to be concentrating a lot on the actual emulator over the next few days now that the CMS has most of the core in place.
The main things that I still want to do for the CMS are;
- Housekeeping
- Home system
- Installer, including upgrading
- Might also do a mini-forum system
- Might attempt to finish my Habbo Imager that I started for HabboRP and implement it in this
That reminds me there is one more core feature I need to do - password recovery & resetting.
The housekeeping system will be using the same template design that I use for the HabboRP housekeeping and probably a lot of the same coding too;
http://img808.imageshack.us/img808/5...usekeeping.png
-
Re: Phoenix CMS [UberEmu Compatible]
Quote:
Originally Posted by
Sojobo
I'm probably going to be concentrating a lot on the actual emulator over the next few days now that the CMS has most of the core in place.
The main things that I still want to do for the CMS are;
- Housekeeping
- Home system
- Installer, including upgrading
- Might also do a mini-forum system
- Might attempt to finish my Habbo Imager that I started for HabboRP and implement it in this
That reminds me there is one more core feature I need to do - password recovery & resetting.
The housekeeping system will be using the same template design that I use for the HabboRP housekeeping and probably a lot of the same coding too;
http://img808.imageshack.us/img808/5...usekeeping.png
i love that housekeeping layout:thumbup:
-
Re: Phoenix CMS [UberEmu Compatible]
Yeah that housekeeping layout is simple & looks like Habbo's old housekeeping :)
-
Re: Phoenix CMS [UberEmu Compatible]
Quote:
Originally Posted by
Sojobo
I'm probably going to be concentrating a lot on the actual emulator over the next few days now that the CMS has most of the core in place.
The main things that I still want to do for the CMS are;
- Housekeeping
- Home system
- Installer, including upgrading
- Might also do a mini-forum system
- Might attempt to finish my Habbo Imager that I started for HabboRP and implement it in this
That reminds me there is one more core feature I need to do - password recovery & resetting.
The housekeeping system will be using the same template design that I use for the HabboRP housekeeping and probably a lot of the same coding too;
http://img808.imageshack.us/img808/5...usekeeping.png
Tha just look's, SEXY! Keep on going 'bruda.
-
Re: Phoenix CMS [UberEmu Compatible]
Wow, Sexy (: man Keep it up <3
-
Re: Phoenix CMS [UberEmu Compatible]
Excellent, have you took up a job in ColdFusion coding or coding of any sort? I think you would make a lot of money by selling ColdFusion websites.. you seem to be very good and have lots of skills!
-
Re: Phoenix CMS [UberEmu Compatible]
I cannot wait for this release any more! :D
It looks pretty awesome so far, hope it continues this way
-
Re: Phoenix CMS [UberEmu Compatible]
Can someone tell me why so much people like ColdFusion when its actually hard 2 setup & you'll need to buy an ColdFusion license or something like that o_O.
-
Re: Phoenix CMS [UberEmu Compatible]
The layout just calls to me, its so effective.
-
Re: Phoenix CMS [UberEmu Compatible]
Got bored so I started to work on a second theme, as you can see skinning the CMS is really easy - I made this in less than 5 minutes (as you can see it needs some touching up as some font is white where it needs to be black and vice versa), overall looking quite sleek for a quick mess around;
http://img683.imageshack.us/img683/9100/blackao.png
-
Re: Phoenix CMS [UberEmu Compatible]
lol you sure know how to design aaron
-
Re: Phoenix CMS [UberEmu Compatible]
Got bored waiting for some files to upload so I fixed it up somemore;
http://img148.imageshack.us/img148/7757/black2x.png
-
Re: Phoenix CMS [UberEmu Compatible]
i think i seen that before on habborp right? anyway it looks awesome how does it work? reads data from the database?
-
Re: Phoenix CMS [UberEmu Compatible]
nice work aaron liking it so far
-
Re: Phoenix CMS [UberEmu Compatible]
Oh the server stats? Yeah that's something I coded into RetroTopSites.com, it monitors all the retros that sign up to it and it monitors their users online.. I'm recreating RetroTopSites from scratch atm though so it's a blank site atm.. I've decided to write my own topsites script from scratch as I was bored of advaark and felt like a challenge.
-
Re: Phoenix CMS [UberEmu Compatible]
Hmm, That new style is more like an recolor though :P
-
Re: Phoenix CMS [UberEmu Compatible]
Quote:
Originally Posted by
PEjump2
Hmm, That new style is more like an recolor though :P
Pretty much, new background image and just some colour changes in the CSS file. Quick, simple, easy and effective! :)
-
Re: Phoenix CMS [UberEmu Compatible]
Wow Aaron Maybe u Could help me Im Coding a Flat file Cms For Hablux Rp v18
n I duno how To Do your Moving bar Thingys For the Workout
-
Re: Phoenix CMS [UberEmu Compatible]
Sorry but I never have, and most likely never will, help anyone with recreating my website (HabboRP.com).
-
Re: Phoenix CMS [UberEmu Compatible]
Loving the easy theme switching! I presume it is also easy for people to add there own themes?
-
Re: Phoenix CMS [UberEmu Compatible]
Quote:
Originally Posted by
Hejula
Loving the easy theme switching! I presume it is also easy for people to add there own themes?
Simply copy and paste a folder, rename it to what you want your theme called and then edit the files inside the folder. Simples.
-
Re: Phoenix CMS [UberEmu Compatible]
Nice, its almost as simple as 0+1!
-
Re: Phoenix CMS [UberEmu Compatible]
lol when you say "Simples" it reminds me of that comparethemarket guy, its great that you can do themes easily. what are you coding atm on the cms?
-
Re: Phoenix CMS [UberEmu Compatible]
Quote:
Originally Posted by
Žak™
lol when you say "Simples" it reminds me of that comparethemarket guy, its great that you can do themes easily. what are you coding atm on the cms?
Been spending most of my time the past few days working on actual emu stability, it's gone leaps and bounds forward too. Managed to take it from something that crashes several times an hour to something that can run with 170 online for 24 hours. Got another big fix to upload soon too, not sure what it will do to stability but it will be interesting to see what happens ^_^
Next on the agenda for the CMS is probably password/account recovery.
-
Re: Phoenix CMS [UberEmu Compatible]
It's available for purchase, correct? When will it be open to the public? If it's not already.
-
Re: Phoenix CMS [UberEmu Compatible]
Quote:
Originally Posted by
uberCMS
It's available for purchase, correct? When will it be open to the public? If it's not already.
Phoenix CMS is free & open-source,
And Phoenix EMU is licensed :P
-
Re: Phoenix CMS [UberEmu Compatible]
Oh, ;P Has the CMS been released?
-
Re: Phoenix CMS [UberEmu Compatible]
Quote:
Originally Posted by
uberCMS
Oh, ;P Has the CMS been released?
The older versions are released on Otaku.
-
Re: Phoenix CMS [UberEmu Compatible]
Is phoenix emu a Flash Emulator?
If not is the Phoenix cms that works with uber emu already released?
-
Re: Phoenix CMS [UberEmu Compatible]
Quote:
Originally Posted by
ered
Is phoenix emu a Flash Emulator?
If not is the Phoenix cms that works with uber emu already released?
Yes, it's flash, and yes - this version of the cms is made to be compatible with Uber (although some features may not work 100% without Phoenix - I'll make options to disable the shiny extras for uber users).
-
Re: Phoenix CMS [UberEmu Compatible]
Quote:
Originally Posted by
Sojobo
Yes, it's flash, and yes - this version of the cms is made to be compatible with Uber (although some features may not work 100% without Phoenix - I'll make options to disable the shiny extras for uber users).
cool story bro,
I think ONE day you could release Phoenix...
:wink:
-
Re: Phoenix CMS [UberEmu Compatible]
Quote:
Originally Posted by
PowahAlert
cool story bro,
I think ONE day you could release Phoenix...
:wink:
I think releasing it would be pointless. The amount of people that appear to have bought it on 0taku says it all :P
-
Re: Phoenix CMS [UberEmu Compatible]
Sojobo this looks very promising, goodluck.
-
Re: Phoenix CMS [UberEmu Compatible]
Quote:
Originally Posted by
Hejula
I think releasing it would be pointless. The amount of people that appear to have bought it on 0taku says it all :P
True...
:thumbup:
-
Re: Phoenix CMS [UberEmu Compatible]
Just found this thread. Haven't been in the Habbo section much lately. I am really liking that Javascript :).
-
Re: Phoenix CMS [UberEmu Compatible]
Is this development ever going to be released, as it seems complete to me?
-FS
-
Re: Phoenix CMS [UberEmu Compatible]
Quote:
Originally Posted by
FreedomSaint
Is this development ever going to be released, as it seems complete to me?
-FS
Same question here buddy.
-
Re: Phoenix CMS [UberEmu Compatible]
yes it will be released, but I'm spending all my time on the Emulator half atm. Once it's stable I'll finish this off.
-
Re: Phoenix CMS [UberEmu Compatible]
Ur going to release the emulator,too?
-
Re: Phoenix CMS [UberEmu Compatible]
Quote:
Originally Posted by
DjInTrouble
Ur going to release the emulator,too?
The emulator isn't freeware.
-
Re: Phoenix CMS [UberEmu Compatible]
Quote:
Originally Posted by
DjInTrouble
Ur going to release the emulator,too?
He's going to slap another license on it, which I think he shouldn't do, but I can't stop him? Anyway he'll be selling it just like he did with the previous versions.
-
Re: Phoenix CMS [UberEmu Compatible]
Quote:
Originally Posted by
RockStar7
He's going to slap another license on it, which I think he shouldn't do, but I can't stop him? Anyway he'll be selling it just like he did with the previous versions.
It's kind of his choice, if he has worked on this alot, why not get some cash from it... Although I'm sure it's just an edit like Phoenix, which should never have been sold.
-
Re: Phoenix CMS [UberEmu Compatible]
Quote:
Originally Posted by
Admiral-Speedy
It's kind of his choice, if he has worked on this alot, why not get some cash from it... Although I'm sure it's just an edit like Phoenix, which should never have been sold.
Agreed. I can see his standpoint, yes he has input hours of work, but so have many others and they have provided their software for free.
-
Re: Phoenix CMS [UberEmu Compatible]
It's kinda in his rights too since he bought uber?
-
Re: Phoenix CMS [UberEmu Compatible]
Quote:
Originally Posted by
Grant
It's kinda in his rights too since he bought uber?
Yah exactly, I paid for uber, if it wasn't for me none of you would have a flash hotel, so deal with it.
-
Re: Phoenix CMS [UberEmu Compatible]
Aaron bought Uber from Roy for about £100 or so, He can do what he likes with it, although I still disagree about previous versions being Holograph but I never bought it anyway.
-
Re: Phoenix CMS [UberEmu Compatible]
Quote:
Yah exactly, I paid for uber, if it wasn't for me none of you would have a flash hotel, so deal with it.
Thanks to MDK :)
-
Re: Phoenix CMS [UberEmu Compatible]
I think he should just release it to the community. He may own the rights and I respect his discion to make you pay for it. I dont think I would ever make the community pay for software though... thats just my opinion though.
-
Re: Phoenix CMS [UberEmu Compatible]
Who cares if he dont release it to the community? He has his own forum is you do not know and he sells his products here.
-
Re: Phoenix CMS [UberEmu Compatible]
I dont wanna go and buy good revolutanary software. If it is gonna help the community, u release it to the community as freeware, enough said.
-
Re: Phoenix CMS [UberEmu Compatible]
He is releasing a free one to the community.
-
Re: Phoenix CMS [UberEmu Compatible]
A free emulator or a free CMS?
-
Re: Phoenix CMS [UberEmu Compatible]
-
Re: Phoenix CMS [UberEmu Compatible]
-
Re: Phoenix CMS [UberEmu Compatible]
I know, he should also release the emulator.
-
Re: Phoenix CMS [UberEmu Compatible]
Quote:
Originally Posted by
Mithex
I know, he should also release the emulator.
No.. the only time the emulator should be released is when everyone's license expires or the project is no longer going. It is a premium product which you can't expect for free.. It is good enough of Aaron to make this CMS uber compatible and releasing it to the public. After all, he could just keep it exclusively for license holders.
-
Re: Phoenix CMS [UberEmu Compatible]
If i were him, id release it to the community.
-
Re: Phoenix CMS [UberEmu Compatible]
Quote:
Originally Posted by
Sojobo
Yah exactly, I paid for uber, if it wasn't for me none of you would have a flash hotel, so deal with it.
Getting feisty there Aaron. >=)
-
Re: Phoenix CMS [UberEmu Compatible]
Oh well, can't wait for CMS :P
-
Re: Phoenix CMS [UberEmu Compatible]
Quote:
Originally Posted by
Tr0ll.™
Oh well, can't wait for CMS :P
Nor can I.
-
Re: Phoenix CMS [UberEmu Compatible]
-
Re: Phoenix CMS [UberEmu Compatible]
Is it only rp or will there probably be a release for hotel
Posted via Mobile Device
-
Re: Phoenix CMS [UberEmu Compatible]
Quote:
Originally Posted by
Mithex
Is it only rp or will there probably be a release for hotel
Posted via Mobile Device
What are the differences between a CMS and an RP CMS? I thought they were the same..
-
Re: Phoenix CMS [UberEmu Compatible]
The difference between RP and regular is just some minor changes to me.php, register.php and some classes, some new pages and some new tpl files, nothing major.
Anyways, I love Pheonix, both CMS and EMU.
-
Re: Phoenix CMS [UberEmu Compatible]
Omg? When is this being released!
-
Re: Phoenix CMS [UberEmu Compatible]
@above - No, it won't be RP at all, I have never made or promoted RP releases, it's never been in my interest to help people copy HabboRP, infact I'm not a fan of people copying it at all.
On a brighter note, I have just sent out the first 2 beta copies of Phoenix Emu 3.0 to 2 licence holders, waiting on feedback to see how things go. If all is well then the 3.0 Emu beta will be publicly available tonight (to licence holders ofc).
Following the Emu beta release I plan on having the CMS released and on SVN within the next week. However, please note that it will only be the coldfusion version out at first - I have no idea when to expect a PHP release. I also think I'll be encrypting certain key files for security reasons - why you might as? Simple - Hacking a site that you know inside out is a hell of a lot easier than hacking a site you have no idea about. So for that reason certain files, that contain functions only, will be encrypted - the rest of the cms will be opensource and you really shouldn't notice or be affected by the closed-source files :)
More news as it comes :)
-
Re: Phoenix CMS [UberEmu Compatible]
:D nice!
Looking forward to this!
-
Re: Phoenix CMS [UberEmu Compatible]
Quote:
Originally Posted by
Sojobo
@above - No, it won't be RP at all, I have never made or promoted RP releases, it's never been in my interest to help people copy HabboRP, infact I'm not a fan of people copying it at all.
On a brighter note, I have just sent out the first 2 beta copies of Phoenix Emu 3.0 to 2 licence holders, waiting on feedback to see how things go. If all is well then the 3.0 Emu beta will be publicly available tonight (to licence holders ofc).
Following the Emu beta release I plan on having the CMS released and on SVN within the next week. However, please note that it will only be the coldfusion version out at first - I have no idea when to expect a PHP release. I also think I'll be encrypting certain key files for security reasons - why you might as? Simple - Hacking a site that you know inside out is a hell of a lot easier than hacking a site you have no idea about. So for that reason certain files, that contain functions only, will be encrypted - the rest of the cms will be opensource and you really shouldn't notice or be affected by the closed-source files :)
More news as it comes :)
I'm one of the lucky beta testers of Phoenix 3.0, and so far it is epic. I must say that it is extrenely stable, and i cant wait for the CMS to be released.
Keep up the brilliant work Aaron, your doing brilliantly.
(yes, i'm 'Radeon' on Otaku Studios)