-
Re: uberCMS/rCMS [PHP,OOP] Fixed Updated [Phoenix]
o.o well idk, it worked fine when I uploaded cms..:huh:
-
Re: uberCMS/rCMS [PHP,OOP] Fixed Updated [Phoenix]
It's just me, after asking a few people to look at it they all saw the tabs. For some reason they won't appear for me. And before you say, yes I've cleared my cache and tried the majority of browsers.
Very weird, I'll have to live with it.
-
Re: uberCMS/rCMS [PHP,OOP] Fixed Updated [Phoenix]
Lol ok :ott1: don't know why though :wink:
-
Re: uberCMS/rCMS [PHP,OOP] Fixed Updated [Phoenix]
uhmm, I am missing fuse_rights apperently...?
-
Re: uberCMS/rCMS [PHP,OOP] Fixed Updated [Phoenix]
Anyone that can PLEASE upload their DB+EMU that work with this CMS? Would be so amazing, just post reply with link or add me in MSN: abodi_boto@hotmail.com
-
Re: uberCMS/rCMS [PHP,OOP] Fixed Updated [Phoenix]
Nice Release...
How do you remove the facebook plugin. Can't seem to find it
-
Re: uberCMS/rCMS [PHP,OOP] Fixed Updated [Phoenix]
news page in the tpl folder.
-
Re: uberCMS/rCMS [PHP,OOP] Fixed Updated [Phoenix]
When i use this and user disconnects it redirects to aphotel? Any way of fixing :S
-
Re: uberCMS/rCMS [PHP,OOP] Fixed Updated [Phoenix]
-
Re: uberCMS/rCMS [PHP,OOP] Fixed Updated [Phoenix]
R0bby try editing disconnected page ?
-
Re: uberCMS/rCMS [PHP,OOP] Fixed Updated [Phoenix]
k so, for the DB, i use your db?? If I do it gives me an error on the emulator..
also, what version of mysql does this need, cos I can't upload the db, keeps giving me version error, btw im using IIS
-
Re: uberCMS/rCMS [PHP,OOP] Fixed Updated [Phoenix]
-
Re: uberCMS/rCMS [PHP,OOP] Fixed Updated [Phoenix]
Thanks a lot! Seems to be working now.
edit: im using IIS right, i took out the .htacces and when I register, i click create account and i get the redirect loop error
This webpage has a redirect loop
do i need to do that url rewrite shit?
-
Re: uberCMS/rCMS [PHP,OOP] Fixed Updated [Phoenix]
Doesn't your IIS automatically create a web.config file?
-
Re: uberCMS/rCMS [PHP,OOP] Fixed Updated [Phoenix]
Yes it does, but it still gave that redirect thing.
-
Re: uberCMS/rCMS [PHP,OOP] Fixed Updated [Phoenix]
-
Re: uberCMS/rCMS [PHP,OOP] Fixed Updated [Phoenix]
the file got created, heres my web config file, doesnt seem like anything is wrong with it
-
Re: uberCMS/rCMS [PHP,OOP] Fixed Updated [Phoenix]
For me random users is bugged:
http://i44.tinypic.com/afc7q0.png
How to fix that?
-
Re: uberCMS/rCMS [PHP,OOP] Fixed Updated [Phoenix]
Quote:
Originally Posted by
bokeoke
replace this with comp-randomhabbos.tpl
PHP Code:
<div class="habblet-container">
<div class="cbb clearfix blue">
<h2 class="title">
Random Fresh's - Click Us!
</h2>
<div class="" style="margin-bottom: 4px;"></div>
<div id="homes-habblet-list-container" class="habblet-list-container">
<img class="active-habbo-imagemap" src="http://images.habbo.com/habboweb/%web_build%/web-gallery/v2/images/activehomes/transparent_area.gif" width="435px" height="230px" usemap="#habbomap" />
<?php
$getRandom = dbquery("SELECT id,username,look,motto,account_created,online FROM users ORDER BY RAND() LIMIT 18");
$i = 0;
while ($randomHabbo = mysql_fetch_assoc($getRandom))
{
$newHab = mysql_query("SELECT * FROM users WHERE look = 'hr-115-42.hd-190-1.ch-215-62.lg-285-91.sh-290-62'");
if(mysql_num_rows($newHab))
{
}
else
{
echo '<div id="active-habbo-data-' . $i . '" class="active-habbo-data">
<div class="active-habbo-data-container">
<div class="active-name ' . (($randomHabbo['online'] == "1") ? 'online' : 'offline') . '">' . clean($randomHabbo['username']) . '</div>
Fresh created on: ' . $randomHabbo['account_created'] . '
<p class="moto">' . clean($randomHabbo['motto']) . '</p>
</div>
</div>
<input type="hidden" id="active-habbo-url-' . $i . '" value="%www%/error.php' . '"/>
<input type="hidden" id="active-habbo-image-' . $i . '" class="active-habbo-image" value="http://www.habbo.nl/habbo-imaging/avatarimage?figure=' . clean($randomHabbo['look']) . '&direction=4&head_direction=4" />';
$i++;
}
}
?>
<div id="placeholder-container">
<div id="active-habbo-image-placeholder-0" class="active-habbo-image-placeholder"></div>
<div id="active-habbo-image-placeholder-1" class="active-habbo-image-placeholder"></div>
<div id="active-habbo-image-placeholder-2" class="active-habbo-image-placeholder"></div>
<div id="active-habbo-image-placeholder-3" class="active-habbo-image-placeholder"></div>
<div id="active-habbo-image-placeholder-4" class="active-habbo-image-placeholder"></div>
<div id="active-habbo-image-placeholder-5" class="active-habbo-image-placeholder"></div>
<div id="active-habbo-image-placeholder-6" class="active-habbo-image-placeholder"></div>
<div id="active-habbo-image-placeholder-7" class="active-habbo-image-placeholder"></div>
<div id="active-habbo-image-placeholder-8" class="active-habbo-image-placeholder"></div>
<div id="active-habbo-image-placeholder-9" class="active-habbo-image-placeholder"></div>
<div id="active-habbo-image-placeholder-10" class="active-habbo-image-placeholder"></div>
<div id="active-habbo-image-placeholder-11" class="active-habbo-image-placeholder"></div>
<div id="active-habbo-image-placeholder-12" class="active-habbo-image-placeholder"></div>
<div id="active-habbo-image-placeholder-13" class="active-habbo-image-placeholder"></div>
<div id="active-habbo-image-placeholder-14" class="active-habbo-image-placeholder"></div>
<div id="active-habbo-image-placeholder-15" class="active-habbo-image-placeholder"></div>
<div id="active-habbo-image-placeholder-16" class="active-habbo-image-placeholder"></div>
<div id="active-habbo-image-placeholder-17" class="active-habbo-image-placeholder"></div>
</div>
</div>
<map id="habbomap" name="habbomap">
<area id="imagemap-area-0" shape="rect" coords="55,53,95,103" href="#" alt=""/>
<area id="imagemap-area-1" shape="rect" coords="120,53,160,103" href="#" alt=""/>
<area id="imagemap-area-2" shape="rect" coords="185,53,225,103" href="#" alt=""/>
<area id="imagemap-area-3" shape="rect" coords="250,53,290,103" href="#" alt=""/>
<area id="imagemap-area-4" shape="rect" coords="315,53,355,103" href="#" alt=""/>
<area id="imagemap-area-5" shape="rect" coords="380,53,420,103" href="#" alt=""/>
<area id="imagemap-area-6" shape="rect" coords="28,103,68,153" href="#" alt=""/>
<area id="imagemap-area-7" shape="rect" coords="93,103,133,153" href="#" alt=""/>
<area id="imagemap-area-8" shape="rect" coords="158,103,198,153" href="#" alt=""/>
<area id="imagemap-area-9" shape="rect" coords="223,103,263,153" href="#" alt=""/>
<area id="imagemap-area-10" shape="rect" coords="288,103,328,153" href="#" alt=""/>
<area id="imagemap-area-11" shape="rect" coords="353,103,393,153" href="#" alt=""/>
<area id="imagemap-area-12" shape="rect" coords="55,153,95,203" href="#" alt=""/>
<area id="imagemap-area-13" shape="rect" coords="120,153,160,203" href="#" alt=""/>
<area id="imagemap-area-14" shape="rect" coords="185,153,225,203" href="#" alt=""/>
<area id="imagemap-area-15" shape="rect" coords="250,153,290,203" href="#" alt=""/>
<area id="imagemap-area-16" shape="rect" coords="315,153,355,203" href="#" alt=""/>
<area id="imagemap-area-17" shape="rect" coords="380,153,420,203" href="#" alt=""/>
</map>
<script type="text/javascript">
var activeHabbosHabblet = new ActiveHabbosHabblet();
document.observe("dom:loaded", function() { activeHabbosHabblet.generateRandomImages(); });
</script>
</div>
</div>
<script type="text/javascript">if (!$(document.body).hasClassName('process-template')) { Rounder.init(); }</script>
Then update your web_build inside class.tpl to this 63_1dc60c6d6ea6e089c6893ab4e0541ee0/777
-
Re: uberCMS/rCMS [PHP,OOP] Fixed Updated [Phoenix]
All the client keeps doing is redirecting to Zaphotel.net/index2.php I checked client.php page-client.php and my external vars, I also removed the r63 folder replaced both client and page-client with another, still no luck
Posted via Mobile Device
-
Re: uberCMS/rCMS [PHP,OOP] Fixed Updated [Phoenix]
Awesome release :) Everything is excellent so far. Trying to setup my client and I get the following error on the client page:
Title: Unknown column 'temp' in 'field list'
Text: Unknown column 'temp' in 'field list'
If anyone could help me out with this I would be happy! :]
-
Re: uberCMS/rCMS [PHP,OOP] Fixed Updated [Phoenix]
-
Re: uberCMS/rCMS [PHP,OOP] Fixed Updated [Phoenix]
I think the news article in this release may have an exploit, im using this and my hotel was exploited
found this in IIS logs:
Quote:
GET /articles/9001'+UNION+ALL+SELECT+NULL,+NULL,+NULL,+NULL,+NULL,+group_concat(username),+NULL,+NULL,+NULL,+NULL+FROM+users#+AND+'1'='1--mod-applications-closed - 80 - 80.223.213.212 Mozilla/5.0+(Macintosh;+Intel+Mac+OS+X+10_7_2)+AppleWebKit/535.7+(KHTML,+like+Gecko)+Chrome/16.0.912.63+Safari/535.7 200 0 0 826
-
Re: uberCMS/rCMS [PHP,OOP] Fixed Updated [Phoenix]
Quote:
Originally Posted by
Dylannn
Awesome release :) Everything is excellent so far. Trying to setup my client and I get the following error on the client page:
Title: Unknown column 'temp' in 'field list'
Text: Unknown column 'temp' in 'field list'
If anyone could help me out with this I would be happy! :]
Dunno were that came from at all mon :huh:
-
Re: uberCMS/rCMS [PHP,OOP] Fixed Updated [Phoenix]
I've added the last online.
Go to class.tpl and add under:
Code:
$this->SetParam('vipbalance', '<b>' . $users->GetUserVar(USER_ID, 'vip_points') . ' <img src="' . WWW . '/images/vipcoin.gif" style="vertical-align: middle;"></b>');
This:
PHP Code:
$this->SetParam('last', date("d-m-Y", $users->GetUserVar(USER_ID, 'last_online')));
Then go to comp-me and change this:
To:
Code:
Last signed in: %last%
-
Re: uberCMS/rCMS [PHP,OOP] Fixed Updated [Phoenix]
Quote:
Originally Posted by
bokeoke
I've added the last online.
Go to class.tpl and add under:
Code:
$this->SetParam('vipbalance', '<b>' . $users->GetUserVar(USER_ID, 'vip_points') . ' <img src="' . WWW . '/images/vipcoin.gif" style="vertical-align: middle;"></b>');
This:
PHP Code:
$this->SetParam('last', date("d-m-Y", $users->GetUserVar(USER_ID, 'last_online')));
Then go to comp-me and change this:
To:
Code:
Last signed in: %last%
wow, your so pro! /sacrasme
-
Re: uberCMS/rCMS [PHP,OOP] Fixed Updated [Phoenix]
Really nice Like it <'3
You're really nice <'3
-
Re: uberCMS/rCMS [PHP,OOP] Fixed Updated [Phoenix]
Quote:
Originally Posted by
Nills
wow, your so pro! /sacrasme
It's a big pleasure to hear this from you! :thumbup:
-
Re: uberCMS/rCMS [PHP,OOP] Fixed Updated [Phoenix]
Quote:
Originally Posted by
bokeoke
It's a big pleasure to hear this from you! :thumbup:
Oh very good <3!
-
Re: uberCMS/rCMS [PHP,OOP] Fixed Updated [Phoenix]
Can you answer this as its really annoying: Every time I add an image. Or change an image, I clear off my cache and restart the server, but the image changes dont apply. This is really important because I need to take off the xmas theme and I cannot do that!!! Please help me and tell me why this is doing it.
-
Re: uberCMS/rCMS [PHP,OOP] Fixed Updated [Phoenix]
Quote:
Originally Posted by
Subway
Dunno were that came from at all mon :huh:
Hmm, I might have added something wrong to the database. Thanks for this release though! :]
-
Re: uberCMS/rCMS [PHP,OOP] Fixed Updated [Phoenix]
I'm personally not too keen on the news comments styling, but then that is very easy to modify and customise as to how I would prefer it to be.
Thanks for sharing this :)
-
Re: uberCMS/rCMS [PHP,OOP] Fixed Updated [Phoenix]
Quote:
Originally Posted by
Loduz
I'm personally not too keen on the news comments styling, but then that is very easy to modify and customise as to how I would prefer it to be.
Thanks for sharing this :)
http://t1.gstatic.com/images?q=tbn:A...JLDKLsZCxGxyCh
thanks I guess :mellow:
-
Re: uberCMS/rCMS [PHP,OOP] Fixed Updated [Phoenix]
Got the client working :] Any idea on how to get the News Images to display? Or is it just me? I get a Grey box as the display.
-
Re: uberCMS/rCMS [PHP,OOP] Fixed Updated [Phoenix]
I've got an error! When I opened my hotelpage, i've got this!
Text: Could not execute cron job 'credits.php': could not locate script file.
Could someone help me? I'm using XAMPP.
Thanks anyway!
-
Re: uberCMS/rCMS [PHP,OOP] Fixed Updated [Phoenix]
Quote:
Originally Posted by
Dylannn
Got the client working :] Any idea on how to get the News Images to display? Or is it just me? I get a Grey box as the display.
You have to change the path's in the files for news in /manage/pages.
-
Re: uberCMS/rCMS [PHP,OOP] Fixed Updated [Phoenix]
Very nice, I got this working and all but i have 1 nooby question.. Where do i edit the swf's/external_variables/texts Because it's not in housekeeping and i'm a bit confused :S
-
Re: uberCMS/rCMS [PHP,OOP] Fixed Updated [Phoenix]
Notice: Undefined index: HTTP_CF_CONNECTING_IP in C:\xampp\htdocs\global.php on line 21
Title: Could not execute cron job 'credits.php': could not locate script file.
Text: Could not execute cron job 'credits.php': could not locate script file.
Getting this.
Nvm other problem ; Notice: Undefined index: HTTP_CF_CONNECTING_IP in C:\xampp\htdocs\global.php on line 21
Haha nvm again fixed it.
Mod delete pleas.
-
Re: uberCMS/rCMS [PHP,OOP] Fixed Updated [Phoenix]
i think the file is corrupted because i get a winrar error. :S
-
Re: uberCMS/rCMS [PHP,OOP] Fixed Updated [Phoenix]
I am very frightened with this release seeing as the first two lines of the thread state the following:
Quote:
Originally Posted by Subway
-
Re: uberCMS/rCMS [PHP,OOP] Fixed Updated [Phoenix]
-
Re: uberCMS/rCMS [PHP,OOP] Fixed Updated [Phoenix]
Can anyone help me with something? where the hell do you change the links to the swf's variables and texts? Im fucking confused.
Also: When i load up My emulator, (3.6, 3.0, or even 3.6.4), Whenever it begins to load the room cache, all this shit comes up and it says something like "wallthick" does not belong to table.
Can someone help me fix this?
-
Re: uberCMS/rCMS [PHP,OOP] Fixed Updated [Phoenix]
Quote:
Originally Posted by
JayPwnsAll
Can anyone help me with something? where the hell do you change the links to the swf's variables and texts? Im fucking confused.
Also: When i load up My emulator, (3.6, 3.0, or even 3.6.4), Whenever it begins to load the room cache, all this shit comes up and it says something like "wallthick" does not belong to table.
Can someone help me fix this?
It will be easier, if you make a thread @ the habbo help section people will help you in no-time :)
-
Re: uberCMS/rCMS [PHP,OOP] Fixed Updated [Phoenix]
Where do I edit the swf paths, can't seem to find it.
-
Re: uberCMS/rCMS [PHP,OOP] Fixed Updated [Phoenix]
page-client.tpl :closedeyes:
-
Re: uberCMS/rCMS [PHP,OOP] Fixed Updated [Phoenix]
Just a heads up guys, Theres an exploit in 404.php, I dont know what the code is, but that is what 3 of the people that got into my DB told me.
-
Re: uberCMS/rCMS [PHP,OOP] Fixed Updated [Phoenix]
Quote:
Originally Posted by
Synstir
Just a heads up guys, Theres an exploit in 404.php, I dont know what the code is, but that is what 3 of the people that got into my DB told me.
Just wondering, but how can the 404 page have an exploit? It doesn't require any other pages :huh:
-
Re: uberCMS/rCMS [PHP,OOP] Fixed Updated [Phoenix]
I wouldnt use this cms has exploits, Jontehfag took advantage of the fact he knew exploits and redirected it to his hotel (Zap) and deleted db, Smh not sure what exploit is but I wouldnt use
Post off another forum about same thing:
Just a little while ago Zap Hotel hacked into Fresh, added a redirect to the main page and edited multiple other things. As a result they are stealing users and most likely trying to get Fresh suspended to make their voting result redirect directly to Zap. We are currently trying to resolve the situation with the Zap staff members but they are being utter immature faggots. Please take action and take this off TheHabbos.
-
Re: uberCMS/rCMS [PHP,OOP] Fixed Updated [Phoenix]
Quote:
Originally Posted by
YungTmk
I wouldnt use this cms has exploits, Jontehfag took advantage of the fact he knew exploits and redirected it to his hotel (Zap) Smh not sure what exploit is but I wouldnt use
Correction, Its TheJacob going around doing this and pinning it on Jonteh
-
Re: uberCMS/rCMS [PHP,OOP] Fixed Updated [Phoenix]
Looks like Fresh is still use this CMS. Did you fix the exploits then?
-
Re: uberCMS/rCMS [PHP,OOP] Fixed Updated [Phoenix]
Quote:
Originally Posted by
Muscab
Correction, Its TheJacob going around doing this and pinning it on Jonteh
My bad Jonteh I was told by several it was you but still the cms has some sort of exploit for them to hack it, :thumbdown:
-
Re: uberCMS/rCMS [PHP,OOP] Fixed Updated [Phoenix]
I configured all the swfs to zap's swfs, and everything working, launched emu without errors and client is stuck at hotel view, can someone add my msn and help me? quizzicalhf@gmail.com
-
Re: uberCMS/rCMS [PHP,OOP] Fixed Updated [Phoenix]
-
Has a few exploits, m not sure what they are though, a guy entered my database and made himself admin, although he didn't peruse any threats on my hotel, he said that it needs to be fixed, also why the fuck does the cms redirect to Zaphotel.com/index2.php? Got my VPS company to sort it out..
Posted via Mobile Device
-
Re: uberCMS/rCMS [PHP,OOP] Fixed Updated [Phoenix]
lol. the exploits in this are pretty obvious.
Just go look at the source. You'll find them if you know a moderate amount of PHP.
-
Re: uberCMS/rCMS [PHP,OOP] Fixed Updated [Phoenix]
Quote:
Originally Posted by
Ron
lol. the exploits in this are pretty obvious.
Just go look at the source. You'll find them if you know a moderate amount of PHP.
Juse use RevCMS if you want security.
-
Re: uberCMS/rCMS [PHP,OOP] Fixed Updated [Phoenix]
Quote:
Originally Posted by
FreddyZoom
Has a few exploits, m not sure what they are though, a guy entered my database and made himself admin, although he didn't peruse any threats on my hotel, he said that it needs to be fixed, also why the fuck does the cms redirect to Zaphotel.com/index2.php? Got my VPS company to sort it out..
Posted via Mobile Device
Check your login_popup and disconnected.php or even 404.php they all have zap's links on them.
-
Re: uberCMS/rCMS [PHP,OOP] Fixed Updated [Phoenix]
where is badgeshop file??? i found that file not!!
-
Re: uberCMS/rCMS [PHP,OOP] Fixed Updated [Phoenix]
buybadge.tpl / badgeshop.php
Quote:
Originally Posted by
Muscab
Check your login_popup and disconnected.php or even 404.php they all have zap's links on them.
These guys make everyone else's job so hard.
-
Re: uberCMS/rCMS [PHP,OOP] Fixed Updated [Phoenix]
Quote:
Originally Posted by
Dylannn
Got the client working :] Any idea on how to get the News Images to display? Or is it just me? I get a Grey box as the display.
How did you fix the Title: Unknown column 'temp' in 'field list'
Text: Unknown column 'temp' in 'field list' error? I'm getting that. :L
-
Re: uberCMS/rCMS [PHP,OOP] Fixed Updated [Phoenix]
Quote:
Originally Posted by
MyKi
Juse use RevCMS if you want security.
RevCMS doesn't have much functions yet.
-
Re: uberCMS/rCMS [PHP,OOP] Fixed Updated [Phoenix]
When i import the datebase from the first post i get this error code:
PHP Code:
SQL query:
--
-- Database: `test`
--
-- --------------------------------------------------------
--
-- Table structure for table `achievements`
--
CREATETABLEIFNOTEXISTS"achievements"(
"id"int( 10)unsigned NOTNULL ,
"levels"int( 11)NOTNULL DEFAULT'1',
"dynamic_badgelevel"enum('0','1')NOTNULL DEFAULT'1',
"badge"varchar( 100)NOTNULL ,
"pixels_base"int( 5)NOTNULL DEFAULT'50',
"score_base"int( 5)NOTNULL DEFAULT'10',
"pixels_multiplier"double NOTNULL DEFAULT'1.25',
PRIMARYKEY ("id")
) AUTO_INCREMENT=39;
MySQL said:
#1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '"achievements" (
"id" int(10) unsigned NOT NULL,
"levels" int(11) NOT NULL D' at line
-
Re: uberCMS/rCMS [PHP,OOP] Fixed Updated [Phoenix]
Funny how you release this and don't use it for your hotel. (:
-
Re: uberCMS/rCMS [PHP,OOP] Fixed Updated [Phoenix]
solved. my question. where can if find housekeeping?
-
Re: uberCMS/rCMS [PHP,OOP] Fixed Updated [Phoenix]
Now i have the problem that my client is white -.-
I edited the config, the client-tpl and the externals..
Can someone help?
-
Re: uberCMS/rCMS [PHP,OOP] Fixed Updated [Phoenix]
Quote:
Originally Posted by
Pascal.de
Can someone help me pls? ( I´m a noob )
I got this Error:
I read that i should edit my config..
But when i go to htdocs/inc/
There is only "cron_scripts", "tpl" and a few .php files..
But no inc.config.php?
So i edited zapconf.php -> And now this error.. Can someone help me?
EDIT:
@Raamkozijn
Go to
localhost/housekeeping.php
But at first you should have a User -> Go to localhost/phpmyadmin -> Table "Users" and edit your User -> Rank from 1 to 7..
Then you can go to housekeeping with this User
I get a error that the page cant be found
-
Re: uberCMS/rCMS [PHP,OOP] Fixed Updated [Phoenix]
Notice: Undefined index: HTTP_CF_CONNECTING_IP in C:\xampp\htdocs\global.php on line 21
If i open up my site ill get the full page but on top i have this error
whats rong?
Edit: Solved, I used my Brain!
-
Re: uberCMS/rCMS [PHP,OOP] Fixed Updated [Phoenix]
-
Re: uberCMS/rCMS [PHP,OOP] Fixed Updated [Phoenix]
Where do we go to remove the facebook widget off the me page? :)
-
Re: uberCMS/rCMS [PHP,OOP] Fixed Updated [Phoenix]
Quote:
Originally Posted by
Neonish
Where do we go to remove the facebook widget off the me page? :)
Correct me if I'm wrong, but
root/inc/tpl/comp-me.tpl
-
Re: uberCMS/rCMS [PHP,OOP] Fixed Updated [Phoenix]
I actually went there and theres nothing about the facebook widget haha, and funny enough on the main me.php page it says for that column usertags twitter and news but it only shows news and facebook, strange eh? lol
SOLVED: Was under the news.tpl at the bottom :)
-
Re: uberCMS/rCMS [PHP,OOP] Fixed Updated [Phoenix]
-
Re: uberCMS/rCMS [PHP,OOP] Fixed Updated [Phoenix]
*urgent* when i start the emu it gives an error about column "wallthick" doesnt belong.
-
Re: uberCMS/rCMS [PHP,OOP] Fixed Updated [Phoenix]
Quote:
Originally Posted by
emonemo123
*urgent* when i start the emu it gives an error about column "wallthick" doesnt belong.
This isn't a support section, and this thread has nothing to do with the emulator, and it's not urgent, but because I'm nice, I'll help you, run this query in your database:
PHP Code:
ALTER TABLE `rooms` ADD `wallthick` int(1) NOT NULL DEFAULT '0';
ALTER TABLE `rooms` ADD `floorthick` int(1) NOT NULL DEFAULT '0';
-
Re: uberCMS/rCMS [PHP,OOP] Fixed Updated [Phoenix]
Quote:
Originally Posted by
ItsDylan
Add a CSS code in generic top.
-
Re: uberCMS/rCMS [PHP,OOP] Fixed Updated [Phoenix]
No matter what I do all I get is this error..
Quote:
Warning: mysql_connect() [function.mysql-connect]: Host 'WIN-NVKJBQHDMUC' is not allowed to connect to this MySQL server in C:\xampp\htdocs\inc\class.db.mysql.php on line 49
Title: Host 'WIN-NVKJBQHDMUC' is not allowed to connect to this MySQL server
Text: Host 'WIN-NVKJBQHDMUC' is not allowed to connect to this MySQL server
I've checked that class.db.mysql.php file more times than you can count as well.
-
Re: uberCMS/rCMS [PHP,OOP] Fixed Updated [Phoenix]
please help me, i have it online, i have registerd but i cant login i get twice the index...... ( sorry for my bad english i'm dutch )
-
Re: uberCMS/rCMS [PHP,OOP] Fixed Updated [Phoenix]
Quote:
Originally Posted by
cybervoidz
No matter what I do all I get is this error..
I've checked that class.db.mysql.php file more times than you can count as well.
inc.config.php ?
-
Re: uberCMS/rCMS [PHP,OOP] Fixed Updated [Phoenix]
Quote:
Originally Posted by
Mansan
My last error:
When i run (as administrator) the Phoenix EMU 3.6.4
Im getting this error:
____ __ __ __
/\ _`\ /\ \ __ /'__`\ /'__`\
\ \ \_\ \ \ \___ ___ __ ___ /\_\ __ _ /\_\_\ \ /\ \/\ \
\ \ ,__/\ \ _ `\ / __`\ /'__`\/' _ `\/\ \ /\ \/'\ \/_/_\_<_ \ \ \ \ \
\ \ \/ \ \ \ \ \/\ \_\ \/\ __//\ \/\ \ \ \\/> </ /\ \_\ \__\ \ \_\ \
\ \_\ \ \_\ \_\ \____/\ \____\ \_\ \_\ \_\/\_/\_\ \ \____/\_\\ \____/
\/_/ \/_/\/_/\/___/ \/____/\/_/\/_/\/_/\//\/_/ \/___/\/_/ \/___/
Phoenix v3.6.4 (Build 13477) *cracked edition v1.0
---------------------------------------------------------------------
Cracked By Predator - Team: NexenTeam
Greetz fly to: Gianni95
Connecting to database...
Loading Settings..
Loading bans..
Loading Roles..
Loading Help Categories..
Loading Help Topics..
Loading Pre-set Help Messages..
Loading Current Help Tickets..
Loading Items..
Loading Catalogue..
Loading Catalogue Cache..
Loading Navigator..
Loading Room Models..
Loading Room Cache..
Loading Room Adverts..
Loading Bot data..
Loading Achievements..
System.ArgumentException:The column type does not belong to the table .
at System.Data.DataRow.GetDataColumn(String columnName)
at System.Data.DataRow.get_Item(String columnName)
at ☺.▲♥.☺(DataRow ☺)
at ☺.‼.☺(UInt32 ☺, DataRow ☻)
at ☺.‼.☺()
at ☺.♣..ctor(Int32 ☺)
at ☺.☻.☺<>
at Phoenix.x867eb3246b182488.xc447809891322395<String[] xce8d8c7e3c2c2426>
Please help?:D:
Go to SQL And type this in Query:
Code:
ALTER TABLE `achievements` ADD `type` enum('1','0') NOT NULL DEFAULT '0';
-
Re: uberCMS/rCMS [PHP,OOP] Fixed Updated [Phoenix]
Used is, took a lot of the to edit, but really nice
-
Re: uberCMS/rCMS [PHP,OOP] Fixed Updated [Phoenix]
There are some exploits in this cms but its awesome , but you could of just made a .sql to run for the db to use instead of adding a whole database
Posted via Mobile Device
-
Re: uberCMS/rCMS [PHP,OOP] Fixed Updated [Phoenix]
Thanks but I did not remove all and I planned to remove the rest but I CBF.
-
Re: uberCMS/rCMS [PHP,OOP] Fixed Updated [Phoenix]
@Subway, I thought the whole point of downloading this epic edited CMS is so that people do not have to worry about exploits. Glad to know ... None the less good work, nice contribution.
Quote:
Originally Posted by Subway
In my words a more safer release and edit
-
Re: uberCMS/rCMS [PHP,OOP] Fixed Updated [Phoenix]
Only exploits I know of in this is Badgeshop you can just remove it and news comments :sleep:
-
Re: uberCMS/rCMS [PHP,OOP] Fixed Updated [Phoenix]
I keep Getting errors. Someone help me?
msn: djflatout33@hotmail.
http://screensnapr.com/e/luWwFB.jpg
Quote:
Originally Posted by
Subway
Herro, this is a re-release; Edit of
(
http://forum.ragezone.com/f353/zcms-...secure-781429/). In my words a more safer release and edit.
All-ready known and added Features included:
- Set friend requests on/off
- Redeem gold bars by the hundreds on the site rather than manually on the client
- Fully functioning housekeeping
- Exploit secured , as far as Jonty knew.
Those we're some of the features, to name a few.
What Iv'e Fixed in this edit, is;
Let's start off with exploit's.
- Filtered the avatar name exploit FROM REGISTER.PHP
- Filtered password detail for Housekeeping login page.
- Remove unwanted pages etc.
- Removed Tag exploit with some help from Nominal
Fixes via the Database:
I managed to
- Fixed & Optimized & Updated database, fixed and added lost columns that were needed & missing due to Jonty's mistakes.
That's all the database really needed. :lol:
Fixes via CMS:
- adding trade enabled on me.php
- Added Auto Webbuild works 100% (Tested)
- Cleaned some Housekeeping files
- CODED BADGESHOP TO WORK W/CREDITS & NOT POINTS! AS THEY WE'RE SET TO..
- Added new ZapASE Housekeeping Style :/:
That's all I basically did to stabilize this edit a bit more, nothing much. P.S;
if you find anything missing or exploitable i'll try and fix it to the best of my knowledge
Ok let's get started.
After you setup your retro make sure, to run these very
important codes!
PHP Code:
ALTER TABLE `users` ADD `forumname` VARCHAR( 50 ) NOT NULL AFTER `expert`
ALTER TABLE `users` ADD `expert` VARCHAR( 50 ) NOT NULL AFTER `vip`
PHP Code:
TRUNCATE TABLE `site_cron`
The codes basically fix register error most of you have been getting and Truncates site_cron table for cms to actually work 100%.
Next add this code:
PHP Code:
--
SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO";
SET time_zone = "+00:00";
--
-- Table structure for table `site_config`
--
CREATE TABLE IF NOT EXISTS `site_config` (
`maintenance` enum('0','1') NOT NULL DEFAULT '0',
`web_build` varchar(255) NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
--
-- Table structure for table `site_cron`
--
CREATE TABLE IF NOT EXISTS `site_cron` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`prio` int(11) NOT NULL DEFAULT '5',
`enabled` enum('0','1') NOT NULL DEFAULT '1',
`scriptfile` varchar(50) NOT NULL,
`last_exec` int(11) NOT NULL,
`exec_every` int(11) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=3 ;
-- --------------------------------------------------------
--
-- Table structure for table `site_hotcampaigns`
--
CREATE TABLE IF NOT EXISTS `site_hotcampaigns` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`order_id` int(11) NOT NULL DEFAULT '1',
`enabled` enum('0','1') NOT NULL DEFAULT '1',
`IMG_url` text NOT NULL,
`caption` text NOT NULL,
`descr` text NOT NULL,
`url` text NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=2 ;
-- --------------------------------------------------------
--
-- Table structure for table `site_minimail`
--
CREATE TABLE IF NOT EXISTS `site_minimail` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`sender_id` int(10) unsigned NOT NULL,
`receiver_id` int(10) unsigned NOT NULL,
`folder` enum('inbox','sent','trash') NOT NULL DEFAULT 'inbox',
`is_read` enum('0','1') NOT NULL DEFAULT '0',
`subject` varchar(120) NOT NULL,
`date` varchar(120) NOT NULL,
`isodate` varchar(120) NOT NULL,
`timestamp` int(11) NOT NULL,
`body` text NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=7075 ;
-- --------------------------------------------------------
--
-- Table structure for table `site_navi`
--
CREATE TABLE IF NOT EXISTS `site_navi` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`parent_id` int(10) unsigned NOT NULL DEFAULT '0',
`order_id` int(11) NOT NULL,
`caption` text NOT NULL,
`class` text NOT NULL,
`url` text NOT NULL,
`visibility` enum('0','1','2','3') NOT NULL COMMENT '0 = Never, 1 = Always, 2 = Logged in only, 3 = Guests only',
PRIMARY KEY (`id`),
KEY `parent_id` (`parent_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=22 ;
-- --------------------------------------------------------
--
-- Table structure for table `site_news`
--
CREATE TABLE IF NOT EXISTS `site_news` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`seo_link` varchar(120) NOT NULL DEFAULT 'news-article',
`title` text NOT NULL,
`category_id` int(10) unsigned NOT NULL DEFAULT '1',
`topstory_IMG` text NOT NULL,
`body` text NOT NULL,
`snippet` text NOT NULL,
`datestr` varchar(50) NOT NULL,
`timestamp` int(11) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=35 ;
-- --------------------------------------------------------
--
-- Table structure for table `site_news_categories`
--
CREATE TABLE IF NOT EXISTS `site_news_categories` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`caption` text NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=2 ;
-- --------------------------------------------------------
--
-- Table structure for table `site_news_comments`
--
CREATE TABLE IF NOT EXISTS `site_news_comments` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`article` int(11) NOT NULL,
`userid` int(11) NOT NULL,
`comment` varchar(500) NOT NULL,
`posted_on` varchar(150) NOT NULL DEFAULT '',
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1525 ;
If any code is not working just download database
HERE and everything should work 100%
For badgeshop, just edit badge prices and badge code's in Database, Iv'e coded it 2 work with Credits and not points as I don't understand how Points work :blushing: :lol: but enway Yeah..
A Few IMGs:
http://img.sharefast.net/1324394842755943402132.jpg
http://img.sharefast.net/1324394900637908763921.png
http://img.sharefast.net/1324394920370761452436.png
http://img.sharefast.net/1324394980124442787507.png
http://img.sharefast.net/1324394978105560483897.png
http://img.sharefast.net/1324395031286327265835.png
http://img.sharefast.net/1324395033999328821585.png
http://img.sharefast.net/1324395092431350926659.png
http://img.sharefast.net/1324395223446243471562.png
http://img.sharefast.net/1324398454916381991995.png
Well that's it for now, I maybe updating this, not sure yet but if you need any help with anything consisting to this cms feel free to ask below. (READ the README.txt)
DOWNLOAD
Le' Credits!
Meth0d: 50%
Jonty: 40%
Subway: 10%
Anything custom or w/e you will have to add yourself, just a edit of it nothing much :thumbup:
I keep Getting errors. Can you help me?
msn: djflatout33@hotmail.
This is the error
http://screensnapr.com/e/luWwFB.jpg
-
Re: uberCMS/rCMS [PHP,OOP] Fixed Updated [Phoenix]
Quote:
Originally Posted by
DJFlatout33
Your PHP configuration isn't correct, re-install XAMPP as you've tampered with the PHP configuration.
-
Re: uberCMS/rCMS [PHP,OOP] Fixed Updated [Phoenix]
I got this error: Warning: mysql_result() [function.mysql-result]: Unable to jump to row 0 on MySQL result index 15 in C:\xampp\htdocs\inc\class.core.php on line 194
:*::*:
-
Re: uberCMS/rCMS [PHP,OOP] Fixed Updated [Phoenix]
Not overly keen on the colour scheme or index page, but they're easy enough to edit - thanks!
-
Re: uberCMS/rCMS [PHP,OOP] Fixed Updated [Phoenix]
-
Re: uberCMS/rCMS [PHP,OOP] Fixed Updated [Phoenix]
View habbo's page source and get it from there^ :/
-
Re: uberCMS/rCMS [PHP,OOP] Fixed Updated [Phoenix]
-
Re: uberCMS/rCMS [PHP,OOP] Fixed Updated [Phoenix]
Quote:
Originally Posted by
JayPwnsAll
How did you fix the Title: Unknown column 'temp' in 'field list'
Text: Unknown column 'temp' in 'field list' error? I'm getting that. :L
I've a way to fix that error. Run this query in your db:
Code:
ALTER TABLE `users` ADD `temp` ENUM('0','1') NOT NULL AFTER `expert`
-
Re: uberCMS/rCMS [PHP,OOP] Fixed Updated [Phoenix]
Subway where is the database :D ??????
-
Re: uberCMS/rCMS [PHP,OOP] Fixed Updated [Phoenix]
In badgeshop, when a user buys the badge in-game, their credits don't reduce, and the badge registers after you reload. Is there a fix for this?
-
Re: uberCMS/rCMS [PHP,OOP] Fixed Updated [Phoenix]
Where it says getcredits change to getpoints
DB should be somewhere on page 4-8 :P
-
Re: uberCMS/rCMS [PHP,OOP] Fixed Updated [Phoenix]
Im getting an error after i click the register button!
TimmeX Gaming
its something to do with page being outdated?... if anyone can help much help!!
-
Re: uberCMS/rCMS [PHP,OOP] Fixed Updated [Phoenix]
Looks kool i love it :P 100/10
-
Re: uberCMS/rCMS [PHP,OOP] Fixed Updated [Phoenix]
-
Re: uberCMS/rCMS [PHP,OOP] Fixed Updated [Phoenix]
Quote:
Originally Posted by
Efthimios
Im getting an error after i click the register button!
TimmeX Gaming
its something to do with page being outdated?... if anyone can help much help!!
Theres no Error uberCMS doesn't worked unless in root folder for e.g
C:/xampp/htdocs
not C:/xampp/htdocs/habbo1 it won't work like that <:mad:
-
Re: uberCMS/rCMS [PHP,OOP] Fixed Updated [Phoenix]
How do u add this onto the hotel do u use this database sql or the one u already have?