-
Re: [WEBSITE] Habbsite CMS released !
bisou580, go to a library borrow one, theres lots in my town library.
To start off, I am very good in php but you can add me on MSN if you want...
PHP Code:
<?php
include("config.php"); // config.php includes the mysql connection
include("func.php"); // any functions such as filepaths and etc
// Your talk starts here!
?>
another example of my work (this checks the URIReferer)
PHP Code:
<?php
include("refer.php")
$r = $_SERVER['HTTP_REFERER'];
if($r == $_1)
{
session_start();
$_SESSION['grant']=2; //sth like a cookie
}
elseif ($r == $_2)
{
session_start();
$_SESSION['grant']=2;
}
else
{
session_start();
$_SESSION['grant']=1;
echo "Not granted";
die(); //stops anymore code generating (including MySQL)
}
?>
-
Re: [WEBSITE] Habbsite CMS released !
You simply must have a config.php file with defined variables before it works
-
Re: [WEBSITE] Habbsite CMS released !
Quote:
Originally Posted by
syed1994
bisou580, go to a library borrow one, theres lots in my town library.
To start off, I am very good in php but you can add me on MSN if you want...
PHP Code:
<?php
include("config.php"); // config.php includes the mysql connection
include("func.php"); // any functions such as filepaths and etc
// Your talk starts here!
?>
another example of my work (this checks the URIReferer)
PHP Code:
<?php
include("refer.php")
$r = $_SERVER['HTTP_REFERER'];
if($r == $_1)
{
session_start();
$_SESSION['grant']=2; //sth like a cookie
}
elseif ($r == $_2)
{
session_start();
$_SESSION['grant']=2;
}
else
{
session_start();
$_SESSION['grant']=1;
echo "Not granted";
die(); //stops anymore code generating (including MySQL)
}
?>
I understand how php works, but i need an PHP code for catch the content of a column of a MySQL table. Then for cath the content (text) and view.
-
Re: [WEBSITE] Habbsite CMS released !
Quote:
Originally Posted by
bisou580
I understand how php works, but i need an PHP code for catch the content of a column of a MySQL table. Then for cath the content (text) and view.
select * from 'yowateva'
-
Re: [WEBSITE] Habbsite CMS released !
Ok I can do it, just a minute (need to refresh my brain).
PHP Code:
<?php
include("config.php");
$connect = mysql_connect($host,$user,$pass);
or
die('Error Message: ' . mysql_error());
mysql_select_db($db, $connect);
$data = mysql_query("SELECT * FROM content"); //select * from (table)
while($row = mysql_fetch_array($data))
{
echo $row['News'] .; //row of table
echo "<br />";
}
mysql_close($connect);
?>
Done!
-
Re: [WEBSITE] Habbsite CMS released !
in SELECT * FROM content
content is an column of an table -or- an table of the database ? Help !
And if i want view the content of the column "bloc1" of the table "pages_main" of database "habbsitecms" ? I don't say what modify for make this...
What is the code of "config.php" please ?
Thanks !
-
Re: [WEBSITE] Habbsite CMS released !
Is my code good (see above).
-
Re: [WEBSITE] Habbsite CMS released !
Quote:
Originally Posted by
syed1994
Is my code good (see above).
THANKS !!!!!!!!
I test !
and how to insert some text on a row via PHPMy Admin ? I'm lose...
-
Re: [WEBSITE] Habbsite CMS released !
Ooops I forget you need the config file!
PHP Code:
<?php
/*
MySQL Connextion
*/
$host = "localhost"
$user = "USERNAME FOR DB HERE"
$pass = "password"
$db = "database name"
?>
-
Re: [WEBSITE] Habbsite CMS released !
Quote:
Originally Posted by
syed1994
Ooops I forget you need the config file!
PHP Code:
<?php
/*
MySQL Connextion
*/
$host = "localhost"
$user = "USERNAME FOR DB HERE"
$pass = "password"
$db = "database name"
?>
Okay, i test, but result :
Quote:
Parse error: syntax error, unexpected T_LOGICAL_OR in C:\xampp\xampplite\htdocs\habbsitecms\20beta\view.php on line 4
And after erasing
Quote:
or
die('Error Message: ' . mysql_error());
I have this :
Quote:
Warning: mysql_fetch_array(): supplied argument is not a valid MySQL result resource in C:\xampp\xampplite\htdocs\habbsitecms\20beta\view.php on line 9
tested with XAMPP (Apache and MySQL server)
-
Re: [WEBSITE] Habbsite CMS released !
PHP Code:
<?php
include("config.php");
$connect = mysql_connect($host,$user,$pass);
if (!$connect)
{
die('Could not connect: ' . mysql_error());
}
mysql_select_db($db, $connect);
$data = mysql_query("SELECT * FROM content"); //select * from (table)
while($row = mysql_fetch_array($data))
{
echo $row['News'] .; //row of table
echo "<br />";
}
mysql_close($connect);
?>
Ok, you make a table named content
then you make it with 2 fields named News and Test
Then put some data in!
-
Re: [WEBSITE] Habbsite CMS released !
Quote:
Originally Posted by
syed1994
Then put some data in!
Okay but in what field i need to enter the data i want ?
FieldTypeLength/Values1CollationAttributesNullDefault2ExtraCommentsMIME typeBrowser transformationTransformation options3
It's fields of phpMyAdmin
http://img153.imageshack.us/img153/1107/mysqlnn4.png
And for insert, for exemple, this data : "<p>helloworld</p>" on a row (here "bloc1") what is the type i need to have ? TEXT ? LONGTEXT ? BINARY ? I try to insert data in the "Lenght/Values" field but don't save...
Help meeeee Thanks a lot !
-
Re: [WEBSITE] Habbsite CMS released !
Ermmm.... you don't know how to use it.
Aw man!
-
Re: [WEBSITE] Habbsite CMS released !
Quote:
Originally Posted by
syed1994
Ermmm.... you don't know how to use it.
Aw man!
Yes i don't know how to use it.
Anybody knows how to ?
-
Re: [WEBSITE] Habbsite CMS released !
Quote:
Originally Posted by
jetgod
hahaha, thats so funnyy.... you need more than require config.php, stealer!
Dude u know more rofl >.>
Config.php for mysql
functions.php is for ?redirect= or ?go=
i dont have added the code because its a previeuw its dont a steal if you to lazy to make one just say
-------------------------------------------------------------------------------------------------------
http://www.habbocs.nl/userbar.png
-
Re: [WEBSITE] Habbsite CMS released !
Quote:
Originally Posted by
Xellios
Dude u know more rofl >.>
Config.php for mysql
functions.php is for ?redirect= or ?go=
i dont have added the code because its a previeuw its dont a steal if you to lazy to make one just say
-------------------------------------------------------------------------------------------------------
http://www.habbocs.nl/userbar.png
Yes, you do know that 'require' requires mroe than just thta! Thsi sin't c++, you know. Config and fucntions .php must exist ahnd have the variables defiend, etc.
-
Re: [WEBSITE] Habbsite CMS released !
Quote:
Originally Posted by
jetgod
Yes, you do know that 'require' requires mroe than just thta! Thsi sin't c++, you know. Config and fucntions .php must exist ahnd have the variables defiend, etc.
Dude, Listen if you are to noob to understand this >.>
Stupid noob sinds when we put mysql rows IN a .php file ;l ? ..
Lol if you want beat me add me on msn you can see in one of the posts
AND WHO SAYD THIS IS C++ :) ? .. C++ IS A REALLY ANOTHER CODELANGUAGE THAN PHP >.> nooblet your to stupid to stop YOUR PWNED >.>
-
Re: [WEBSITE] Habbsite CMS released !
Quote:
Originally Posted by
Xellios
Dude, Listen if you are to noob to understand this >.>
Stupid noob sinds when we put mysql rows IN a .php file ;l ? ..
Lol if you want beat me add me on msn you can see in one of the posts
AND WHO SAYD THIS IS C++ :) ? .. C++ IS A REALLY ANOTHER CODELANGUAGE THAN PHP >.> nooblet your to stupid to stop YOUR PWNED >.>
I did nto once say this was c++.
I was saying that you are confusing php with c++. Php's 'requrie' functin is completely different, you're basically thinking that it's a similiar to c++ header file, which is wrong.
And 'sinds when we put mysql rows IN a .php file '
that makes no sense. explain?
There wasn't even a war.......
-
Re: [WEBSITE] Habbsite CMS released !
-
Re: [WEBSITE] Habbsite CMS released !
-
Re: [WEBSITE] Habbsite CMS released !
Good Job with this release :). It's useful for those who don't know HTML. I just wish everyone could stop complaining... -_-. If you don't like it don't reply. If you don't like it don't download it. He made it so we don't need to spend more time on makng Templates and such. Thank you again. :) I like it.
-
Habbsite CMS pannel - Dutch language pack
Hey all!
The Dutch language pack is ready!
All you need to do is extract the files into the main directory.
Code:
http://rapidshare.com/files/29878198/Habbsite_CMS_-_Dutch_languagepack.rar
-
Re: [WEBSITE] Habbsite CMS released !
hey there! i'm a big time PHP coder if you would like help please give me a PM ^_^
-
Re: [WEBSITE] Habbsite CMS released !
Pretty good job, keep up the good work!
-
age
I intend to make this into a reaal cms....
when I haev the time, lulz.
-
Re: [WEBSITE] Habbsite CMS released !
i have a coder who help me : NuDann
he create a MySQL news system, and me an Bloc editing with MySQL.
We are in the good way, work at 70% !
-
Re: [WEBSITE] Habbsite CMS released !
dude how do i add it to my site. i dont get this at all.
-
Re: [WEBSITE] Habbsite CMS released !
you have created habbo homes?
-
Re: [WEBSITE] Habbsite CMS released !
some 1 pm me or tell me your msn that will help me out with this :P
-
Re: [WEBSITE] Habbsite CMS released !
Quote:
Originally Posted by
!!mr.rich!!
dude how do i add it to my site. i dont get this at all.
LOLOLOL
-
Re: [WEBSITE] Habbsite CMS released !
dude sdfu. im not a computer geek that plays the computer all day and all night like you probably do.
-
Re: [WEBSITE] Habbsite CMS released !
Hmm, Its nice, but if you got the Home Scripts
It would by really good and you can earn much money with it,
because everyone wants the Homepage System.
Regards,
Powned !
-
Re: [WEBSITE] Habbsite CMS released !
heh you could make it pretty easy if you could make a habbo retro in pure php mySQL
Also you have to remember all things on this forum must be for free. (As stated in rules)
Edit:
Quote:
Originally Posted by
!!mr.rich!!
dude sdfu. im not a computer geek that plays the computer all day and all night like you probably do.
Lmfao so what if i do i do it in good proportions >.> 7-8 hours nap 3 hours wake up school and such another 7-8 hours or so >_>
-
Re: [WEBSITE] Habbsite CMS released !
Ummmm.... I got a problem when I uploaded my changed main.html file. I added new images to it. I got the new images and uploaded them to FreeWebs. I got the whole file habsite_cms and whatever and transfered it over. I changed my index.html to the stuff in the main.html file with notepad. I go on my website and it looks all crippled. All the writing is on the right, it doesn't look anything like the HAbbo Homepage and the images are not loading even though I uploaded them. I'm using FreeWebs in HTML Mode.
HELP!? :busted_co
-
Re: [WEBSITE] Habbsite CMS released !
very cool! i'm waiting for V2!
-
Re: [WEBSITE] Habbsite CMS released !
ya! i figured it out. but how do i add it to my site lmao
-
Re: [WEBSITE] Habbsite CMS released !
Can anyone upload on MegaUpload? RapidShare is not working for me.
-
Re: [WEBSITE] Habbsite CMS released !
you can add server status?
-
Re: [WEBSITE] Habbsite CMS released !
The head buttonsdoesn't work online
-
Re: [WEBSITE] Habbsite CMS released !
They work for me don't know what your problem is..
Are all the JavaScript files included? if not that may be why.
-
Re: [WEBSITE] Habbsite CMS release tomorrow !
Quote:
Originally Posted by
N!elz
I don't think so, you must host your CMS site yourself in the firstplace, and the need an own page, wich is also hosted by YOU. I run an CMS by myself. Please search google of wiki for info over CMS. :-) I'm not saying that you're a noob, gefliptemens, but it's easier to work with CMS if you know what you're doing!
Greetz,
N!elz
P.S: I know, I know. My English suck:P
Habbo Homes requires MySQL.
If I'm not mistaken, the whole habbo hotel site + database are using MySQL..
-
Re: Habbsite CMS pannel - Dutch language pack
Quote:
Originally Posted by
Mustek
Hey all!
The Dutch language pack is ready!
All you need to do is extract the files into the main directory.
Code:
http://rapidshare.com/files/29878198/Habbsite_CMS_-_Dutch_languagepack.rar
Thankyou very much for this dutch translation and bisou580 for his awsome (cms) build :)
-
Re: [WEBSITE] Habbsite CMS released !
Hey, if you're looking for a designer or a Portuguese translator, talk to me.
-
Re: [WEBSITE] Habbsite CMS released !
Can you do a megaupload download link?
Rapidshare always tells me:
Your IP-address ------------- is already downloading a file. You have to wait until it is finished.
Premium-accounts can download many files at the same time. Get your own Premium-Account now. Instant download-access!
If you are not downloading anything, you are using a proxy-server or a shared IP-address. A Premium-account solves this problem as well.
-
Re: [WEBSITE] Habbsite CMS released !
Lol, i wouldnt call it a "CMS", a Content Management System (CMS) is a software system used for content management This includes computer files, image media, audio files, electronic documents and web content, AND NON OF THESE FILES ARE INCLUDED BESIDE IMAGE MEDIA !!!
I mean u cant even post news, upload images, add downloads..
and panel PANEL IS UNUSEFULL !
But i like that every image is not on habbohotel's server.
i would say 4/10
-
Re: [WEBSITE] Habbsite CMS released !
Hmmm.. I like your project!
Im very good in MySQL, PHP and HTML.
I can make: Rank system, login system, register system, money-system, ban-user system, "members" system... yeah... alout!
MSN: ak-bok@hotmail.com
-
Re: [WEBSITE] Habbsite CMS released !
-
Re: [WEBSITE] Habbsite CMS released !
I can help!
I have made: Forum system and members login register etc,
You may be wishing for me to make it into real cms.
Or eventually portal!
And the bugginess XXX.,..... Is becuase th maker made it for internet explorer only.
-
Re: [WEBSITE] Habbsite CMS released !
My mouth dropped open when I tested files.
GREAT JOB!
Quote:
Originally Posted by
XXX.
I have that bug also but other things work fine for me..
EDIT: Tested files on FireFox and it works 100% correctly. Creator proboly tested on files on FireFox.
Wold be great if you would make ti work for Internet Explorer & FireFox.
-
Re: [WEBSITE] Habbsite CMS released !
Can you upload it to mega or a mirror or something
-
Re: [WEBSITE] Habbsite CMS released !
Quote:
Originally Posted by
Shad0w26
My mouth dropped open when I tested files.
GREAT JOB!
I have that bug also but other things work fine for me..
EDIT: Tested files on FireFox and it works 100% correctly. Creator proboly tested on files on FireFox.
Wold be great if you would make ti work for Internet Explorer & FireFox.
Jeah only the old Internet Exporer 6.0 has this bug, FireFox and Internet Explorer 7.0 works it fine.
And on my site [NOP] Server-NL Habbo ~ Habbo have I made the function how many Habbo's are online. :winky:
-
Re: [WEBSITE] Habbsite CMS released !
-
Re: [WEBSITE] Habbsite CMS released !
Yeah.. Agree! Whens next release? And is it HabboHome?
-
Re: [WEBSITE] Habbsite CMS released !
OKay tell me a list of programs i need to use this and whats the best web host to host these files and pictures
ty
-
Re: [WEBSITE] Habbsite CMS released !
Hey Bio,
Add some Habbo Pack 4 images after autorization from Keenan.
I think your asking for authorization, yeah it's fine a update has been released by the way.
-
Re: [WEBSITE] Habbsite CMS released !
-
Re: [WEBSITE] Habbsite CMS released !
OKay tell me a list of programs i need to use this and whats the best web host to host these files and pictures
ty
-
Re: [WEBSITE] Habbsite CMS released !
-
Re: [WEBSITE] Habbsite CMS released !
Any new updates?
I got new pages layout working and now I am working on a Dynamic New adder.
-
Re: [WEBSITE] Habbsite CMS released !
Why isnt the check in button showing?
-
Re: [WEBSITE] Habbsite CMS released !
thx because i'm italian... fine release ;)
-
Re: [WEBSITE] Habbsite CMS released !
AHH! I am dying to see the next release!
Release it now! lol. Waiting for MySQL
-
Re: [WEBSITE] Habbsite CMS released !
how do i use this CMS thing ?
-
Re: [WEBSITE] Habbsite CMS released !
just spanish idiom added... http://forum.ragezone.com/f353/websi...-idiom-257061/ + megaupload link + sendpsace link + more links...
-
Re: [WEBSITE] Habbsite CMS released !
dude,work on the new one to release it
-
Re: [WEBSITE] Habbsite CMS released !
I am finished creating the CSS Style for custom pages such as New To Habbo? Layout. I am also almost done with Dynamic news. I am using CuteNews PHP. I think I will take my own spin off your files if you don't mind.
I am also planning on linking the website to the server files using MySQL or MSQL.
-
Re: [WEBSITE] Habbsite CMS released !
Trcik Question: How Do You Get It On Site
-
Re: [WEBSITE] Habbsite CMS released !
Good job and Also Nice Release
-
Re: [WEBSITE] Habbsite CMS released !
Quote:
Originally Posted by
Shad0w26
I am finished creating the CSS Style for custom pages such as New To Habbo? Layout. I am also almost done with Dynamic news. I am using CuteNews PHP. I think I will take my own spin off your files if you don't mind.
I am also planning on linking the website to the server files using MySQL or MSQL.
Waiting for new version !!
-
Re: [WEBSITE] Habbsite CMS released !
Quote:
Originally Posted by
masterofdeath
Waiting for new version !!
I don't think im going to release my web package..
Good news :D...
Finish Dynamic News and now working on MySql or MSQL linking to server files :D
-
Re: [WEBSITE] Habbsite CMS released !
Quote:
Originally Posted by
Shad0w26
I don't think im going to release my web package..
Good news :D...
Finish Dynamic News and now working on MySql or MSQL linking to server files :D
why not? i know that this is full of noobs trying to claim of them things that other ppl made... but u cant leave us without that! xD!!!
-
Re: [WEBSITE] Habbsite CMS released !
Hello?
Help!! How can you make the check in button overlay with the banner?
Ohh and.. I am also using cutenews and added a lot of templates and categories :D
I also found someone who ISN'T CREDITING!
Habbish Hotel ~ STOP!
I found the site but i didn't found any credits at the bttom and I also found the panel.htm
-
Re: [WEBSITE] Habbsite CMS released !
Quote:
Originally Posted by
-_-bored-_-
Hello?
Help!! How can you make the check in button overlay with the banner?
Ohh and.. I am also using cutenews and added a lot of templates and categories :D
I also found someone who ISN'T CREDITING!
Habbish Hotel ~ STOP!
I found the site but i didn't found any credits at the bttom and I also found the panel.htm
LMAO
Why are you just being a snitch? I'm sure the author can handle things olike this himself.
-
Re: [WEBSITE] Habbsite CMS released !
To install (for editing pages)
link doesn't work!!
Please pm me the link (for editing the site)
Thanks.
and I love it!!!
-
Re: [WEBSITE] Habbsite CMS released !
Quote:
Originally Posted by
Slayer-hab
To install (for editing pages)
link doesn't work!!
Please pm me the link (for editing the site)
Thanks.
and I love it!!!
Nvu - The Complete Web Authoring System for Linux, Macintosh and Windows
-
Re: [WEBSITE] Habbsite CMS released !
I wonder why he is in Monzilla there is such thing as a coponent of Monzilla called firebug it shows you all coding and you can edit it everything but you cant keep it that way my opinion is that he just edited it with Firebug
-
Re: [WEBSITE] Habbsite CMS released !
I dled the release thingy, so what exactly do you do.
-
Re: [WEBSITE] Habbsite CMS released !
How Do I Get It On My Site?
-
Re: [WEBSITE] Habbsite CMS released !
to much stuffing around...
-
Re: [WEBSITE] Habbsite CMS released !
-
Re: [WEBSITE] Habbsite CMS released !
Umm I'm really confusing with this Habbo Homepage thing and if someone helps me.. I will put the name up on credits. Thanks.
Regards,
Slayer-hab.
I still really love it.
Add me: zoe_hellokitty@hotmail.com
Will anyone help me? Thankss
-
Re: [WEBSITE] Habbsite CMS released !
Sorry for double posting umm..
I already downloaded Nvu..
I dont know what to do with it..
Thanks.
Slayer-hab.
-
Re: [WEBSITE] Habbsite CMS released !
Ight When 2.0 Released Coz I Been Waiting Since Friday
-
Re: [WEBSITE] Habbsite CMS released !
Merci Dude ;) Mes Si Vous Avez Une Team Ajoutes Mon Mail Tu Va Etre Contant :D
Mail : xriad@hotmail.fr
-
Re: [WEBSITE] Habbsite CMS released !
Sorry Bisou, I don't mean to put ya down but.. this is really easy to do. You just copy habbo hotel's main source and change it around. Take my website for example. Habbo Terrain (Soon to be the new HabTopia.com) That's my site. It was fairly simple to make. If anybody doesn't trust this for some reason.. which I don't know why you wouldn't, you can just take my advice.:kisss:
-
Re: [WEBSITE] Habbsite CMS released !
Merci beaucoup. Travaux tout
-
Re: [WEBSITE] Habbsite CMS released !
Anyone kn ow a similar but effective program like FileZilla? Cus it doesnt work for me.
-
Re: [WEBSITE] Habbsite CMS released !
bisou580 i have here some Furnis tiles ... for the page i have put them to my page download here the images.
I add soon Frank images and more.
-
Re: [WEBSITE] Habbsite CMS released !
how do you use this ??
pls explain to mee i need help PM mee thanx
=)
-
Re: [WEBSITE] Habbsite CMS released !
Next RapidShare: 1-Click Webhosting the last is Habbo Home sticker but i release they later.
-
Re: [WEBSITE] Habbsite CMS released !
-
Re: [WEBSITE] Habbsite CMS released !
Quote:
Originally Posted by
Altmaniac
Sorry Bisou, I don't mean to put ya down but.. this is really easy to do. You just copy habbo hotel's main source and change it around. Take my website for example.
Habbo Terrain (Soon to be the new HabTopia.com) That's my site. It was fairly simple to make. If anybody doesn't trust this for some reason.. which I don't know why you wouldn't, you can just take my advice.:kisss:
In HabbsiteCMS Version 2, you can edit the pages DIRECTLY via INTERNET with PHP pages and MYSQL databases, it's not possible with a SIMPLE copy of website layout !!!!!!!!!!!
-
Re: [WEBSITE] Habbsite CMS released !
-
Re: [WEBSITE] Habbsite CMS released !
Fine Bisou, you're the man!
-
Re: [WEBSITE] Habbsite CMS released !
Anyone know how to set Habbosite-cms homepages up someone please help me add my msn danny_1710@hotmail.co.uk
-
Re: [WEBSITE] Habbsite CMS released !
-
Re: [WEBSITE] Habbsite CMS released !
Look at your own project, ages later LOL
-
Re: [WEBSITE] Habbsite CMS released !
-
Re: [WEBSITE] Habbsite CMS released !
To be honest i dont like homepages that look like habbo I still find it copyright and not original..
-
Re: [WEBSITE] Habbsite CMS released !
Wayne?
But i wait so long for a new one and i dont see anything..