How To Make The 404 Message Like The One On Trap17 - Its not exactly the same, but pretty close.

free web hosting
Open Discussion > CONTRIBUTE > Tutorials

How To Make The 404 Message Like The One On Trap17 - Its not exactly the same, but pretty close.

fsastraps
I came a cross a topic that asked how you could do the message on trap17's 404 page, and i found the code that would do this.

Well it works pretty much the same way, it only looks a little different, you might be able to change the background of the textarea to match the background, and you can possibly take the scrollbar off, and then i think it would look the same. but here it is:


CODE
<script type="text/javascript" language="Javascript">

var tl=new Array(

"Text Here!",
"Text for next line HERE!.",
"This would be the last line that would be shown, dont put a comma after the quotations, because it will cause an error"


);
var speed=80; //You can chage the speed at which the characters are typed in
var index=0; text_pos=0; //dont edit these settings
var str_length=tl[0].length;
var contents, row;


function type_text()
{
 contents='';
 row=Math.max(0,index-6);
 while(row<index)
   contents += tl[row++] + '\r\n';
 document.textform.elements[0].value = contents + tl[index].substring(0,text_pos) + "_";
 if(text_pos++==str_length)
 {
   text_pos=0;
   index++;
   if(index!=tl.length)
   {
     str_length=tl[index].length;
     setTimeout("type_text()",1500); //this is how much time will pass till the next line is shown
   }
 } else
   setTimeout("type_text()",speed);

}
function MM_callJS(jsStr)
{
//v2.0
  return eval(jsStr)
}
//-->
</script>
     <center>
     <form name="textform">
         <textarea cols="70" rows="8" wrap="soft" readonly>
         </textarea>
     </form>



Inside the body tag type in onload="type_text();"

And thats it! Hope you like it biggrin.gif

 

 

 


Reply

tonic
Hehe I like the Trap17 error page. Check out mine if you want hehe http://zhe.trap17.com/asdasd

Reply

Hamtaro
Hmm...thanks for that. Looks interesting! To change the background for the textarea, though, you need to remove the readonly for it. Also, is there any way to remove the small "border" that the textarea makes? I'm sorta wanting to remove it. Or is there at least a way to change it's color?

Reply

snlildude87
QUOTE(tonic @ Apr 27 2005, 09:45 PM)
Hehe I like the Trap17 error page. Check out mine if you want hehe http://zhe.trap17.com/asdasd
*

Your 404 page is very mean. Nice and catchy music, but mean. Why? It took me a good 5 minutes to realized that it repeats itself. sad.gif

Reply

fsastraps
Yeah i was looking at that two until i found it repeated! ahha

Well anyhow, you can change the background color by typing in:

<textarea cols="70" rows="8" wrap="soft" readonly style="background:orange"> i think in the style thing you can also take the scrollbar out, but i dont know how to do that.

Reply

Hamtaro
I'll use your code to explain this:

To remove the scrollbar, you just simply add scrolling="no".
So, this is the code:
<textarea cols="70" rows="8" wrap="soft" readonly style="background:orange" scrolling="no">

Reply

snlildude87
I'd like to add to fsastraps' tutorial.

With his code, the message box will be the first thing that appears in your 404 page. This is really bad for you if you have something else that you want to show first on the page. In my "mini-tutorial", I will show you how to position your 404 error anywhere on your page!

First, insert the following code between the HEAD tags:
CODE
<script type="text/javascript" language="Javascript">

var tl=new Array(

"Hi,",
"This is a 404 error message...",
"that you must place between your <head> </head> tags.",
"Remember not to put a comma at the end",
"or else it will not run :)"


);
var speed=80; //You can chage the speed at which the characters are typed in
var index=0; text_pos=0; //dont edit these settings
var str_length=tl[0].length;
var contents, row;


function type_text()
{
contents='';
row=Math.max(0,index-6);
while(row<index)
  contents += tl[row++] + '\r\n';
document.textform.elements[0].value = contents + tl[index].substring(0,text_pos) + "_";
if(text_pos++==str_length)
{
  text_pos=0;
  index++;
  if(index!=tl.length)
  {
    str_length=tl[index].length;
    setTimeout("type_text()",1500); //this is how much time will pass till the next line is shown
  }
} else
  setTimeout("type_text()",speed);

}
function MM_callJS(jsStr)
{
//v2.0
 return eval(jsStr)
}
//-->
</script>


Now, place the follow code ANYWHERE you want your message to appear:
CODE
<form name="textform">
<textarea cols="70" rows="8" wrap="soft" style="border: 0;" readonly></textarea>
</form>


Here is my 404 error. Feel free to look at the source code to see what I mean. smile.gif

 

 

 


Reply

wariorpk
Thanks alot for this great tutorial. It should help me out alot. Happy foruming.

Reply



Got an Opinion! Express your Views! (no registration):-
Add your Reply/ Opinion/ Views/ Comments/ Suggestion/ Questions/ Queries etc.
Posts with decent grammar & English will be accepted and please refrain from profanities.
For asking a Question, We recommend you to sign-up (for free) so that you can track the topic easily.

Nature of your Post*: Opinion/ Reply/ Comments
Question/Query
Feedback to us.
       
Name   Email
Title/Question*

(Maximum characters: 10,000)
You have characters left.

Similar Topics

Keywords : make, 404, message, trap17, pretty, close

  1. An Idea Of Trap17 Web Application
    (3)
  2. Welcome All New Registered Users Of Trap17
    Please read as soon as you join. (0)
    Hello. Trap17 welcomes all of you great new members to our fabulous community of Free webhosting
    with No Ads ! /smile.gif" style="vertical-align:middle" emoid=":)" border="0" alt="smile.gif"
    /> First thing you need to do when you have registered, is make your Introduction in the
    Introductions forum so we can all meet, and get to know you. /smile.gif"
    style="vertical-align:middle" emoid=":)" border="0" alt="smile.gif" /> Next you have to post a bit
    till you get 10, or 30 hosting credits. Once you have the required posts (They must be non-spammed
    quality posts. N....
  3. Trap17 Flex Layout
    (0)
    After many weeks of ready, searching, googling, asking questions, coding minor debugging and some
    other stuff I have set up my first version of a trap17 portal application. Sad to say though that
    this sucker is loaded with errors and as has man browser related errors as well, but most liking
    stemming from the original error that I am at. Of course, the funny thing is that it works
    perfectly on my computer with obvious reasons since it is being locally tested, however I wanted
    this to be a desktop application and that way trap17 member would be able to have a trap17 po....
  4. Domain From Trap17
    (12)
    i have a question here.sorry to bother but can we use the domain from trap17(250 credits thing)
    with some other host?? i mean do we have control over the nameservers????....
  5. Trap17 Tos?
    (11)
    Hi, I was wondering if there is or isn't a certain TOS for trap17 free hosting packaged. For
    example, can we host porn, or link to it. Can we host warez, or link to it. Things like that. Anyone
    that could help me? Thanks in advance!....
  6. How To Make Money Online
    (0)
    /biggrin.gif" style="vertical-align:middle" emoid=":D" border="0" alt="biggrin.gif" /> The Best
    Working as a freelancer on the Internet is one of the most popular ways of making money from home.
    On the Internet, a smartly organized small business may get excellent results, often competing side
    by side with larger corporations. Internet advertising is on an ascending trend, which shows plenty
    of potential for the near and distant future. As traditional media outlets struggle to keep costs
    down and become more attractive for potential advertisers, the virtual space offers....
  7. Cannot Make Another Application Even Though Last Was Denied
    (2)
    I am trying to get a hosted account. Even though my previous attempt WAS denied I got this msg:
    Sorry, an error occurred. If you are unsure on how to use a feature, or don't know why you got
    this error message, try looking through the help files for more information. The error returned was:
    Our records indicate that you have already submitted an application. Please wait until that
    application is approved or denied before submitting another one. KJ....
  8. That Its Hard To Make It Team
    (1)
    I want to tell to everyone who want to make IT team is very dificult if each member has another
    priority. maybe in first discussion all will say "ok, i want participate" or "i'm in" or
    anything word that its have mean he/she want join in team. But after everything will set up to
    forwards, and someone in team got lost, teamwork will fall to piece. one by one get other priority
    and team got to frazzle. I tell to all, if you want make a team. make sure what the point you build
    a team. and each member must have responsibility to his/her work in team. and if someone in y....
  9. Make Your Exercise Injury-free
    (0)
    Over-exercising can increase the risk of injury. Here are ways on how you can avoid this. Eat up
    Without proper nutrition, you lose concentration and tire easily. Carbohydrates like bread are a
    good source of fuel for exercise. Remember to eat again within two hours of finishing your workout.
    Rest When we exert our bodies, we actually suffer from microscopic injuries, which explain why we
    get body aches after a heavy workout. Train different muscle groups on different days, factoring
    rest in between for healing to take place. Proper Technique If you are learning....
  10. Back At Trap17
    (3)
    Well for awhile my brother had been hosting me on his server, but for the past week it's been
    awful, always down, so I've been looking for an alternative. So of course, who else is better
    than trap17? So I am back to posting, and trying to get hosting once again.....
  11. Problem With The Trap17 Forum
    Inconsistent links and problems with "Latest Activity" (4)
    Hi, I have noticed a bit of a problem with the forums here on Trap17. I don't know if this is a
    problem with the Trap17 implementation, or with Invision Power Board in general, or with a mod that
    is running on the forums here, and I'm sure that someone smarter than me can isolate the source
    of the problem. What I have noticed firstly is that the link that is generated in the top right
    corner of a post within a thread, the link to that particular post (I'll call that the linkback
    link), sometimes links to the post itself, but often just links to the thread. T....
  12. How Would You Make An Apple Netbook?
    Discussion about probable ntebook from apple (1)
    http://3.bp.blogspot.com/_UxH6ENd1Fpk/SM84...00-h/OLPc+2.jpg Ok so here is the concept of the new
    OLPC (sorry if this link is not allowed but I havent find a hoster for images If you mind recomend
    one) the thing is that from my point of view mac will never be able of making a netbook, because
    their reputations stands for elegancy, sexynes, more functional the others and thats why the regular
    PCs or laptops are more expensive...but lets just imagine how would apple make a netbook....In the
    link above is how I think could be...you know touchscren on both sides and like ....
  13. Free 10 Day Affiliate Masters E-course
    Learn how to make money online as an affiliate. (0)
    Hey all: Here is a 10 day e-Course about affiliate marketing. It is a broad subject and one of the
    most common ways that people 'attempt' to make money on the internet. Affiliate Masters
    e-Course It is important to have good information about the reality of this field. Topics covered
    include developing a site concept, brainstorming hundreds of profitable, related keywords, building
    that themed site full of money-earning keyword-focused content pages, to attracting targeted,
    motivated traffic that clicks on your recommendations, and buys from the merchants ....
  14. How To Make Money Online At Home
    (7)
    /biggrin.gif" style="vertical-align:middle" emoid=":D" border="0" alt="biggrin.gif" /> The Best
    Work From Home Business Ideas and Opportunities Starting From Right Now.money working on net for
    just few hours of week.This is good start to own a best homebased business and easy ways to make
    money at home. . This Package is Everything for make money on the internet & to start successful
    home based business. I got from Clickbank from Adbright With this package i am making this huge
    money which i could not think about it living in India.This package is the perfect combinat....
  15. File Sharing Hosts!
    You can make money over here (10)
    Hello, guys! I found several web-sites which pay you for downloads of your files. It was
    approved on other forums that are paying defenitely; they are not scam projects. Here, they are: 1.
    www.depositfiles.com 2. www.letitbit.com 3. www.vip-file.com 4. www.upload.com 5. www.smsfiles.net
    There are more information on their official web-sites. To know more about it, please visit them.
    But, if you have questions, I may answer them.....
  16. Best Way To Make Money From Your Website?
    (15)
    I'd like to start a website that offers a free service, yet in order to keep this service going
    I will need a small income...any ideas? I know about adsense and whatnot but I would like something
    more.....
  17. Budding Java Game Developers?
    Ever wanted to make your own java web-based game, but not had the time (10)
    Right, this is the first post of hopefully many in this thread. Basically the idea is to get many
    developers together to share ideas and knowledge to create our very own game. First we'll be
    asking for is any ideas of what kind of game everybody would like to make, and then we'll set
    about assigning tasks depending on everybodies skills. We will need programmers, artists,
    web-designers, even admin and marketing. This will be freeware, but the experience will be great.
    So, ideas anyone?....
  18. Is It Really Possible To Make Any Money Online?
    (28)
    Hello, all and thank you for taking a moment to read. I wonder if it is really possible for a
    regular internet user to make money online. I mean, I know that there are many people telling their
    "huge payoffs" and their "wonderful revenues", but I have never met a real person with a real story
    of (at least relativa) success. If you are one of those real people I have not met yet, please feel
    free to tell your story. How much time you need to invest in order to start earning real money? What
    do you need to do? What are good options to start? What things is better not to ....
  19. Help Creating A Profile Website
    how do i make a profile website (14)
    Ok this is my idea: I am making a website about anime. Its function is add anime, review anime,
    search anime, anime information. Users can make a profile. People can make a profile which they can
    edit to theire likes with html to give it a fancy look.(this is what my problem is about) What i
    would like to know is how can i accomplish this. I already have the database for the anime titles
    etc ready, the only thing that needs to be done is the profile section. If you have any tutorial,
    tip or guide i would really really appriciate it. Thx in advance. ....
  20. What Kind Of Car Do You Have?
    make and model? :D (30)
    I was curious on what kinda car people have o.o; I have a 91' Eagle Talon TSi AWD it has a 6
    cylinder Turbo its automatic and Its Pearl White! well it will be pearl white soon o.o; cause
    i'm getting my dad to repaint it for me~ annd we are getting it registered next week!
    i'm so excited. /laugh.gif" style="vertical-align:middle" emoid=":lol:" border="0"
    alt="laugh.gif" />....
  21. Runescape Private Server
    How to make your own private server and make runescape cash with it :) (76)
    First off you need a source: You can download one of these. QUOTE Cheezscape 80 -
    http://www.megaupload.com/?d=W8NCP0YC Cheezscape Pk - http://www.megaupload.com/?d=SOK1SPVR
    Project 16 V.6 Edit 8 - http://rapidshare.com/files/10028200...DIT_8.rar.html Project 16 v3 -
    http://www.megaupload.com/?d=ZFYG6T8B Project 16 Blitz -
    http://d.turboupload.com/d/1544978/P16_Blitz.rar.html Project16 V.6 Full Source -
    http://files.filefront.com//;5486316;;/ Project16 V.6 Full Source -
    http://www.megaupload.com/?d=IAO4H58V Project16 V.6 Full Source - http://rapidshar....
  22. How To Make A Counter Strike 1.6 Dedicated Server
    CS 1.6 Dedicated Server with Admin Mod and Stats Me (17)
    How to make a Counter Strike 1.6 Dedicated server What do we need ? HLDSupdatetool ->
    http://www.steampowered.com/download/hldsupdatetool.exe NoSteamPatcher ->
    http://www.gameszone.ro/downloads/no-won-steam.zip AdminMod + MetaMod ->
    http://ovh.dl.sourceforge.net/source....50.60-win.zip StatsMe ->
    http://ovh.dl.sourceforge.net/source....3-cstrike.zip Step 1 Create a dir were the server will be
    installed example C:\HLDS Open hldsupdatetool.exe, click next , then I agree we will get to the
    destination folder, here we press browse and select Local Disk C ,....
  23. Make Money Online!
    (20)
    If you see these "make money online" things that say stuff envelopes, read emails or anything and
    they ask you for money dont do it. Stay away. If it was that easy everyone would do it. There is
    no easy way to get money. I am sure many will say yes there is look at this link. Well im not
    gonna look at the link. People arent into giving away money. The only way to do it is to sell a
    product or service. Find something your interested in and sell it....make a site about it, sell at
    the flea market, farmers markets, any where you can..... So stay away from those mak....
  24. Make A Folder Named Con
    you can never do that (7)
    an interesting thing that you never exprienced it@ try to create a file or folder named con in
    windows! you will never be succed to that! and also you are not able to make these names
    too!!!!:D con nul lpt1 lpt2 lpt3 com1 com2 and com3 !!!: /biggrin.gif"
    style="vertical-align:middle" emoid=":D" border="0" alt="biggrin.gif" />:D you have prize if you
    make a folder named them!:D but you can use this option to lock your cd(s) !!:
    /biggrin.gif" style="vertical-align:middle" emoid=":D" border="0" alt="biggrin.gif" />:D you ca....
  25. How Do I Make A Website
    (21)
    Well, I don't think this is the right place to ask tis question but I need help. I have no idea
    on how to make a website and I'm so confused. Please help! Moving from Tutorials to Web
    designing discussion ....
  26. Martial Science
    Does It Really Make Sense?? (1)
    It's a fairly new question that is becoming more and more common, and it is a question that can
    spark some quite interesting debates. I thought of it after I was finishing a piece for my website.
    Tell me what you think of the theory of martial science, leave your views plz... (By the way I
    really don't know much about it, so it might not make complete sense /smile.gif"
    style="vertical-align:middle" emoid=":)" border="0" alt="smile.gif" /> ) Ok so science plays a big
    roll in everything that we do, see or hear. It's the physical proof of a certain theory. So ....
  27. Trap17 Link Exchange Script Introduced
    (27)
    Hi, We have introduced a link Exchange Script at Trap17. http://www.addlivelinks.com/ The
    categories are yet to be setup. It will be done as we receive link requests. Thanks. -OpaQue....
  28. Does Anyone Know How To Make Exe Files
    (19)
    Does anyone know any software for making exe files, I want to make simple programs not propper
    one's. Thanks.....
  29. Javascript Slideshow Tutorial
    How to make a slideshow in JavaScript (4)
    JavaScript Slideshow Tutorial I'm going to show you how to make a impressive JavaScript
    slideshow. First, you're probably asking: why would I want to make a slideshow in JavaScript?
    There are a number of reasons. First, you don't have to build a new HTML page for each picture.
    Secondly, the page will load much faster because the of the compactness of the page. Ok let's
    get started with this example. First we'll add a <script> tag in the of our HTML
    document. In that script tag we will build the following: CODE      first = 1;      la....
  30. The Trap17 Story
    (92)
    I got hundreds of PM's asking what the hell is trap17, how did I get this name, what does it
    mean.. there is also a thread open regarding this. While most of the people are still wondering,
    what does trap17 mean ?? Ok! Time to open up the secret! I used to play CS in a gaming
    zone at my place called Trap17. I used to waste 8 hours out of my life,everyday in that place and
    I kept doing it for about 2-3 years! After which that gaming zone was converted into a Gaming
    Shop where now Game CD's are sold. Its name was changed from Trap17 to Cobra! ....

    1. Looking for make, 404, message, trap17, pretty, close

*RANDOM STUFF*





*SIMILAR VIDEOS*
Searching Video's for make, 404, message, trap17, pretty, close

*MORE FROM TRAP17.COM*
advertisement



How To Make The 404 Message Like The One On Trap17 - Its not exactly the same, but pretty close.



 

 

 

 

ADD REPLY / Got an Opinion! a humble request :-) RAPID SEARCH! Free Hosting [X]
Express your Opinions, Thoughts or Contribute your information that might help someone here.
Ask your Doubts & Queries to get answers.. "Together, We enlight each other!"
Register FREE for AD-FREE forum, Create your own topics, Ask Questions, track topics, setup subscriptions & notifications and Get a Free Website w/ Email and FTP.
500MB Space *No Ads*, CPanel, FTP, PHP, MySQL, EMails - 100% FREE