1. ICQ trouble.

    Date: 02/05/06 (Computer Geeks)    Keywords: browser, virus, antivirus

    My ICQ can't connect already for 3 days.
    I tried to exit firewall and antivirus - doesn't help. I can't open www.icq.com or any other page from this server (ICQ2GO, icq help...) in my browser. I thought that ICQ server is down, but my friends can connect normally. I reinstalled ICQ twice (full uninstalation)/ Still no effect.
    Crossposted.

    Source: http://community.livejournal.com/computergeeks/874556.html

  2. Explorer browser

    Date: 02/05/06 (Computer Help)    Keywords: browser

    I have the Internet Explorer Browser and it's giving me some problems. Now, it won't take an URL withought either www. or http:// if I put, for example, livejournal.com the browser will close by itself, I have to put www.livejournal.com. Does anybody know what's wrong and how I can fix it?

    Source: http://community.livejournal.com/computer_help/581480.html

  3. Opera preview puts widgets on stage

    Date: 02/06/06 (Web Technology)    Keywords: browser

    Second preview release of the Opera 9 browser adds support for mini-applications called widgets and still includes a BitTorrent search engine.

    Source: http://news.zdnet.com/2100-9588_22-6035227.html

  4. firefox and embedding an external program as an icon on the status bar

    Date: 02/06/06 (Computer Geeks)    Keywords: browser, html, web

    This question might require some coding skills why I posted it here. I listen to alot of music while browsing the web and find myself having to leave the browser constantly to change the volume. i know with foxytunes you can control it within the browser but that is just for the programs volume. For the xp volume you have to leave the browser(I have a terrible sound card so what I have to do) I found this program:http://glorysoft.omsk.ru/volumetray.html and it has made it alot easier for me but I still have to go to the taskbar to click it. Is there anyway I can embed that into firefox as a bookmark or toolbar? that would be perfect seeing i'd only have to click a button to raise the xp volume

    any help would be greatly appreciated

    *any other way, or programs to embed the xp volume control into firefox would also be appreciated...but just embedding that program would be perfect; either as a toolbar or bookmark but in the status bar preferably

    Source: http://community.livejournal.com/computergeeks/875475.html

  5. Firefox / SeaMonkey and phpMyAdmin

    Date: 02/06/06 (Mozilla)    Keywords: php, browser, web

    Hi!

    Some weeks ago, after I have installed Firefox 1.5 I experienced problems with phpMyAdmin of my webhoster. After login all I get is a blank screen but with the logo of my webhoster (see the screenshot HERE). I asked the support, but they did tell me they are using the Firefox 1.5 as well, but don't receive this problem at all and it must have something to do with my settings.

    Okay, maybe... but today I tried the same with SeaMonkey 1.0 and I got the same result like with Firefox 1.5... and it IS a FRESH install! Although it works with IE and Opera I prefer using Firefox and I would like to use it also for phpMyAdmin.

    What could be cause of this? Is it really my browser-settings or is it my webhoster's fault, although they say they use the same browser?

    EDIT: I should mention that my local installation of phpMyAdmin (included in Xampp) works perfectly fine on all browsers.

    Source: http://community.livejournal.com/mozilla/350383.html

  6. why does my browser sniffer script break all of a sudden?

    Date: 02/06/06 (PHP Community)    Keywords: browser

    UPDATE: fixed, thanks to '[info]'onah.

    my old browser sniffer that's worked so well for me for years, cobbled together from various sources, doesn't work when i upload it. funny thing is, no matter what i change, it always says the error is on line 1, which is of course the
    sniffer.php
    function inAgent($agent) {
    if (eregi($agent,$_SERVER['HTTP_USER_AGENT'])){
    $br = true;
    } else {
    $br = false;
    }
    return $br;
    }
    if (!isset($browser)) {
    $browser = "";
    }
    switch (inAgent("MSIE")) {
    case true:
    if (inAgent("Mac")) {$browser = inAgent("MSIE 5") ? "ie5mac" : "ie4mac";}
    elseif (inAgent("Win")) {$browser = "iewin";}
    break;

    case false:
    if (inAgent("Firefox")) {$browser = "firefox";}
    elseif (inAgent("iCab")) {$browser = "icab";}
    elseif (inAgent("Mozilla/5")) {$browser = "mozilla";}
    elseif (inAgent("Mozilla/4"))
    {
    if ( inAgent('Mac')) {$browser = "nsmac";}
    else {$browser = (inAgent("Win")) ? "nswin" : "nsunix";}
    }
    elseif (inAgent("Opera")) {$browser = "opera";}
    elseif (inAgent("Safari")) {$browser = "safari";}
    else {$browser = "unknown";}
    break;
    }

    switch ($browser) {
    case "iewin":
    $sniffedcss1 = "absolute";
    $sniffedcss2 = "top:";
    $GLOBALS['brwsrmssg'] = "Safer, faster, better. http://www.spreadfirefox.com/?q=affiliates&id=7148&t=1\">Get Firefox!";
    break;

    case "iemac":
    $sniffedcss1 = "absolute";
    $sniffedcss2 = "top";
    $GLOBALS['brwsrmssg'] = "Safer, faster, better. http://www.spreadfirefox.com/?q=affiliates&id=7148&t=1\">Get Firefox!";
    break;

    case "ie5mac":
    $sniffedcss1 = "absolute";
    $sniffedcss2 = "top";
    $GLOBALS['brwsrmssg'] = "Safer, faster, better. http://www.spreadfirefox.com/?q=affiliates&id=7148&t=1\">Get Firefox!";
    break;

    case "firefox":
    $sniffedcss1 = "fixed";
    $sniffedcss2 = "bottom";
    $GLOBALS['brwsrmssg'] = "thank you for using Firefox!";
    break;

    case "icab":
    $sniffedcss1 = "fixed";
    $sniffedcss2 = "bottom";
    $GLOBALS['brwsrmssg'] = "Safer, faster, better. http://www.spreadfirefox.com/?q=affiliates&id=7148&t=1\">Get Firefox!";
    break;

    case "nswin":
    $sniffedcss1 = "fixed";
    $sniffedcss2 = "bottom";
    $GLOBALS['brwsrmssg'] = "Safer, faster, better. http://www.spreadfirefox.com/?q=affiliates&id=7148&t=1\">Get Firefox!";
    break;

    case "nsunix":
    $sniffedcss1 = "absolute";
    $sniffedcss2 = "top";
    $GLOBALS['brwsrmssg'] = "Safer, faster, better. http://www.spreadfirefox.com/?q=affiliates&id=7148&t=1\">Get Firefox!";
    break;

    case "nsmac":
    $sniffedcss1 = "absolute";
    $sniffedcss2 = "top";
    $GLOBALS['brwsrmssg'] = "Safer, faster, better. http://www.spreadfirefox.com/?q=affiliates&id=7148&t=1\">Get Firefox!";
    break;

    case "mozilla":
    $sniffedcss1 = "fixed";
    $sniffedcss2 = "bottom";
    $GLOBALS['brwsrmssg'] = "Safer, faster, better. http://www.spreadfirefox.com/?q=affiliates&id=7148&t=1\">Get Firefox!";
    break;

    case "opera":
    $sniffedcss1 = "fixed";
    $sniffedcss2 = "bottom";
    $GLOBALS['brwsrmssg'] = "thank you for using Opera!";
    break;

    case "safari":
    $sniffedcss1 = "fixed";
    $sniffedcss2 = "bottom";
    $GLOBALS['brwsrmssg'] = "thank you for using Safari!";
    break;

    default:
    $sniffedcss1 = "fixed";
    $sniffedcss2 = "bottom";
    $GLOBALS['brwsrmssg'] = "Safer, faster, better. http://www.spreadfirefox.com/?q=affiliates&id=7148&t=1\">Get Firefox!!";
    break;
    }

    and i'm calling it like this:
    header.php

    require_once ("sniffer.php");
    ?>

    /* snip */

    wp-content/themes/Ice/images/image.gif" style="position: ; : 0px; right: 0px;" alt="description" />



    footer.php


    it works perfectly locally, as it should. i'm on Apache 2.2.0 and PHP 4.4.1 (Win), whereas my host is using PHP 4.4.1 on Apache 1.3.34 (Unix).

    the error i'm getting is either
    Parse error: parse error, unexpected T_STRING in /real/path/to/html/sniffer.php on line 1
    or ...unexpected T_FUNCTION..., depending on what i've tried to do to fix it.

    i just don't get it. any ideas? TIA...

    Source: http://community.livejournal.com/php/408599.html

  7. Exploit turns up heat for Firefox flaw

    Date: 02/08/06 (Security)    Keywords: browser, web

    Mozilla has patched the hole in the Web browser, but the public release of attack code means it's urgent that people apply the fix.

    Source: http://news.zdnet.com/2100-1009_22-6036771.html

  8. Eclipse

    Date: 02/09/06 (PHP Community)    Keywords: php, mysql, browser, sql, apache

    Hi all, I recently landed a new job. The people that work there use Eclipse. I have been playing around with it to try and get a feel for it before I start next week and I am running into a couple of problems. I was hoping one of you would not mind giving me some pointers.

    I have:

    Eclipse Version: 3.1.2
    XAMPP very 2.1

    I installed Eclipse into the XAMPP directory as instructed.

    To my understanding XAMPP will run Apache, MySql, PHP and PERL when the computer starts as I think I set them up as services.

    I wrote a little test program using a set of functions that I have been using for a while now. The test program includes a config file that has the full include list in it. For some reason none of my files are being included. I do a require instead of an include, it does not fail but the functions are still not available. I can see the files are the in Eclipse's browser so I am not sure why they are not being found.

    There are buttons in Eclipse for starting and stopping XAMPP. These seem to have no effect on XAMPP at all.

    Any clues suggestions would be helpful. I have looked on the net all day but have not found anything I can really seem to understand. I have read the help files for Eclipse but they only pertain to Eclipse itself and not the add ons.

    cross posted*

    Thanks

    Source: http://community.livejournal.com/php/411528.html

  9. Eclipse

    Date: 02/09/06 (PHP Development)    Keywords: php, mysql, browser, sql, apache

    Hi all, I recently landed a new job. The people that work there use Eclipse. I have been playing around with it to try and get a feel for it before I start next week and I am running into a couple of problems. I was hoping one of you would not mind giving me some pointers.

    I have:

    Eclipse Version: 3.1.2
    XAMPP very 2.1

    I installed Eclipse into the XAMPP directory as instructed.

    To my understanding XAMPP will run Apache, MySql, PHP and PERL when the computer starts as I think I set them up as services.

    I wrote a little test program using a set of functions that I have been using for a while now. The test program includes a config file that has the full include list in it. For some reason none of my files are being included. I do a require instead of an include, it does not fail but the functions are still not available. I can see the files are the in Eclipse's browser so I am not sure why they are not being found.

    There are buttons in Eclipse for starting and stopping XAMPP. These seem to have no effect on XAMPP at all.

    Any clues suggestions would be helpful. I have looked on the net all day but have not found anything I can really seem to understand. I have read the help files for Eclipse but they only pertain to Eclipse itself and not the add ons.

    cross posted*

    Thanks

    Source: http://community.livejournal.com/php_dev/65019.html

  10. HTML Nerds

    Date: 02/09/06 (Web Development)    Keywords: browser, web

    Is there a cross browser way to put an image in a text block in a web page so it's placed behind text?

    Source: http://community.livejournal.com/webdev/294380.html

  11. Browser to client chat

    Date: 02/11/06 (Web Development)    Keywords: browser, yahoo

    Hey,
    Could someone please suggest a way for visitors to my site to chat with me, they through a browser interface and me through a chat client? I run GAIM and so can connect to Jabber,AIM,Yahoo,ICQ,etc.. Thanks

    Source: http://community.livejournal.com/webdev/295537.html

  12. Weekly builds

    Date: 02/13/06 (Opera Browser)    Keywords: browser

    Hey all,

    Opera have started releasing weekly builds of the desktop browser every friday for public testing, etc. Use them if you're brave, don't install over old versions, blah blah blah.

    There's already new builds for you Windows and Mac people to play with if you want. File lots of bug reports and make Opera better :)

    They're announced here and I've set up a LiveJournal syndication at '[info]'opera_weekly to make life easier.

    Source: http://community.livejournal.com/opera_browser/51187.html

  13. Form help

    Date: 02/14/06 (WebDesign)    Keywords: php, browser

    This is driving me nuts! I've created a form.. using the same technique that I've created hundreds of other forms with, and for some reason I cannot get this form to send the email! I need a fresh pair of eyes. Anyone that would like to take a look and tell me if you see something wrong with the coding, I would REALLY appreciate it!


    The form:

    < form method="post" action="../php_uploads/comment.php">
    < font color="#000000" size="2" face="Verdana, Arial, Helvetica, sans-serif">
    < input type="hidden" name="subject" value="Perfect Pools - Comment Form">
    Name: < input type="text" name="Name" size="30">

    Address: < input type="text" name="Address" size="30">

    City: < input type="text" name="City" size="30">  State: < input type="text" name="State" size="5">

    Zip: < input type="text" name="Zip" size="20">

    Daytime Phone: < input type="text" name="DaytimePhone" size="20">

    Evening Phone: < input type="text" name="EveningPhone" size="20">

    Email: < input type="text" name="Email" size="30">

    Comments: < textarea name="Comments" rows="5" cols="30">

    < input name="submit" type="submit" value="Submit Comments"> < input name="reset" type="reset" value="Clear Comments">


    Email script:

    < ?php

    $recipient = 'brandi@wikedawsum.com';

    $subject = 'Perfect Pools - Comments Form';

    $form_url = 'http://perfectpools.wikedawsum.com/pages/comment.php';

    $msg .= "---------------\n";
    $msg .= "$subject\n";
    $msg .= "---------------\n\n";
    $msg .= "Name: $_POST[Name]\n";
    $msg .= "Address: $_POST[Address]\n";
    $msg .= "City: $_POST[City]\n";
    $msg .= "State: $_POST[State]\n";
    $msg .= "Zip: $_POST[Zip]\n";
    $msg .= "Daytime Phone: $_POST[DaytimePhone]\n";
    $msg .= "Evening Phone: $_POST[EveningPhone]\n";
    $msg .= "Email: $_POST[email]\n";
    $msg .= "Comments: $_POST[Comments]\n";

    $req1 ="$Name";
    $req2 ="$Email";
    $req3 ="$DaytimePhone";

    $error_required = '< p align="center">< strong>< font color="#000000" size="4" face="Geneva, Arial, Helvetica, sans-serif">It appears you forgot to enter either your name, email, or a daytime phone number. Please press the BACK button in your browser and try again.';

    $error_email = '< p align="center">< strong>< font color="#000000" size="4" face="Geneva, Arial, Helvetica, sans-serif">Oops, it appears that the email address you filled in is not a valid one. Please press the back button on your browser and try again. Please check carefully that you filled in all information in the right fields!';

    $success_message = '< p align="center">< strong>< font color="#000000" size="4" face="Geneva, Arial, Helvetica, sans-serif">Your information was submitted successfully! Someone will contact you within the next few business days. Please call our main office if you have any questions.

    < font color="#000000" size="3" face="Geneva, Arial, helvetical, sans-serif">Return to the Home page.';

    if ($header ==""){
    $use_headers ='0';
    $header = '';
    } else {$use_headers ='1';}
    if ($footer ==""){
    $use_footers ='0';
    $footer = '

    ';
    } else {$use_footers ='1';}

    function is_valid_email ($address) {
    return (preg_match(
    '/^[-!#$%&\'*+\\.\/0-9=?A-Z^_`{|}~]+'.
    '@'.
    '([-0-9A-Z]+\.)+' .
    '([0-9A-Z]){2,4}$/i',
    trim($address)));
    }
    function is_valid_email_eregi ($address) {
    return (eregi(
    '^[-!#$%&\'*+\\./0-9=?A-Z^_`{|}~]+'.
    '@'.
    '([-0-9A-Z]+\.)+' .
    '([0-9A-Z]){2,4}$',
    trim($address)));
    }

    if (!isset($req1) || !isset($req2) || !isset($req3)) {
    header( "Location: $form_url" ); }

    elseif (empty($req1) || empty($req2) || empty($req3)) {

    if ($use_headers =="0"){
    echo "$header";
    } else { include ("$header"); }
    ?>
    < h2>< font color="#000000">Error



    \n";
    $mailheaders .= "Reply-To: \"$_POST[email]\" <$_POST[email]> \n";
    $mailheaders .= "X-Priority: 3 \n";
    $mailheaders .= "X-MSMail-Priority: High \n";
    $mailheaders .= "X-Mailer: PHP4";

    mail($recipient, $subject, $msg, $mailheaders);

    if ($use_headers =="0"){
    echo "$header";
    } else { include ("$header"); }
    ?>
    < h2>< font color="#000000">Thank You,



    < h2>< font color="#000000">Error




    Thank you all in advance!

    Update: I know the code is pointing to the form correctly because when I fill it out and hit submit I get the error message about one of my required fields not being filled out. However, the fields ARE filled out correctly. Not sure what the problem is.

    Source: http://community.livejournal.com/webdesign/1061027.html

  14. forms/feedback into a database...

    Date: 02/15/06 (HTML Help)    Keywords: browser, html, database, asp

    hey i was wondering if anyone might be able to point me in the right direction.

    heres the deal. im doing a contact/feedback form for a client. i have done it all in dreamweaver mx, using the forms. i have all that set up and if you click submit youll notice it should pop your email browser open and mail the data in the form to the client. actually i have not even had anyone test on a pc (im on a mac), so i wonder if it works.


    heres the link:
    http://www.btattersfielddesign.com/contact.html

    anyway, im looking for a way to get this data from the feed back form into a database, so when the visitor submits the form, the data get zapped into a program or server. i have heard of cgi and asp.net, but not sure how to handle this part.

    thanks for any tips.

    Source: http://community.livejournal.com/htmlhelp/2259008.html

  15. Formmail

    Date: 02/16/06 (PHP Community)    Keywords: php, browser, html

    Hello all. I'm having some troubles with a formmail script and cannot get the help I need anywhere. I found this community and thought I'd give it a try. This is a script I have used several times before and have had no problems with it. For some reason, I cannot get it to work this time. I don't have a lot of knowledge about PHP, and this is a free script that I tried. I liked it because it worked, but now it's just frustrating me.


    This is the HTML form I set up:

    < form method="post" action="../php_uploads/comment.php">
    Name: < input type="text" name="name" size="30" maxlength="30" />
    Address: < input type="text" name="address" size="30" maxlength="30" />
    City: < input type="text" name="city" size="20" maxlength="20" /> State: < input type="text" name="state" size="10" maxlength="10" />
    Zip: < input type="text" name="zip" size="15" maxlength="15" />
    Phone: < input type="text" name="phone" size="20" maxlength="20" />
    Email: < input type="text" name="email" size="30" maxlength="30" />
    Comments: < textarea name="comments" rows="5" cols="30">
    < input name="submit" type="submit" value="Submit Comments">
    < input name="reset" type="reset" value="Clear Comments">

    This is my formmail code:

    $recipient = 'brandi @ wikedawsum.com';
    $subject = 'Perfect Pools - Comments Form';
    $form_url = 'http://perfectpools.wikedawsum.com/pages/contact.html';

    $msg = "---------------\n";
    $msg .= "$subject\n";
    $msg .= "---------------\n\n";
    $msg .= "Name: $_POST[name]\n";
    $msg .= "Address: $_POST[address]\n";
    $msg .= "City: $_POST[city]\n";
    $msg .= "State: $_POST[state]\n";
    $msg .= "Zip: $_POST[zip]\n";
    $msg .= "Phone: $_POST[phone]\n";
    $msg .= "Email: $_POST[email]\n";
    $msg .= "Comments: $_POST[comments]\n";

    $error_required = '< p>It appears you forgot to enter either your name, your phone number or your email address. Please press the BACK button in your browser and try again.< /p>'; <- This is the error msg I keep getting.

    $error_email = '< p>Oops, it appears that the email address you filled in is not a valid one. Please press the back button on your browser and try again. Please check carefully that you filled in all information in the right fields!< /p>';

    $success_message = '< p>Your form has been sent. We will contact you in the next few business days regarding your inquiries. Thank you.< /p>';

    if ($header ==""){
    $use_headers ='0';
    $header = '';
    } else {$use_headers ='1';}
    if ($footer ==""){
    $use_footers ='0';
    $footer = '< div align="center">< a href="http://codegrrl.com/" target="_blank">Powered by NL-PHPMail< /a>< /div>< /body>< /html>';
    } else {$use_footers ='1';}

    function is_valid_email ($address) {
    return (preg_match(
    '/^[-!#$%&\'*+\\.\/0-9=?A-Z^_`{|}~]+'.
    '@'.
    '([-0-9A-Z]+\.)+' .
    '([0-9A-Z]){2,4}$/i',
    trim($address)));
    }
    function is_valid_email_eregi ($address) {
    return (eregi(
    '^[-!#$%&\'*+\\./0-9=?A-Z^_`{|}~]+'.
    '@'.
    '([-0-9A-Z]+\.)+' .
    '([0-9A-Z]){2,4}$',
    trim($address)));
    }

    if (!isset($req1) || !isset($req2) || !isset($req3)) {
    header( "Location: $form_url" ); }

    elseif (empty($req1) || empty($req2) || empty($req3)) {

    if ($use_headers =="0"){
    echo "$header";
    } else { include ("$header"); }
    ?>
    < h2>Error< /h2>
    < ?=$error_required?>


    < ?
    if ($use_footers =="0"){
    echo "$footer";
    } else { include ("$footer"); }
    }
    else {

    $f_email = $_POST[email];
    $f_email = strtolower(trim($f_email));
    if (is_valid_email($f_email)) {
    $msg .= "\n\n---------------\n";
    $msg .= "NL-PHPMail v1.5 - http://codegrrl.com/\n";
    $msg .= "---------------\n\n";

    $mailheaders = "MIME-Version: 1.0 \n";
    $mailheaders .= "Content-type: text/plain; charset=iso-8859-1 \n";
    $mailheaders .= "From: \"$_POST[email]\" <$_POST[email]> \n";
    $mailheaders .= "Reply-To: \"$_POST[email]\" <$_POST[email]> \n";
    $mailheaders .= "X-Priority: 3 \n";
    $mailheaders .= "X-MSMail-Priority: High \n";
    $mailheaders .= "X-Mailer: PHP4";

    mail($recipient, $subject, $msg, $mailheaders);

    if ($use_headers =="0"){
    echo "$header";
    } else { include ("$header"); }
    ?>
    < h2>Thank You, < /h2>
    < ?=$success_message?>

    < ?
    if ($use_footers =="0"){
    echo "$footer";
    } else { include ("$footer"); }
    } else {
    if ($use_headers =="0"){
    echo "$header";
    } else { include ("$header"); }
    ?>
    < h2>Error< /h2>
    < ?=$error_email?>
    < ?
    if ($use_footers =="0"){
    echo "$footer";
    } else { include ("$footer"); }

    My problem is that everytime I hit the submit button I get my $error_required message (which I bolded up there). I've tried rewriting the script and the form, but nothing seems to work. I'm running out of ideas and am starting to get frustrated. Maybe a new pair of eyes will help?

    I apologize for the code being so long. I just wanted to make sure I didn't miss anything. Thanks in advance for any help you guys can provide. I'm also open to suggestions on any other ways to do this more efficiently. I'm sure you guys know a lot more about this than I do. Thanks again!

    Source: http://community.livejournal.com/php/415280.html

  16. Mail search and browser address bar problem

    Date: 02/16/06 (Mozilla)    Keywords: browser

    I am using Sea Monkey 1.0 on Mac Os 10.4.4. I have found a problem (it might be two separate problems, but they are similar).

    In the mail window, there is the option to search through a folder for keywords in the subject or sender. However, after using mail for a while, it won't let me type anything into that box unless I shut the mail window and reopen it.

    In the browser window, there is a similar problem in the address bar. After a while, it won't let me type in a new address or select to copy an existing address unless I close and reopen the browser window. That can be a pain if you have multiple tabs open for places you are flipping between because you then have to set them all up again.

    Source: http://community.livejournal.com/mozilla/351962.html

  17. Browsers can't browse

    Date: 02/17/06 (Computer Help)    Keywords: browser, web

    I've got a problem with my browsers on my laptop. I can't surf the net with any of them. I have IE and Mozilla Firefox installed. I had Netscape 7.2 installed but I uninstalled that in frustration. Before that, I could reach a couple of websites with Netscape, but that was about it. My browsers quit working a couple of days ago.

    Can anyone offer any suggestions? Thanks in advance.

    Source: http://community.livejournal.com/computer_help/588864.html

  18. Web 2.0

    Date: 02/18/06 (PHP Community)    Keywords: browser, web

    Any suggestions for a good Web 2.0 book. My next task seems like as perfect opportunity to learn.


    I guess I am really must be refering to only Ajax.

    Recently, a concept known as Ajax has evolved that can improve the user experience in some browser-based web applications. It involves a web page requesting an update for some part of its content, and altering that part in the browser, without refreshing the whole page at the same time.

    Source: http://community.livejournal.com/php/416335.html

  19. Self-contained browser

    Date: 02/20/06 (Computer Geeks)    Keywords: browser, html, virus, web, spyware, linux

    If you're a Windows or Linux user (the former especially), and you ever need to do a bit of surfing on a particularly shady website, and you want to protect your PC from any nasty spyware or other malicious code that might be present, the usual tactic is to rummage around for hardware, build a sacrificial system, install an operating system and applications, add it to your LAN, and get to the site in question.

    Instead, try the VMware Browser Appliance. It's a self-contained copy of Firefox (running on Ubuntu Linux, but that's largely irrelevant -- Firefox is Firefox, from a user standpoint) that runs as "virtual machine" on your computer. When it runs, it runs inside its own window, not just on screen, but in memory, and the hard drive. It's completely boxed in: nothing you load can get to your other applications, or your hard drive, or onto your computer in any way other than inside that pre-defined box. It makes a great environment for testing website design, or testing a web application you're writing, or investigating a potential virus site, or anything else that you would be more comfortable not using your main PC for. You can configure it to either wipe itself completely clean every time you use it, or to retain the settings (bookmarks, cookies, etc) between uses.

    http://www.vmware.com/vmtn/vm/browserapp.html

    Source: http://community.livejournal.com/computergeeks/881615.html

  20. Oh snap!

    Date: 02/20/06 (Opera Browser)    Keywords: browser, html

    Found a feature in the TP2 that I really like. When you view source, it opens the source in a new browser window, changes the color of the HTML (etc) tags so it's different from normal text, making it very easy to edit! =D

    Very cool, imo! =D Anyone else notice this and use it?

    Source: http://community.livejournal.com/opera_browser/51715.html

Previous page  ||  Next page


antivirus | apache | asp | blogging | browser | bugtracking | cms | crm | css | database | ebay | ecommerce | google | hosting | html | java | jsp | linux | microsoft | mysql | offshore | offshoring | oscommerce | php | postgresql | programming | rss | security | seo | shopping | software | spam | spyware | sql | technology | templates | tracker | virus | web | xml | yahoo | home