Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - flyingfisch

Pages: 1 ... 25 26 [27] 28 29 ... 119
391
Site Feedback and Questions / Re: Project to stop attacks page
« on: November 02, 2012, 05:37:38 pm »
*Fx16 ;P
http://www.mozilla.org/en-US/firefox/releases/1.5.html
Search for abbreviation and you'll see why.

Yeah, I know, but it seems so weird...

392
Site Feedback and Questions / Re: Project to stop attacks page
« on: November 02, 2012, 05:20:58 pm »
How much litterate are they about computer security though? Because there are people who are so dumb about computers (no offense to them, everyone gotta start somewhere and technology isn't everyone's cup of tea) that they'll click any link in their e-mail or they'll go anywhere on the Internet without bothering to make sure if it might be an unsafe site. I know myself that back in 2008-09 every month or two I had to help my bro get rid of viruses because he was using IE6 to go online and did not want to switch.

Oh, no none of that. My dad's pretty tech-savvy and my mom uses linux and FF16. Also, my dad has always been telling us not to click links in emails. We all have adblock. I really don't know where any viruses could have crept in.

393
Site Feedback and Questions / Re: Project to stop attacks page
« on: November 02, 2012, 05:01:56 pm »
I doubt its anyone in my home, because my dad doesn't do torrents, and my mom only checks her emails. We have one mobile device but it uses mobile internet, not wifi.

394
Computer Programming / Re: The most messed up 3D known to man!
« on: November 02, 2012, 04:32:17 pm »
why are you trying to compensate for that effect? it is natural for it to be there, so removing it will make your program look less natural. you may have to adjust the angular width or the total horizontal space you can see at once, though. one that's used a lot is 60 degrees.

For some reasons, I don't think I have noticed any FPS for the computer with that effect ???, or maybe it's due to the fact that every FPS I played were made back in the days where computer screens were not flat. Also when I take pictures with my camera walls always look like figure 18


I think that's as a result of barrel distortion... which sometimes happens with digital cameras.

395
Site Feedback and Questions / Re: Project to stop attacks page
« on: November 02, 2012, 04:21:33 pm »
well, according to about:config, I everything is default and I do not have an override set...

EDIT:

And according to this, my useragent is: Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:16.0) Gecko/20100101 Firefox/16.0

EDIT2:

4 times now.

396
Site Feedback and Questions / Re: Project to stop attacks page
« on: November 02, 2012, 04:15:18 pm »
Is there any way to change it or prevent it from giving me this page?

EDIT:

3 in a row. Tic-tac-toe, anyone?

What's going on here?


397
Site Feedback and Questions / Re: Project to stop attacks page
« on: November 02, 2012, 03:55:21 pm »
What is a useragent?

Also, this seems to be happening to me about once a day....

EDIT:
Great. Just got 2 in a row. :(

398
Web Programming and Design / Re: mail() not working?
« on: November 02, 2012, 03:24:17 pm »
works now, thanks juju :)

399
Web Programming and Design / Re: mail() not working?
« on: November 02, 2012, 02:50:53 pm »
You could execute the 'mail' binary from php :P

I'm not real knowledgeable with PHP. how would i do that? Thanks. :)

400
Web Programming and Design / Re: mail() not working?
« on: November 02, 2012, 02:48:51 pm »
Yeah, probably a misconfigured php.ini. Might look into this.

OK, so what should i do in the meantime?

401
Web Programming and Design / Re: mail() not working?
« on: November 02, 2012, 02:33:59 pm »
you probably need a 57o9.org email then, let juju do the work for you :P

Oh, it won't work for any address?

402
Web Programming and Design / Re: mail() not working?
« on: November 02, 2012, 02:32:10 pm »
may your mail settings are incorrect in your php.ini, i can't help you much there, sorry
EDIT: just noticed for the headders:
"From: My Secret name <[email protected]>\r\n"

Well, its on juju's server so idk...

also, what do you mean about the headers?

403
Web Programming and Design / mail() not working?
« on: November 02, 2012, 02:13:45 pm »
I am using this code for an email form processor:

Code: [Select]
<?PHP
//security function
function IsInjected($str) {
$injections = array('(\n+)',
'(\r+)',
'(\t+)',
'(%0A+)',
'(%0D+)',
'(%08+)',
'(%09+)');
$inject = join('|', $injections);
$inject = "/$inject/i";
if(preg_match($inject,$str)) {
return true;
     } else {
return false;
     }
}

//Get form entries
$name = $_POST['name'];
$email = $_POST['email'];
$phone = $_POST['phone'];
$description = $_POST['job-description'];
$contact_method = $_POST['contact-method'];

//security
if(IsInjected($email)) {
echo "Bad email value!";
exit;
}

//Compose email
$email_from = <valid address>;
$email_subject = "TopPage Design form submission: quotes.html";
$email_body = "*** FORM SUBMISSION *** \n
name: " . $name . "\n
email: " . $email . "\n
phone: " . $phone . "\n
description: " . $description . "\n
contact method: " . $contact_method . "\n
*** END OF EMAIL ***";

//Send email
$to = <valid address>;
$headers = "From" . $email_from . "\r\n";
$headers .= "Reply-To:" . $email . "\r\n";

//send
mail($to, $email_subject, $email_body, $headers);
//success
echo("success.");
?>


But for some reason I don't receive the email, even though i get the success message. Am I doing something wrong?

404
See how your site would look in IE, even if you don't have IE:

http://netrenderer.com/

(not that you'd want to or anything...) :P

405
Site Feedback and Questions / Re: Project to stop attacks page
« on: October 30, 2012, 07:48:17 pm »
Hmm strange then. I'm unsure how you get off the black list. But again it could be that you just got infected by something. Have you visited any suspicious site or downloaded stuff recently?

Also it could be someone else's computer or mobile device in your home.

Nobody in my home, i dont think. Also, the only suspicious thing i downloaded was TWFNG. :P

Have you been getting that often?
I got for one day a few weeks ago, but it happened since.
Plus i was at my school when that happened

Just since today...


maybe try clearing your cache. It might be that your computer passed the check but keeps running into it due to cache problems. Maybe.

will try that...

Pages: 1 ... 25 26 [27] 28 29 ... 119