Jump to content

Shizzell

Members
  • Posts

    16
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

Shizzell's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. Well, it looks like I have another problem. The captcha is not seeing the key on what the image should say. It is displaying the image, but it recognizes the $code as nothing.
  2. Yep, I know that. I had to make some exceptions in my htaccess file. Thanks everyone.
  3. Ray I have the fonts in the same folder. does this script work for you?
  4. Hmmm. I tried adding both of those, however I still get the same problem. Could it be that I don't have a certain extension installed?
  5. Alright here is my problem, I have 3 files. Page.php, Image.php, and register_view.php In page.php I believe that is the file that it should display on the page. here is the code for page.php: <script language='JavaScript'> <!-- function setFocus() { document.verifica.key.focus(); } --> </script> <? session_start(); $key=$_POST['key']; ?> <html> <head> <meta http-equiv="content-type" content="text/html; charset=windows-1250"> <title></title> </head> <body onLoad="setFocus()"> <img src='image.php'> <form action="page.php" method="post" name="verifica" onsubmit="setFocus();"> <input type="text" name="key" size=17 maxlength=15 ><br> <input type="submit" value=" Test Code "> </form> </body> </html> <? //print $stronzo; if($key) {if($key==$code){?> <script language="javascript"> <!-- alert("Exact Code!!!"); //--> </script> <?} else {?> <script language="javascript"> <!-- alert("Sorry...Wrong Code!!! Exact code was <?print $code;?>. Try again."); //--> </script> <?} } ?> Here is the code for image.php: <?php #http://rodomontano.altervista.org/engcaptcha.php # Config /* Set thick colored lines in background. 0 no linear background. 1 linear background. */ $LinearBackgroud = 1; /* Set granular noise. 0 no granular noise. 1 granular noise. */ $GranularNoise = 1; /* Set linear noise. 0 no square noise. 1 square noise. */ $LinearNoise = 1; /* Set square noise . 0 no square noise. 1 square noise. */ $SquareNoise = 0; /* Horizontal Character distortion. 0 no distortion. 1 distortion. */ $distortion_hor = 0; /* Vertical Character distortion. 0 no distortion. 1 distortion. */ $distortion_ver = 0; /* Character color select. 0 All characters are black. 1 random color. */ $CharacterColorMode = 0; /* subset of Security Code 0 User has to type the whole code. 1 User has to type a subset of Code: only red characters NOTE - This option is obviously not compatible with random color of characters */ $subset = 0; /* Character Phase Shift 0 no staggering. 1 staggering. */ $staggering = 0; /* Character size select. 0.5 character size randomizes from 50 to 100%. 0.6 character size randomizes from 60 to 100%. etc 1 fixed size. */ $CharacterSizeMode = 1; /* Character rotation angle. The script will randomize the rotation of the characters between this angle in degrees, positive and negative. Set to zero for no rotation. 0 no rotation 20 rotation of 20° */ $CharacterRotationMode = 20; /* Default font. You can change it. Font must be in same directory of script */ $font = 'sans.ttf'; /* Type of fonts used. Fonts must be in same directory of script 0 no random font. Default font is always loaded 1 random fonts */ $randomfont = 1; $fontlist = array ("sans.ttf","box.ttf","ball.ttf","shades.ttf","outlined.ttf","sp.ttf","dayplanner.ttf"); /* number and type of characters in the security code. */ $Codelength = 6; $Characters = "23456789abcdefghkmnpqrstuvwxyz"; /* Set image height (width is automatically set) */ $height = 60; /* Set Backgroud color mode 0 White 1 Grey 2 random shading background */ $BackgroudColorMode = 0; # Don't change anything below here unless you know what you're doing ############################################################ // Create Securitycode for ($i = 0; $i < $Codelength; $i++) { $SecurityCode[$i] = substr($Characters,mt_rand(0,strlen($Characters) - 1),1); $pass=$pass.$SecurityCode[$i]; $rand = mt_rand(0,1); If ($i == 1) {$rand = 1;} if ($rand > 0) {$pass2=$pass2.$SecurityCode[$i]; $select[$i] = $i; } else { $select[$i] = -1; } } if ($randomfont > 0) {$font = $fontlist[mt_rand(0,6)];} // Set font size $fontsize = $height * 0.6; // Set Width and Create image $textbox2 = imagettfbbox($fontsize, 0, $font, $pass) or die('Error in imagettfbbox function'); $width = (abs($textbox2[4] - $textbox2[0]))*1.25; $im = imagecreatetruecolor($width, $height); // Create some colors $white = imagecolorallocate($im, 255, 255, 255); $grey = imagecolorallocate($im, 238, 238, 238); $black = imagecolorallocate($im, 0, 0, 0); $red = imagecolorallocate($im, 255, 0, 0); // Create backgroud ImageFill($im, 0, 0, $grey); if ($BackgroudColorMode < 1) {ImageFill($im, 0, 0, $white);} if ($BackgroudColorMode > 1) { // colors to fade $red_start = mt_rand(0,255); $red_end = mt_rand($red_start,255); $green_start = mt_rand(0,255); $green_end = mt_rand($green_start,255); $blue_start = mt_rand(0,255); $blue_end = mt_rand($blue_start,255); function dif ($start,$end) { if ($start >= $end) $dif = $start - $end; else $dif = $end - $start; return $dif; } function draw($start,$end,$pos,$step_width) { if ($start > $end) $color = $start - $step_width * $pos; else $color = $start + $step_width * $pos; return $color; } $dif_red = dif($red_start,$red_end); $dif_green = dif($green_start,$green_end); $dif_blue = dif($blue_start,$blue_end); $step_red = $dif_red / $width; $step_green = $dif_green / $width; $step_blue = $dif_blue / $width; $height = $height-1; for ($pos=0; $pos<=$width; $pos++) { $color = ImageColorAllocate($im,draw($red_start,$red_end,$pos,$step_red), draw($green_start,$green_end,$pos,$step_green), draw($blue_start,$blue_end,$pos,$step_blue)); imageline($im,$pos,"0",$pos,$height,$color); } $height = $height+1; } /* generate colored thick random lines in background */ if ($LinearBackgroud > 0) { imagesetthickness($im, $height/10); for( $i=0; $i<$width*$height/200; $i++ ) { $Color = imagecolorallocate($im, mt_rand(100,250), mt_rand(100,250), mt_rand(100,250)); imageline($im, mt_rand(0,$width), mt_rand(0,$height), mt_rand(0,$width), mt_rand(0,$height), $Color); } } // staggering $x = $width/18; for ($i = 0; $i < $Codelength; $i++) { $Color = $black; if ($CharacterColorMode > 0) $Color = imagecolorallocate($im, mt_rand(0,250), mt_rand(0,250), mt_rand(0,250)); $textbox = imagettfbbox($fontsize, 0, $font, $SecurityCode[$i]) or die('Error in imagettfbbox function'); $y = ($height - $textbox[5])/2; $w = abs($textbox[4] - $textbox[0]); $Size = mt_rand($fontsize*$CharacterSizeMode,$fontsize); $Angle = mt_rand(-$CharacterRotationMode,$CharacterRotationMode); if ($staggering > 0) { $x = $x + rand($w-$w/18 , $w+$w/18); $y = rand($y-($height/6) ,$y+($height/6)); if ($subset < 1) {ImageTtfText($im,$Size,$Angle,$x-$w,$y,$Color,$font,$SecurityCode[$i]); } else { if ($select[$i] > -1) {ImageTtfText($im,$Size,$Angle,$x-$w,$y,$red,$font,$SecurityCode[$i]); } else {ImageTtfText($im,$Size,$Angle,$x-$w,$y,$Color,$font,$SecurityCode[$i]);} } } else { $y = $height - $height/4; $x = $x + $w*1.1; if ($subset < 1) {ImageTtfText($im,$Size,$Angle,$x-$w,$y,$Color,$font,$SecurityCode[$i]); } else { if ($select[$i] > -1) {ImageTtfText($im,$Size,$Angle,$x-$w,$y,$red,$font,$SecurityCode[$i]); } else {ImageTtfText($im,$Size,$Angle,$x-$w,$y,$Color,$font,$SecurityCode[$i]);} } } } //Vertical distortion amplitude and frequency, // good values $ampl_y = 5 $freq_y = 10; 0 for no vertical distorsion $ampl_y = 5; $freq_y = 10; //Horizontal distorsion amplitude and frequency, // good values $ampl_x = 5 $freq_x = 5; 0 for no vertical distorsion $ampl_x = 5; $freq_x = 10; if ($distortion_ver > 0) { //Apply vertical distortion for ($i=0;$i<$width;$i+=2){ imagecopy($im,$im, $xx+$i-2,$yy+sin($i/$freq_y)*$ampl_y, //dest $xx+$i,$yy, //src 2,$height); } } if ($distortion_hor > 0) { //Apply horizontal distortion for ($i=0;$i<$height;$i+=1){ imagecopy($im,$im, $xx+sin($i/$freq_x)*$ampl_x,$yy+$i-1, //dest $xx,$yy+$i, //src $width,1); } } // Apply square noise if ($SquareNoise > 0) { imagesetthickness($im, 1); for($i = 0; $i <= $width; $i += $height/5) { @ImageLine($im, $i, 0, $i, $height, $black); } for($i = 0; $i <= $height; $i += $height/5) { @ImageLine($im, 0, $i, $width, $i, $black); } } // Apply linear noise if ($LinearNoise > 0) { imagesetthickness($im, 1); for( $i=0; $i<$height; $i++ ) { imageline($im, mt_rand(0,$width), mt_rand(0,$height), mt_rand(0,$width), mt_rand(0,$height), $black); } } // Apply granular noise if ($GranularNoise > 0) { for ($i=1;$i<($width*$width/10);$i++) { $cor_x = mt_rand(1,$width); $cor_y = mt_rand(1,$height); imagesetpixel($im,$cor_x,$cor_y,$black); } } // make image header('Content-Type: image/jpeg'); imagejpeg($im); imagedestroy($im); //store code to verify if ($subset > 0) {$pass = $pass2;} session_start(); $_SESSION['code'] = $pass ?> Here is the code for register_view.php: <p>There are many reasons to register and participate on Penguin Polls. If you like to share your opinion on different subjects with other people, and recieve feedback for ideas and thoughts that you would like to express, this is a great place for you to form and postulate your thoughts. Penguin Polls is also a great source for world news, with regular updates. If your looking for updates to current matters and issues going on around the world this is a great place to find that information. As our main focus is on collecting information about everything from the mundane to the awe inspiring ideas, events, products, this is a great source for you to get an update on everything from ideas, to news, thoughts, and opinions. We want your opinions, links to official news articles, and your participation in rating and ranking other opinions and news articles. Get points for voting, posting, and adding news and media links and get your choice of rewards for cashing those points in. </p> <login>Register</login> <?php display_page_notice(); ?> <form action="<?php page_url('register'); ?>" method="post"> <p><?php form_field('text', '<a>Username</a>', 'user', 'username'); ?></p> <p><?php form_field('text', '<a>Email</a>', 'user', 'email'); ?></p> <p><?php form_field('text', '<a>Who Refered you?</a>', 'user', 'referer'); ?></p> <p><?php form_field('password', '<a>Password</a>', 'user', 'password'); ?></p> <p><?php form_field('password', '<a>Password (confirm)</a>', 'user', 'password_confirm'); ?></p> <p> </p> <?php include('page.php'); ?> <p></p> <p><?php form_field('checkbox', ' <a> I agree to</a> <a href="http://penguinpolls.com/tos">Terms of Service</a> <a>and the</a> <a href="http://penguinpolls.com/privacy">Privacy Policy</a>.', 'user', 'legal'); ?></p> <p></p> <div><input id="inputsubmit2" name="inputsubmit2" value="Register" class="submit2" type="submit"></div> </form> I looked under my apache error file, and I get no warnings, and I get no errors. However, I get the broken image icon when I try to display the page. You can view it here: http://www.penguinpolls.com/register Thanks in advance, Jake
  6. Page.php (This is where it should display the image) <script language='JavaScript'> <!-- function setFocus() { document.verifica.key.focus(); } --> </script> <? session_start(); $key=$_POST['key']; ?> <html> <head> <meta http-equiv="content-type" content="text/html; charset=windows-1250"> <title></title> </head> <body onLoad="setFocus()"> <img src='c:\www\milrpg\image.php'> <form action="page.php" method="post" name="verifica" onsubmit="setFocus();"> <input type="text" name="key" size=17 maxlength=15 ><br> <input type="submit" value=" Test Code "> </form> </body> </html> <? //print $stronzo; if($key) {if($key==$code){?> <script language="javascript"> <!-- alert("Exact Code!!!"); //--> </script> <?} else {?> <script language="javascript"> <!-- alert("Sorry...Wrong Code!!! Exact code was <?print $code;?>. Try again."); //--> </script> <?} } ?> image.php (Both are in the same directory-> C:\www\milrpg) <?php /* Set thick colored lines in background. 0 no linear background. 1 linear background. */ $LinearBackgroud = 0; /* Set granular noise. 0 no granular noise. 1 granular noise. */ $GranularNoise = 0; /* Set linear noise. 0 no square noise. 1 square noise. */ $LinearNoise = 0; /* Set square noise . 0 no square noise. 1 square noise. */ $SquareNoise = 0; /* Horizontal Character distortion. 0 no distortion. 1 distortion. */ $distortion_hor = 0; /* Vertical Character distortion. 0 no distortion. 1 distortion. */ $distortion_ver = 0; /* Character color select. 0 All characters are black. 1 random color. */ $CharacterColorMode = 0; /* subset of Security Code 0 User has to type the whole code. 1 User has to type a subset of Code: only red characters NOTE - This option is obviously not compatible with random color of characters */ $subset = 0; /* Character Phase Shift 0 no staggering. 1 staggering. */ $staggering = 0; /* Character size select. 0.5 character size randomizes from 50 to 100%. 0.6 character size randomizes from 60 to 100%. etc 1 fixed size. */ $CharacterSizeMode = 1; /* Character rotation angle. The script will randomize the rotation of the characters between this angle in degrees, positive and negative. Set to zero for no rotation. 0 no rotation 20 rotation of 20° */ $CharacterRotationMode = 0; /* Default font. You can change it. Font must be in same directory of script */ $font = 'sans.ttf'; /* Type of fonts used. Fonts must be in same directory of script 0 no random font. Default font is always loaded 1 random fonts */ $randomfont = 1; $fontlist = array ("sans.ttf","box.ttf","ball.ttf","shades.ttf","outlined.ttf","sp.ttf","dayplanner.ttf"); /* number and type of characters in the security code. */ $Codelength = 6; $Characters = "23456789abcdefghkmnpqrstuvwxyz"; /* Set image height (width is automatically set) */ $height = 60; /* Set Backgroud color mode 0 White 1 Grey 2 random shading background */ $BackgroudColorMode = 1; # Don't change anything below here unless you know what you're doing ############################################################ // Create Securitycode for ($i = 0; $i < $Codelength; $i++) { $SecurityCode[$i] = substr($Characters,mt_rand(0,strlen($Characters) - 1),1); $pass=$pass.$SecurityCode[$i]; $rand = mt_rand(0,1); If ($i == 1) {$rand = 1;} if ($rand > 0) {$pass2=$pass2.$SecurityCode[$i]; $select[$i] = $i; } else { $select[$i] = -1; } } if ($randomfont > 0) {$font = $fontlist[mt_rand(0,6)];} // Set font size $fontsize = $height * 0.6; // Set Width and Create image $textbox2 = imagettfbbox($fontsize, 0, $font, $pass) or die('Error in imagettfbbox function'); $width = (abs($textbox2[4] - $textbox2[0]))*1.25; $im = imagecreatetruecolor($width, $height); // Create some colors $white = imagecolorallocate($im, 255, 255, 255); $grey = imagecolorallocate($im, 238, 238, 238); $black = imagecolorallocate($im, 0, 0, 0); $red = imagecolorallocate($im, 255, 0, 0); // Create backgroud ImageFill($im, 0, 0, $grey); if ($BackgroudColorMode < 1) {ImageFill($im, 0, 0, $white);} if ($BackgroudColorMode > 1) { // colors to fade $red_start = mt_rand(0,255); $red_end = mt_rand($red_start,255); $green_start = mt_rand(0,255); $green_end = mt_rand($green_start,255); $blue_start = mt_rand(0,255); $blue_end = mt_rand($blue_start,255); function dif ($start,$end) { if ($start >= $end) $dif = $start - $end; else $dif = $end - $start; return $dif; } function draw($start,$end,$pos,$step_width) { if ($start > $end) $color = $start - $step_width * $pos; else $color = $start + $step_width * $pos; return $color; } $dif_red = dif($red_start,$red_end); $dif_green = dif($green_start,$green_end); $dif_blue = dif($blue_start,$blue_end); $step_red = $dif_red / $width; $step_green = $dif_green / $width; $step_blue = $dif_blue / $width; $height = $height-1; for ($pos=0; $pos<=$width; $pos++) { $color = ImageColorAllocate($im,draw($red_start,$red_end,$pos,$step_red), draw($green_start,$green_end,$pos,$step_green), draw($blue_start,$blue_end,$pos,$step_blue)); imageline($im,$pos,"0",$pos,$height,$color); } $height = $height+1; } /* generate colored thick random lines in background */ if ($LinearBackgroud > 0) { imagesetthickness($im, $height/10); for( $i=0; $i<$width*$height/200; $i++ ) { $Color = imagecolorallocate($im, mt_rand(100,250), mt_rand(100,250), mt_rand(100,250)); imageline($im, mt_rand(0,$width), mt_rand(0,$height), mt_rand(0,$width), mt_rand(0,$height), $Color); } } // staggering $x = $width/18; for ($i = 0; $i < $Codelength; $i++) { $Color = $black; if ($CharacterColorMode > 0) $Color = imagecolorallocate($im, mt_rand(0,250), mt_rand(0,250), mt_rand(0,250)); $textbox = imagettfbbox($fontsize, 0, $font, $SecurityCode[$i]) or die('Error in imagettfbbox function'); $y = ($height - $textbox[5])/2; $w = abs($textbox[4] - $textbox[0]); $Size = mt_rand($fontsize*$CharacterSizeMode,$fontsize); $Angle = mt_rand(-$CharacterRotationMode,$CharacterRotationMode); if ($staggering > 0) { $x = $x + rand($w-$w/18 , $w+$w/18); $y = rand($y-($height/6) ,$y+($height/6)); if ($subset < 1) {ImageTtfText($im,$Size,$Angle,$x-$w,$y,$Color,$font,$SecurityCode[$i]); } else { if ($select[$i] > -1) {ImageTtfText($im,$Size,$Angle,$x-$w,$y,$red,$font,$SecurityCode[$i]); } else {ImageTtfText($im,$Size,$Angle,$x-$w,$y,$Color,$font,$SecurityCode[$i]);} } } else { $y = $height - $height/4; $x = $x + $w*1.1; if ($subset < 1) {ImageTtfText($im,$Size,$Angle,$x-$w,$y,$Color,$font,$SecurityCode[$i]); } else { if ($select[$i] > -1) {ImageTtfText($im,$Size,$Angle,$x-$w,$y,$red,$font,$SecurityCode[$i]); } else {ImageTtfText($im,$Size,$Angle,$x-$w,$y,$Color,$font,$SecurityCode[$i]);} } } } //Vertical distortion amplitude and frequency, // good values $ampl_y = 5 $freq_y = 10; 0 for no vertical distorsion $ampl_y = 5; $freq_y = 10; //Horizontal distorsion amplitude and frequency, // good values $ampl_x = 5 $freq_x = 5; 0 for no vertical distorsion $ampl_x = 5; $freq_x = 10; if ($distortion_ver > 0) { //Apply vertical distortion for ($i=0;$i<$width;$i+=2){ imagecopy($im,$im, $xx+$i-2,$yy+sin($i/$freq_y)*$ampl_y, //dest $xx+$i,$yy, //src 2,$height); } } if ($distortion_hor > 0) { //Apply horizontal distortion for ($i=0;$i<$height;$i+=1){ imagecopy($im,$im, $xx+sin($i/$freq_x)*$ampl_x,$yy+$i-1, //dest $xx,$yy+$i, //src $width,1); } } // Apply square noise if ($SquareNoise > 0) { imagesetthickness($im, 1); for($i = 0; $i <= $width; $i += $height/5) { @ImageLine($im, $i, 0, $i, $height, $black); } for($i = 0; $i <= $height; $i += $height/5) { @ImageLine($im, 0, $i, $width, $i, $black); } } // Apply linear noise if ($LinearNoise > 0) { imagesetthickness($im, 1); for( $i=0; $i<$height; $i++ ) { imageline($im, mt_rand(0,$width), mt_rand(0,$height), mt_rand(0,$width), mt_rand(0,$height), $black); } } // Apply granular noise if ($GranularNoise > 0) { for ($i=1;$i<($width*$width/10);$i++) { $cor_x = mt_rand(1,$width); $cor_y = mt_rand(1,$height); imagesetpixel($im,$cor_x,$cor_y,$black); } } // make image header('Content-Type: image/jpeg'); imagejpeg($im); imagedestroy($im); //store code to verify if ($subset > 0) {$pass = $pass2;} session_start(); $_SESSION['code'] = $pass ?> Thanks
  7. Alright I'm trying to impliment this captcha: http://dirpg.co.nr/ecaptcha.zip and I get this when trying to impliment it: http://dirpg.co.nr/page.php I'm seriuosly out in the dark right now. Am I missing a apache module that I need? I say this because I tried implimenting a different captcha, and I get: http://dirpg.co.nr/captcha/form.php (A broken link to the image) Thanks a lot, Jake
  8. Wow guys this was so damn easy. Goto Ipconfig in cmd. change the listen part in easy php to the ip address in ipconfig. with port 80. Port forward port 80 in router and thats it. [a href=\"http://mirpg.no-ip.info\" target=\"_blank\"]http://mirpg.no-ip.info[/a]
  9. [!--quoteo(post=356049:date=Mar 17 2006, 07:10 PM:name=shortj75)--][div class=\'quotetop\']QUOTE(shortj75 @ Mar 17 2006, 07:10 PM) [snapback]356049[/snapback][/div][div class=\'quotemain\'][!--quotec--] i dont know why it shuts down you internet but changing that to you ip address will let other ppl view your page when it is set to 127.0.0.1 it only allows your comp to view the pages no one frome the out internet can view with the ip address you had in there it was lokking for another comp to listen to aand couldnt find it to view your page you have to type in [a href=\"http://192.168.254.1\" target=\"_blank\"]http://192.168.254.1[/a] or [a href=\"http://192.168.254.1/index.php\" target=\"_blank\"]http://192.168.254.1/index.php[/a] or your mainpage address you may also have to restart your server [/quote] well I changed listen 192.168.254.1:80 and I goto: 192.168.254.1 and I get the website i want and i changed mirpg.no-ip.info to that address also,and i see it at mirpg.no-ip.info however my friends cannot see the website. Help?
  10. [!--quoteo(post=356044:date=Mar 17 2006, 06:51 PM:name=shortj75)--][div class=\'quotetop\']QUOTE(shortj75 @ Mar 17 2006, 06:51 PM) [snapback]356044[/snapback][/div][div class=\'quotemain\'][!--quotec--] this is what my listen sections looks like from my httpd.conf for easyphp1-8 # # Listen: Allows you to bind Apache to specific IP addresses and/or # ports, in addition to the default. See also the <VirtualHost> # directive. # #Listen 3000 #Listen 12.34.56.78:80 Listen 61.68.81.130:80 are you sure you got the right ip address go to the start button then click run type in cmd in the text box and hit ok now in the command prompt window type ipconfig and hit enter and you will see ip address and that is your ip address next to it or did you go to My Network Places on the left click on view network connections the right click you connection go to properties click the advanced tab check the box next to protect my computer and twords the bottom there is a button called settings click on that check all the boxes then hit ok if that doesnt work then i dont know [/quote] I changed my listen to: 192.168.254.1 exactly like it said in ipconfig. then i could not access it via localhost It brougth up page cannot be displayed I did change the properties, network places, etc. and my internet basically shuts off. The modem itself doesn't shut off however, but all of my connects go offline and i cannot access any website
  11. alright, i changed the listen 80 to: Listen 74.33.105.147:80 However, apache won't start and in the error log file: [Fri Mar 17 16:32:14 2006] [crit] make_sock: could not bind to address 74.33.105.147 port 80 go to: [a href=\"http://www.dslreports.com/forum/remark,15706063\" target=\"_blank\"]http://www.dslreports.com/forum/remark,15706063[/a] for more in depth information about my system. help? thanks
  12. Localhost is exactly like it should be. It has my webpage that my php files are.
  13. I went to IPchicken.com: 74.33.105.147 and yes the localhost works
  14. Alright in commandprompt, i did nslookup: C:\documents and settings\owner>nslookup DNS request timed out. timeout was 2 seconds. *** Can't find server name for address 192.168.254.254: Timed Out *** Default servers are not available Default server: Unknown Address: 192.168.254.254 > and i have a Speedstream 6520 wireless router/Modem thanks
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.