Soviet Rathe
Members-
Content Count
467 -
Joined
-
Last visited
Everything posted by Soviet Rathe
-
hmmm, sorry I didn't see your thread. MIRC is free I think, but if not then there are free alternatives out there. I agree IRC's are insecure but you have me as admin xD I'm an expert at irc so if someone tries to take over our channel or anything else happens then I can stop it! @Web_Designer, I don't think i'll be disappointed on this one, an irc channel is easy to make and if it will be just a few users on it then so be it, Xisto is all about helping and I think an irc would be excellent in doing so. my irc client is open 24/7 so another empty server tab won't bother me too much
-
ohiI'd like you to know that I'm planning on making an IRC server for trap, for those of you who don't know, IRC = Internet Relay Chat.basically it will be a server where people can connect and chat with any irc client like xchat or mirc, programs like these hardly use any resources and run in the background, so you can idle in them 24/7 with no problems! (like I do )I think this would be great for trap, of course, I want to see what Opaque thinks about this, but atleast I think we should give it a trial to see how it goes.so what do you think?PS: it's about 4:00 AM right now so if my typing sounds tired that's cause I am
-
someone fixed it for me the correct code is <p><label for="{$message[1]}" style="font-weight:bold;{$message[3]}width:25%;float:left;display:block;">{$message[0]}</label> <textarea name="{$message[1]}" cols="40" rows="6">{$message[2]}{$_GET[ 'prize' ]}</textarea></p>
-
I need help with my form, it was a ready-made script i've been working on and i'm having a bit of trouble with the form, here's my code: $name = array('Name','name',NULL,NULL);$email = array('Email','email',NULL,NULL,NULL);$subject = array('Subject','subject',NULL,NULL);$message = array('Message','message',NULL,NULL);$security = array('Security question','security',NULL,NULL,NULL);$yourusername = $membername;$error_message = '';if (!isset($_POST['submit'])) { showForm();} else { //form submitted $error = 0; if(!empty($_POST['check'])) die("Invalid form access"); if(!empty($_POST['name'])) { $name[2] = clean_var($_POST['name']); if (function_exists('htmlspecialchars')) $name[2] = htmlspecialchars($name[2], ENT_QUOTES); } else { $error = 1; $name[3] = 'color:#FF0000;'; } if(!empty($_POST['email'])) { $email[2] = clean_var($_POST['email']); if (!validEmail($email[2])) { $error = 1; $email[3] = 'color:#FF0000;'; $email[4] = '<strong><span style="color:#FF0000;">Invalid email</span></strong>'; } } else { $error = 1; $email[3] = 'color:#FF0000;'; } if(!empty($_POST['subject'])) { $subject[2] = clean_var($_POST['subject']); if (function_exists('htmlspecialchars')) $subject[2] = htmlspecialchars($subject[2], ENT_QUOTES); } else { $error = 1; $subject[3] = 'color:#FF0000;'; } if(!empty($_POST['message'])) { $message[2] = clean_var($_POST['message']); if (function_exists('htmlspecialchars')) $message[2] = htmlspecialchars($message[2], ENT_QUOTES); } else { $error = 1; $message[3] = 'color:#FF0000;'; } if(empty($_POST['security'])) { $error = 1; $security[3] = 'color:#FF0000;'; } else { if($question_answers[$_POST['question']] != strtolower(clean_var($_POST['security']))) { $error = 1; $security[3] = 'color:#FF0000;'; $security[4] = '<strong><span style="color:#FF0000;">Wrong answer</span></strong>'; } } if ($error == 1) { $error_message = '<span style="font-weight:bold;font-size:90%;">Please correct/enter field(s) in red.</span>'; showForm(); } else { if (function_exists('htmlspecialchars_decode')) $name[2] = htmlspecialchars_decode($name[2], ENT_QUOTES); if (function_exists('htmlspecialchars_decode')) $subject[2] = htmlspecialchars_decode($subject[2], ENT_QUOTES); if (function_exists('htmlspecialchars_decode')) $message[2] = htmlspecialchars_decode($message[2], ENT_QUOTES); $message = "Username:$membername\r\nPoints:$memberpoints\r\nName:$name[2]\r\nEmail:$email[2]\r\n\r\nMessage:\r\n$message[2]\r\n"; if (!$from) $from_value = $email[2]; else $from_value = $from; $headers = "From: $from_value" . "\r\n" . "Reply-To: $email[2]"; mail($to,"$subject_prefix - $subject[2]", $message, $headers); if (!$thank_you_url) { echo $GLOBALS['thank_you_message']; echo "\n"; } else { header("Location: $thank_you_url"); } }} //else submittedfunction showForm(){global $name, $email, $subject, $pointsneeded, $message, $security, $question_answers, $form_width, $form_background, $form_border, $form_border_style; $question = array_rand($question_answers);echo $GLOBALS['error_message']; if ($pointsneeded<=0){echo <<<EOD<div style="width:{$form_width};vertical-align:top;text-align:left;background-color:{$form_background};border: 1px {$form_border} {$form_border_style};overflow:visible;" id="formContainer"><form method="post" class="contactForm"><fieldset style="border:none;"><p><label for="{$name[1]}" style="font-weight:bold;{$name[3]};width:25%;float:left;display:block;">{$name[0]}</label> <input type="text" name="{$name[1]}" value="{$name[2]}" /></p><p><label for="{$email[1]}" style="font-weight:bold;{$email[3]}width:25%;float:left;display:block;">{$email[0]}</label> <input type="text" name="{$email[1]}" value="{$email[2]}" /> {$email[4]}</p><p><label for="{$subject[1]}" style="font-weight:bold;{$subject[3]}width:25%;float:left;display:block;">{$subject[0]}</label> <input type="text" name="{$subject[1]}" value="{$subject[2]}" /></p><p><label for="{$message[1]}" style="font-weight:bold;{$message[3]}width:25%;float:left;display:block;">{$message[0]}</label> <textarea name="{$message[1]}" cols="40" rows="6">{$message[2]}</textarea></p><p><label for="{$security[1]}" style="font-weight:bold;{$security[3]}width:25%;float:left;display:block;">{$question}?</label> <input type="text" name="{$security[1]}" value="" size="10" /> {$security[4]}</p><div style="margin-left:25%;display:block;font-size:90%;">We are sorry but please answer the above question to prove you are a real visitor and not a spam bot.</div><p><span style="font-weight:bold;font-size:90%;">All fields are required.</span></p><input type="hidden" name="question" value="{$question}"><input type="hidden" name="check" value=""><input type="submit" name="submit" value="Submit" style="border:1px solid #999;background:#E4E4E4;margin-top:5px;" /></fieldset></form></div> that's the unedited script, let's look at this part: <p><label for="{$message[1]}" style="font-weight:bold;{$message[3]}width:25%;float:left;display:block;">{$message[0]}</label> <textarea name="{$message[1]}" cols="40" rows="6">{$message[2]}</textarea></p> here it is after I edit it: <p><label for="{$message[1]}" style="font-weight:bold;{$message[3]}width:25%;float:left;display:block;">{$message[0]}</label> <textarea name="{$message[1]}" cols="40" rows="6">{$_GET[ 'prize' ]}</textarea></p> The reason I changed it is because I want it so when the url is like ?prize=anythinghere then the box will have anythinghere already filled in. When i do it that way it works like a charm! but with one problem. When I try to Submit the form it comes back, and the form turns red as if there was an error of some kind. so to break it down, $_GET[ 'prize' ] works in doing what I want it to, but in order for the form to submit I need the $message[2] and i'm a bit novice with PHP so idk how to achieve this.
-
Knowledgesutra/trap17 Contest, $350 In Prizes!
Soviet Rathe replied to web_designer's topic in Web Hosting Support
CMON GUYS just over a week before contest closes... I was generous enough to donate these great prizes and I only get a couple entries? very disappointing indeed....... -
wow, look at Xisto's mywot ratings https://www.mywot.com/en/scorecard/Xisto.com comment half of them say trap is a virus wtf?
-
Knowledgesutra/trap17 Contest, $350 In Prizes!
Soviet Rathe replied to web_designer's topic in Web Hosting Support
lol nice, but if there are no videos/pictures the entry doesn't count -
Long live trap17!!! Kill knowledgesutra with fire!!!!!!!!
-
Personally i've always been against IPB 3, it's not exactly what I would call a forum and imo it was a mistake to upgrade.and as for the increase in "members" it's actually an increase in "guests" which I can't really understand cause the upgrade wouldn't have anything to do how the pages are indexed, other then that, member wise.. the forums have sorta died imo... just look at the contest I have running... great prizes and no ones really paying attention to it? yea i'd say the forums have pretty much died.
-
Knowledgesutra/trap17 Contest, $350 In Prizes!
Soviet Rathe replied to web_designer's topic in Web Hosting Support
Cmon guys we need more entries!! -
um....what is that website?
-
I might give it a shot :)But I think the logo that's already up is perfect!
-
Knowledgesutra/trap17 Contest, $350 In Prizes!
Soviet Rathe replied to web_designer's topic in Web Hosting Support
Sure, you are allowed to edit your entry until the contest closes you can also enter multiple times, all of your combined entries will be judged together. -
Knowledgesutra/trap17 Contest, $350 In Prizes!
Soviet Rathe replied to web_designer's topic in Web Hosting Support
Good job Kira! pretty simple fliers, but good effort, how many cars did you do this to? going around spamming other websites will give us a bad name. just think about it. This contest is all about creativity and to show you are willing to put some effort for these forums, I understand what you're saying, that people will just ignore what you do, but it's just the thought! and you can get a nice prize! -
Knowledgesutra/trap17 Contest, $350 In Prizes!
Soviet Rathe replied to web_designer's topic in Web Hosting Support
I don't think OpaQue would mind, afterall you're advertising his site. I think a good 20 entries would be enough, but I'm not going to hand out prizes if there's only like 5 or 6 entries. I'm really hoping there will be a good number. -
Knowledgesutra/trap17 Contest, $350 In Prizes!
Soviet Rathe replied to web_designer's topic in Web Hosting Support
If you really want to enter you can, that is, if you have a US,CA address for the items to be shipped to, heck, you could even donate then prize to someone else if you won! -
Knowledgesutra/trap17 Contest, $350 In Prizes!
Soviet Rathe replied to web_designer's topic in Web Hosting Support
Too much work? I actually got the contest idea from another forum, the only difference is that the prizes were less in value then the ones I have here.one guy printed over 500 fliers and put them all over his school. another guy did the same but he drove around for hours, wasting gas, and putting them in peoples mail boxes! and lots of the other entries had just as much effort. so I don't see how it could be "too much work" I don't see why it doesn't seem "real", I came into some good fortune and thought i'd share it with my favorite community. This contest is 100% legit and I hope to get alot of entries from everyone. -
Knowledgesutra/trap17 Contest, $350 In Prizes!
Soviet Rathe replied to web_designer's topic in Web Hosting Support
I've noticed this forum has been slowing down a bit and i've been itching to start a contest somewhere and I thought this was the best place to do it!! Promote Xisto in the craziest/coolest way you can come up with. You must have a picture or video of what you did. (if it's a picture, make sure it's more than one!) Example: Print off a paper with "Xisto.com" (add a creative slogan) Go plaster it on 50 different vending machines. There is no limit to what you can do. (don't get a tattoo ) *Don't do anything illegal please. Your entry must follow the forum rules, Nothing inappropriate. Points will go towards entries that are funny, creative, and daring. Video recordings are a plus. *No photoshops please This contest starts today (May 3rd). All entries will be accepted until the 1st of June. We want to give everyone a chance to participate! 1st Place: Sidewinder x6 Keyboard & Sidewinder x8 Mouse PROFESSIONAL GAMING HARDWARE 2nd Place: Comfort Curve Keyboard 2000 & Wireless Laser Mouse 5000 3rd Place: LifeCam VX-3000 4th Place: LifeChat LX-3000 5th Place: $1 cash LOL (not kidding) To qualify, you must be living in the US or Canada, these items cannot be shipped internationally, sorry. Due to the substantial prizes and value, there should be at least 30 entries. I hope to see a good turnout! This contest has officially started. Post all entries below! -
Ccleaner is good for a free registry cleaner, but if you want optimal performance you should go with paid software, here is a list of all the softwares I use to keep my computer ship-shape there are many free alternatives, in fact some of the softwares I listed above are free, and the paid ones you can install on all of your computers and have maximum protection and fix some of those errors
-
IE8 is by far the most buggy web browser made within the last few years, some people are lucky enough to not experience any problems, some are not, with major companies now suggesting that people download IE7 it's a good idea.If it does not work on their computer it's time to look for an alternative, if you want to use Internet Explorer I suggest you go for IE7, it's stable and is the closest thing to IE8.You might want to try other popular browsers such as Chrome or FirefoxPersonally I've never liked any versions of IE, especially when I installed IE8, and all I had were crashes and errors
-
I Was A Spammer At Trap17/ Will Be On Knowledgesutra LOL
Soviet Rathe replied to OpaQue's topic in General Discussion
LOLk if I just said that it would be spam wouldn't it?what if I also said ROFL? -
How To Post Pictures On A Website That Cannot Be Copied
Soviet Rathe replied to anwiii's topic in Websites and Web Designing
k, there is absolutely no way to keep someone from copying any part of a website, but you can make it harder you can use CSS or PHP to show the picture but not be able to simply right-click and save it, I'm not sure how to do this but for the normal user they would not be able to simply save the picture, but with someone who it a bit more advanced they can grab it from their cache.