Click to See Complete Forum and Search --> : My First Website
Fire Cat
05-22-2010, 11:09 AM
Ok guys!
So could you please tell me what you think of my first website. It has no real "use", but I am thinking of dedicating it to a forum. It has a simple membership area (free, of course) where you can register real fast.
Here is the link:
http://www.firetiger3.110mb.com
Also, could you please rate it, ignoring the warning at the top of each page, as it is a problem I am trying to resolve. :(
Also, please keep in mind that even though all the scripting is in PHP, I use NO mySQL database record users, and that I have a very complicated system to make it work. ;)
Thanks!
Fire Cat
DexterMorgan
05-22-2010, 11:19 AM
Hi, you have some PHP errors currently.
I created an account and tried to log in but i dont think anything has happened.
I notice that you want javascript, I use the noscript firefox add on and i dont like to give any website javascript. If you are just using it to round corners there are other ways.
CSS3 allows you to round corners (not all browsers support it though).
http://www.css3.info/preview/rounded-border/
Fire Cat
05-22-2010, 12:14 PM
I tried login in using your username and password (I have admin access to the passwords...) and it managed perfectly...
No the Javascript is not only for the corners, it is used in the member area for site infos and the chat.
What do you think of the look of the site?
Cheers,
Fire Cat
DexterMorgan
05-22-2010, 12:19 PM
(I have admin access to the passwords...)
Wow there thats not a good idea. Are you literraly storing these passwords as plain text in the database?
Ive just tried logging in again and still no luck.
As for looks yeah it looks like its coming along, maybe a bit more colour, im not too good with the design side of things.
Fire Cat
05-22-2010, 02:49 PM
No. I have it encrypted. I used a homebrew software to decrypt it.
eastsideski
05-22-2010, 05:02 PM
You can use Output Buffering (http://php.net/manual/en/function.ob-start.php) to avoid your PHP header error
Also, your navigation is not consistent throughout your site
nathanpc
05-22-2010, 05:35 PM
Review your PHP code: ;)
Warning: Cannot modify header information - headers already sent by (output started at /www/110mb.com/f/i/r/e/t/i/g/e/firetiger3/htdocs/new/index.php:15) in /www/110mb.com/f/i/r/e/t/i/g/e/firetiger3/htdocs/new/counter.php on line 16
Also, why didn't you get a better hosting, or even why don't you pay for a very cheap hosting? Think on this things and how they could help you and your site. :)
DexterMorgan
05-23-2010, 06:31 AM
Review your PHP code: ;)
Warning: Cannot modify header information - headers already sent by (output started at /www/110mb.com/f/i/r/e/t/i/g/e/firetiger3/htdocs/new/index.php:15) in /www/110mb.com/f/i/r/e/t/i/g/e/firetiger3/htdocs/new/counter.php on line 16
Also, why didn't you get a better hosting, or even why don't you pay for a very cheap hosting? Think on this things and how they could help you and your site. :)
I suggest checking out heliohost.org, I use them, by far the best free host i have had, they dont mess about blocking all PHP features and stuff, plus they are very fast.
svidgen
05-23-2010, 08:52 AM
No. I have it encrypted. I used a homebrew software to decrypt it.
Passwords should be one-way encrypted using SHA. And you should not be cracking them.
DexterMorgan
05-23-2010, 08:55 AM
Passwords should be one-way encrypted using SHA. And you should not be cracking them.
Yeah I agree, I dont want people knowing my passwords.
I use:
hash('sha512',$value);
For the passwords that I store.