snlildude87
Members-
Content Count
2,350 -
Joined
-
Last visited
Everything posted by snlildude87
-
Hmm, I'm not seeing any links. All I'm seeing is one big template....
-
If you buy a subdomain called mariocircuit. then you can have resicuatro.mariocircuit.com. I think all you need to do is go to the settings or control panel at wherever you registered your domain name, and enter in Xisto's nameservers (ns1.trap17.com and ns2.trap17.com) in the spaces provided. Then, log into your cpanel for resicuatro.trap17.com, and go to addon domains, and enter mariocircuit.com. Every should set itself up for you. Now, go to Manage Subdomains in your cpanel, and set up a subdomain for resicuatro.mariocircuit.com. Yes, you would have to get your cpanel account changed to make mariocircuit.trap17.com. I believe you can change your current subdomain, resicuatro.trap17.com to mariocircuit.trap17.com. Go to http://forums.xisto.com/topic/173-free-web-hosting-change-of-domain-name/ and request for it. However, you cannot have mariocircuit.trap17.com and resicuatro.trap17.com. It's one or the other.
-
There is no way to get subdomains like that because that would mean two accounts on Xisto, and that is against the rules. However, you can make a sub-sub domain for your resicuatro.trap17.com subdomain to make it look like mariocircuit.resicuatro.trap17.com. I know that's a long URL, but there are many URL redirects that you can use that will significantly shorten that. One example is http://tinyurl.com/ To make a sub-sub domain, go to your cpanel, and click on Manage Subdomains (or something to that effect), and follow the instructions. If you buy a domain name, then you go make mariocircuit.yourdomain.com... Hope that helps, and good luck with whatever you're doing!
-
1. Make a file called message.js 2. In message.js, enter the following code: // CREDITS:// Messagebox with fadeing Background// By Peter Gehrig// Copyright © 2004 Peter Gehrig. All rights reserved.// Permission given to use the script provided that this notice remains as is.// Additional scripts can be found at http://http://ww12.24fun.com//info@24fun.com// 1/08/2004// IMPORTANT:// If you add this script to a script-library or script-archive// you have to add a highly visible link to// http://http://ww12.24fun.com/ on the webpage// where this script will be featured// set your messages. Add as many as you like (you may add additional HTML-tags)var text=new Array()text[0]="message 1"text[1]="message 2"text[2]="message 3"text[3]="message 4"// set the corresponding links // If you don't want to link a message just add a "#" instead of an URLvar textlink=new Array()textlink[0]="http://xisto.com; //link for message 1textlink[1]="#" //link for message 2textlink[2]="http://xisto.com; //link for message 3textlink[3]="http://xisto.com; //link for message 4// set the corresponding targets // Acceptable values are "_blank", "_self", "_top" or the name of any framevar texttarget=new Array()texttarget[0]="_blank"texttarget[1]="_self"texttarget[2]="_top"// set the font of the messagesvar textfont="Verdana"// set the font-color of the messagesvar textfontcolor="#000000"// set the rollover-fontcolor of the messagesvar textfontcolorrollover="#FF0000"// set the font-size of the messages (CSS-values)var textfontsize=8.5// set the font-size for Netscape 4x (HTML-values)var textfontsizeHTML=2// set the font backgroundcolor of the textboxvar textbgcolor="#FFFFFF"// set the textweight (normal or bold)var textweight="nomal"// set the fontstyle (normal or italic)var textitalic="normal"// set the width of the textbox (pixels)var textwidth=700// set the height of the textbox (pixels)var textheight=50// set the pause (seconds)var textpause=7// set the width of the bordervar textborder=1// set the color of the bordervar textbordercolor="#FF0000"// set the horizontal alignment of the messages (center, left, right)var textalign="center"// set the vertival alignment of the messages (middle, top, bottom)var textvalign="middle"// do not edit below this linevar textdecoration="none"var textweightA="<b>"var textweightB="</b>"var textitalicA=""var textitalicB=""var transparency=100var transparencystep=2var x_pos=0var y_pos=0var i_text=0var textsplit=""var i_textsplit=0var i_mark=0var tickercontentvar pausefade=30textpause*=1000var oneloopfinished=falsevar browserinfos=navigator.userAgent var ie=document.all&&!browserinfos.match(/Opera/)var ns4=document.layersvar ns6=document.getElementById&&!document.all&&!browserinfos.match(/Opera/)var opera=browserinfos.match(/Opera/) var browserok=ie||ns4||ns6||operafunction changecontent() { getcontent() i_text++ if (i_text>=text.length) {i_text=0} if (ie) { ticker.innerHTML=content fadeout() } if (opera || ns6) { document.getElementById('ticker').innerHTML=content var texttimer=setTimeout("changecontent()",2*textpause) } if (ns4) { document.roof.document.ticker.document.write(content) document.roof.document.ticker.document.close() var texttimer=setTimeout("changecontent()",textpause) } }function fadein() { if (transparency<100){ transparency+=transparencystep if (ie) { document.all.tickerbg.filters.alpha.opacity=transparency } var fadetimer=setTimeout("fadein()",pausefade) } else { clearTimeout(fadetimer) setTimeout("changecontent()",1000) }}function fadeout() { if (transparency>0){ transparency-=transparencystep if (ie) { document.all.tickerbg.filters.alpha.opacity=transparency } if (ns6) { document.getElementById('tickerbg').style.MozOpacity=transparency/100 } var fadetimer=setTimeout("fadeout()",pausefade) } else { clearTimeout(fadetimer) setTimeout("fadein()",textpause) }}getcontent()function getcontent() { if (ie || opera) { var tablewidth=textwidth-2*textborder var tableheight=textheight-2*textborder } else { var tablewidth=textwidth var tableheight=textheight } if (ie || ns6) { var padding = parseInt(textborder)+3 content = "<table width=" + tablewidth + " height=" + tableheight + " cellpadding=" + padding + " cellspacing=0 border=0><tr valign=" + textvalign + "><td align=" + textalign + ">" content += "<a href=\"" + textlink[i_text] + "\" target=\"" + texttarget[i_text] + "\" style=\"position:relative;font-family:\'" + textfont + "\';font-size:" + textfontsize + "pt;font-weight:" + textweight + ";text-decoration:" + textdecoration + ";color:" + textfontcolor + ";font-style:" + textitalic + ";\" onMouseOver=\"this.style.color=\'"+textfontcolorrollover+"\'\" onMouseOut=\"this.style.color=\'" + textfontcolor + "\'\">" content += text[i_text] content += "</a></td></tr></table>" } else { content = "<table width=" + tablewidth + " height=" + tableheight + " cellpadding = " + textborder + " cellspacing=0><tr valign=" + textvalign + "><td align=" + textalign + ">" content+="<a href=\"" + textlink[i_text] + "\" target=\"" + texttarget[i_text] + "\" style=\"position:relative;font-family:\'" + textfont + "\';font-size:" + textfontsize + "pt;font-weight:" + textweight + ";text-decoration:"+textdecoration + ";color:" + textfontcolor + ";font-style:" + textitalic+";\">" content+=text[i_text] content+="</a></td></tr></table>" framecontent = "<table width=" + tablewidth + " height=" + tableheight + " cellpadding = 0 cellspacing=0 border=" + textborder + "><tr><td>" framecontent += "<font color=\"" + textbgcolor + "\">" framecontent += "." framecontent+="</font>" framecontent+="</td></tr></table>" }}if (ie || ns6 || opera) { if (ns6) { textwidth-=2*textborder textheight-=2*textborder } document.write("<div id=\"roof\" style=\"position:relative;width:"+textwidth+"px;height:"+textheight+"px;font-family:\'"+textfont+"\';border-style:solid;border-color:"+textbordercolor+";border-width:"+textborder+"px;background-color:"+textbgcolor+";\">") if (!opera && !ns6 ) { document.write("<div id=\"tickerbg\" style=\"position:absolute;top:"+-textborder + "px;left:"+-textborder + "px;width:" + textwidth + "px;height:" + textheight + "px;font-family:\'" + textfont + "\';font-size:" + textfontsize + "pt;font-weight:" + textweight + ";font-style:" + textitalic + ";border-style:solid;border-color:" + textbordercolor + ";border-width:" + textborder + "px;background-color:" + textfontcolor + ";overflow:hidden\;filter:alpha(opacity=100)\">") document.write("</div>") } document.write("<div id=\"ticker\" style=\"position:absolute;top:"+-textborder+"px;left:"+-textborder + "px;width:" + textwidth + "px;height:" + textheight + "px;font-family:\'" + textfont + "\';font-size:" + textfontsize + "pt;font-weight:" + textweight + ";font-style:" + textitalic + ";border-style:solid;border-color:" + textbordercolor+";border-width:" + textborder+"px;overflow:hidden\;\">") document.write("</div></div>") window.onload=changecontent}else if (ns4) { document.write("<ilayer name=\"roof\" width="+textwidth+" height="+textheight+">") document.write("<layer name=\"tickerframe\" width="+textwidth+" height="+textheight+" top=0 left=0 bgcolor="+textbgcolor+">") document.write(framecontent) document.write("</layer>") document.write("<layer name=\"ticker\" width="+textwidth+" height="+textheight+" top=0 left=0>") document.write() document.write("</layer>") document.write("</ilayer>") window.onload=changecontent} 3. Save message.js 4. Upload message.js to your public_html folder. 5. Make a file called testmessage.html and put the following code in testmessage.html: <html> <head> <title>Fading Message</title> </head> <body> <script language="javascript" src="message.js"></script> </body></html> 6. Save testmessage.html 7. Upload testmessage.html to the same folder as message.js You're all set! Basically, the code <script language="javascript" src="message.js"></script> can be placed anywhere inside the <body> tags as long as message.js is in the same folder as testmessage.html Have fun! Edit: Tried to fix the code so the forum layout is preserved.
-
Umm, no. More than 50% of the people in the world still use 56K - believe or not, there are many third world countries out there. I'd give you the proof, but I lost the URL to the article...
-
It did not stop. The counter is still going in the background - refresh your inbox after an hour or so, and you will notice a change in space. Also, the gmail counter has stopped several times since its 2 year anniversary in april 2, so there is really to worry about.
-
Really? Didn't he develop some side effects to that because eating only jello could not be very healthy... Serious side effects? Ouch. What were they?Yeah, I think the negative calorie foods should be pretty safe because all the foods listed on ladyspanky's list are vegetables and fruits - all good for you. Anyway, good luck with this. I might try it myself, too because I'm getting a little bulge in the stomach area when I sit down. raaeft1, remember to post your progress here.
-
Problem apparently solved -> thread closedP.S. Don't flame. It's not worth it to lose your account over some anger problems.
-
Did you try Fantastico in your cPanel? Fantastico has a lot of cool forums or discussion boards such as Invision Power Board (the one like Xisto), and phpBB. You can install them all with a click!
-
No, there is not. Everything you need to know is in this thread: http://forums.xisto.com/topic/6147-posting-activity-rule-automated-hosting-script-know-about-how-this-system-works/
-
You need 4 hosting credits or more for your account to unsuspend itself. Whoops, I was tired that day, so the Forsaken's question did not fully register in my mind. You are correct for the most part on your post. You do lose one credit a day, and one must have 4 credits or more to keep his account. If you plan to apply for a free web hosting account, then I recommend you have about 14 credits or more (if you are applying for Package One) or 34 credits or more (if you are applying for Package Two). This will ensure that you have at least 4 hosting credits if your hosting application is accepted (14 - 10 = 4; 34 - 30 = 4). Also, it's not hard at all to keep your hosting account because the credit system is pretty lenient. I have around 333 hosting credits right now.
-
I believe so. I mean, you can go into other parts of the world, but you cannot enter in an address of something in a different countries and expect to see the arial view of it. You can scroll to the Pacific Ocean or the Atlantic Ocean, but only addresses work for the US and the UK.
-
How Long Will You Live? take this quiz and find out
snlildude87 posted a topic in General Discussion
Check out this quiz: The Longevity Game. It asks you twelve short questions based on your lifestyle, medical history, and family history. After you answer a question, it updates the age to which you will live on the left side. That way, you can try to input different answers to see if your age will increase or decrease. This is very helpful for those who are planning to improve their lifestyle or simply just to waste some time. Anyways, here is a screenshot of my results: Upload your screenshot and share what you can do to increase or decrease your age! Edit: Fixed my spelling "Longetivity" -> "Longevity" -
My Website And Trap17 beginning to be slow
snlildude87 replied to karlo's topic in Web Hosting Support
Hmm, I just went to my site, and the two computers in my system tray changed it colors right away, so I think this is a problem with your internet connection... -
I use Nucleus for my blog, but it's still a CMS. The best thing I like about Nucleus is that you can customise the skins and templates to fit your design that you have made. It may be a blog, but you can easily make it a CMS if you wish. The best thing about Nucleus is that it's free, so you can download the software and try it out on your Xisto site! If you decide to start using Nucleus, feel free to PM me, and I'll show you how to set it up. Good luck! Edit: Fixed my BBCode
-
How To Make An M3u File? Wondering if any could help??
snlildude87 replied to fre3's topic in Websites and Web Designing
There are softwares out there that can make a playlist file, or an m3u file for you. You can make a playlist file in many ways. One way is by using absolute links, and the other is to use relative links. Absolute links are really bad an ineffecient because you will not be able to play the songs in your playlist file if you move your songs around in your hard drive. However, relative links will work, and you will be able to move the playlist file as well as your mp3 files around. There are programs that will do just that for you. I make my playlist file using Winamp. Simply place your songs in the Playlist Editor, go to File -> Save, and save your playlist. It's that simple! If you decide to burn all your songs to a CD, as well as the playlist file, you will still be able to listen to them. Make sure those are not copyrighted albums or else you will lose your web hosting account. -
There is a graphical user interface feature in XAMPP (my tutorial). If you scroll down to "Making it Work - The Easier Way", you'll see that all you need to get your Apache server up and working with XAMPP is with a simple click: All you need to do is find xampp-control.exe and click the Start button on the GUI, and you'll be all set!
-
Seb, you get hosting creditsby making good quality posts. The longer your posts are, the better. A small post will not earn you as much credit as a long post will. You need 4 hosting credits once you are hosting to keep your account. If your credit reachers below 4 hosting credit days, but it is above negative 30 credit days, then your account will be suspended. If your account is suspended, then your files are still safe on Xisto servers, so you will have a chance to get out of the hole. However, if you hosting credits fall below negative 30, then your account will be terminated, and all your files will be deleted, and they are not recoverable if that happens. For more information, read this post: http://forums.xisto.com/topic/8717-fair-warning-is-given-to-all-hosted-members/ Edit: added the link at the end
-
Question answered -> thread closed
-
That explains why you get more space with myisam....
-
Hmm, the only way if you can lose credits is if a moderator or an admin deletes your post. I'm pretty sure it wasn't me who deleted it because I raise the user's warning level after deleting posts, and your warning level is at 0%. Try contacting Nils or OpaQue to see how you got in the negatives.Your account will get unsuspended automatically if you have above 4 hosting credit days.