1. Tomcat caching .. or?

    Date: 03/16/07 (Web Development)    Keywords: browser, jsp, apache

    Very strange issue. I don't manage the server myself, but can request changes to its configuration.

    The server is Apache Tomcat/5.5.9. We usually just write JSP files in Dreamweaver and upload them to the server.

    Now here's the issue: Whenever we update a JSP file on the site and then go to view it in the browser, with equal probability we may see the old version of the file or the new one. If we make another change to the file, we may see any of the 3. This isn't a "local" caching issue because if I at the same time try this from another machine on another network, I get the same results.

    We have attempted to delete the "cache" folder, but this doesn't generally help.

    Any ideas?

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

  2. Downloading data

    Date: 03/16/07 (MySQL Communtiy)    Keywords: mysql, rss, browser, sql

    [edit] - solved in comments

    I've got a project I'm working on where results can be downloaded to a CSV file. I found the code here.

    Here is my code:

    					
    $rsSearchResults = mysql_query($sql) or die(mysql_error());
    $out = '';	
    $fields = mysql_list_fields('dataprod_a5data_com','canman');	
    $columns = mysql_num_fields($fields);		
    
    // Put the name of all fields	
    for ($i = 0; $i < $columns; $i++) {	
    	$l=mysql_field_name($fields, $i);	
    	$out .= '"'.$l.'",';	
    }	
    $out .="\n";		
    
    // Add all values in the table
    while ($l = mysql_fetch_array($rsSearchResults)) {	
    	for ($i = 0; $i < $columns; $i++) {	
    		$out .='"'.$l["$i"].'",';	
    	}
    	$out .="\n";
    }
    
    // Output to browser with appropriate mime type, you choose ;)	
    //header("Content-type: text/x-csv");	
    //header("Content-type: text/csv");	
    header("Content-type: application/csv");	
    header("Content-Disposition: attachment; filename=search_results.csv");	
    echo $out;	
    $currentdownloads++;
    $q2 = mysql_query("UPDATE canman_users SET CurrentDownloads = '".$currentdownloads."' WHERE Username = '".$un."'");
    exit;


    What I am wanting to do is not have all of the columns in the downloaded file. I have tried only including the columns I want in the select statement but all the data ends up being moved over by however many columns are missing - for example, the BusinessName column data ends up under the ID column heading. Is there anyway that I can exclude the certain columns when it's pulling out the column names and adding them to $out?

    Thanks!

    Source: http://community.livejournal.com/mysql/111700.html

  3. Anomaly.

    Date: 03/17/07 (PHP Community)    Keywords: php, mysql, browser, database, sql

    I can't seem to figure out this problem for the life of me.

    The error is this: Parse error: syntax error, unexpected T_ENCAPSED_AND_WHITESPACE, expecting T_STRING or T_VARIABLE or T_NUM_STRING in /opt/lampp/htdocs/_projects/medievalbattles/current/v8_r3/httpdocs/access.php on line 139

    LIne 139 is: $servername = $row["alt_name"];

    Even if I comment out this entire portion of code, the error still exits (even after cleaning my entire browser cache and restarting my computer five times). I've tried cleaning my Smarty template cache, but that didn't help.

    	// was inevitable to requery this. maybe use memcached?
    $count = 1;
    $sql = "SELECT alt_name, databasename FROM ".$_MB->db_name.".servers";
    $res = mysql_query($sql, $_MB->connection) or die(mysql_error());
    while ($row = mysql_fetch_assoc($res))
    {
    $server_name = $row["alt_name"];
    $server_database = $row["databasename"];

    $sql2 = "SELECT serverstart, tickstart, serverend, round FROM ".$server_database.".game_info";
    $res2 = mysql_query($sql2, $_MB->connection) or die(mysql_error());
    $row2 = mysql_fetch_assoc($res2);
    $time_data[$server_name]["serverstart"] = $row2["serverstart"];
    $time_data[$server_name]["tickstart"] = $row2["tickstart"];
    $time_data[$server_name]["serverend"] = $row2["serverend"];
    $time_data[$server_name]["round"] = $row2["round"];

    $count++;
    }


    Please help.

    $verifylogin = "yes";
    include("header.php");

    $sql = "SELECT name, prestige, rank, kills, verified FROM ".$_MB->db_name.".accounts WHERE id = '".$_SESSION["account_id"]."'";
    $res = mysql_query($sql, $_MB->connection) or die(mysql_error());
    $row = mysql_fetch_assoc($res);
    $_SMARTY->assign("account_data", $row);

    //if ($user_verified != "y")
    //    $_MB->redirectuser("user_validate.php", "");

    if ($_SESSION["successful_reg"] == "1")
    {
        unset($_SESSION["successful_reg"]);
        unset($_SESSION["msg"]);
        $_SESSION["cdbname"] = $cdbname;
        $_SESSION["cloggedin"] = "yes";
        $_SESSION["loggedin"] = 1;

        header("Refresh: 5; game/overview.php");
        exit();    
    }
    else
    {
        $_SMARTY->assign("msg", $_MB->resultmessage());
        unset($_SESSION["msg"]);

        if ($_POST["login"])
        {
            $game = $_POST["game"];
            $_MB->use_db = $_POST["db"];
            $non_bar_clock = date("M d, y - h:ia");
            $clock = $_MB->month." ".$_MB->time;

            $sql = "SELECT id FROM ".$_MB->use_db.".users WHERE accountid = '".$_SESSION["account_id"]."'";
            $res = mysql_query($sql, $_MB->connection) or die(mysql_error());
            if (mysql_num_rows($res))
            {
                $row = mysql_fetch_assoc($res);
                $userid = $row["id"];
           
                $sql = "SELECT tpw FROM ".$_MB->db_name.".servers WHERE id = '".$game."'";
                $res = mysql_query($sql, $_MB->connection) or die(mysql_error());
                $row = mysql_fetch_assoc($res);
                    $ticks_per_week = $row["tpw"];
       
                $sql = "UPDATE ".$_MB->use_db.".user_aids SET timer = '".$ticks_per_week."' WHERE user_id = '".$userid."'";
                mysql_query($sql, $_MB->connection) or die(mysql_error());

                $sql = "UPDATE ".$_MB->use_db.".users SET online = 'y', lastlogin = '".$clock."'  WHERE id = '".$userid."'";
                mysql_query($sql, $_MB->connection) or die(mysql_error());

                $sql = "INSERT INTO ".$_MB->use_db.".user_online (id, userid, time, ip) VALUES ('', '".$userid."', '".$clock."', '".$_SERVER["REMOTE_ADDR"]."')";
                mysql_query($sql, $_MB->connection) or die(mysql_error());

                $_SESSION["cdbname"] = $_MB->use_db;
                $_SESSION["cloggedin"] = "yes";
                redirectuser("game/overview.php", "");
            }
            else
                redirectuser("access.php", "You do not have an empire on that server.");
        }

        if ($_POST["gameregistration"])
        {
            // Empire creation
            $game = $_POST["game"];
            $_MB->use_db = $_POST["db"];
            $sql = "SELECT * FROM ".$_MB->db_name.".servers WHERE id = '".$game."'";
            $res = mysql_query($sql, $_MB->connection) or die(mysql_error());
            if (mysql_num_rows($res))
            {
                $sql = "SELECT * FROM ".$_MB->use_db.".users WHERE accountid = '".$_SESSION["account_id"]."'";
                $res = mysql_query($sql, $_MB->connection) or die(mysql_error());
                if (!mysql_num_rows($res))
                {
                    $_SMARTY->assign("create_empire", TRUE);
                    $_SMARTY->assign("db", $_MB->use_db);
                    $_SMARTY->assign("game", $game);

                    $sql = "SELECT id, name FROM ".$_MB->db_name.".races ORDER BY name ASC";
                    $res =mysql_query($sql, $_MB->connection) or die(mysql_error());
                    $row = mysql_fetch_assoc($res);
                    $_SMARTY->assign("races", $row);

                    $sql = "SELECT id, name FROM ".$_MB->db_name.".classes ORDER BY name ASC";
                    $res =mysql_query($sql, $_MB->connection) or die(mysql_error());
                    $row = mysql_fetch_assoc($res);
                    $_SMARTY->assign("classes", $row);
                }
                else
                    redirectuser("access.php", "You already have an empire on that server.");
            }
        }
        else
        {
            $sql = "SELECT id, alt_name, databasename, gametype FROM ".$_MB->db_name.".servers";
            $res = mysql_query($sql, $_MB->connection) or die(mysql_error());
            $row = mysql_fetch_assoc($res);
            $_SMARTY->assign("server_list", $row);

            // was inevitable to requery this. maybe use memcached?
            $count = 1;
            $sql = "SELECT id, alt_name, databasename, gametype FROM ".$_MB->db_name.".servers";
            $res = mysql_query($sql, $_MB->connection) or die(mysql_error());
            while ($row = mysql_fetch_assoc($res))
            {
                $server_alt_name = $row["alt_name"];
                $_MB->use_db = $row["databasename"];

                $sql2  = "SELECT serveractive FROM ".$_MB->use_db.".game_info";
                $res2 =mysql_query($sql2, $_MB->connection) or die(mysql_error());
                $row2 = mysql_fetch_assoc($res2);
                    $server_data[$server_alt_name]["active"] = $row2["serveractive"];

                $sql2 = "SELECT empirename FROM ".$_MB->use_db.".users WHERE accountid = '".$_SESSION["account_id"]."'";
                $res2 =mysql_query($sql2, $_MB->connection) or die(mysql_error());
                $row2 = mysql_fetch_assoc($res2);
                    $server_data[$server_alt_name]["empire"] = $row2["empirename"];

    `            $count++;
            }

            $_SMARTY->assign("server_loop_max", $count);
            $_SMARTY->assign("server_data", $server_data);
        }

        $sql = "SELECT alt_name, databasename FROM ".$_MB->db_name.".servers";
        $res = mysql_query($sql, $_MB->connection) or die(mysql_error());
        $_SMARTY->assign("server_time", mysql_fetch_assoc($res));   

        // was inevitable to requery this. maybe use memcached?
        $count = 1;
        $sql = "SELECT alt_name, databasename FROM ".$_MB->db_name.".servers";
        $res = mysql_query($sql, $_MB->connection) or die(mysql_error());
        while ($row = mysql_fetch_assoc($res))
        {
            $server_name = $row["alt_name"];
            $server_database = $row["databasename"];

            $sql2 = "SELECT serverstart, tickstart, serverend, round FROM ".$server_database.".game_info";
            $res2 = mysql_query($sql2, $_MB->connection) or die(mysql_error());
            $row2 = mysql_fetch_assoc($res2);
                $time_data[$server_name]["serverstart"] = $row2["serverstart"];
                $time_data[$server_name]["tickstart"] = $row2["tickstart"];
                $time_data[$server_name]["serverend"] = $row2["serverend"];
                $time_data[$server_name]["round"] = $row2["round"];

            $count++;
        }
           
        $_SMARTY->assign("time_loop_max", $count);
        $_SMARTY->assign("time_data", $time_data);
    }

    $_SMARTY->display("pages/access.tpl");

    include("footer.php");
    ?>

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

  4. join between two databases

    Date: 03/18/07 (PHP Community)    Keywords: mysql, browser, database, sql

    this might be way too much info, but please bear with me! the end result is, i need to do a query that joins tables that exist in different databases on different servers. how do i do that?

    anyway, i'm building a site for a real estate guy who's hosted through 1and1. they only allow you to have 100mb of data per database. he's given me ~500mb of property data and ~100mb of property tax data. i split up the property data and kind of spanned it across five db's, then put the tax data in a sixth. each database you create with 1and1 gets dropped on a random server. i'm able to search property data by checking db1, then db2, and so on... and appending the results. i connect to them all like so

    //connect to property records 1 db
    $props1_link = mysql_connect('some_server1','name','pwd') or die ("failed to connect to server 1.");
    $props1_db   = mysql_select_db('db_name1',$props1_link) or die("unable to select property records 1 database: ".mysql_error());

    //connect to property records 2 db
    $props2_link = mysql_connect('some_server2','name','pwd') or die ("failed to connect to server 2.");
    $props2_db   = mysql_select_db('db_name2',$props2_link) or die("unable to select property records 2 database: ".mysql_error());

    //connect to taxes db
    $tax_link = mysql_connect('some_server','name','pwd') or die ("failed to connect to taxes server.");
    $tax_db   = mysql_select_db('tax_db',$tax_link) or die("unable to select tax database: ".mysql_error());


    i have one database containing one table on each of the six servers.

    i perform a search by constructing the query and looping through the $props... connections, doing this for each

    $res  = mysql_query($sql,$props1_link) or die($sql.": ".mysql_error());


    i dump the results to a csv file, then move on to the next db, append those results, move on, etc., until we have one big csv which i pass to the browser. that all works fine if i only need to query properties.

    my problem is that some of his queries need to join the properties table/s with the tax records table. simplified, something like

    SELECT p.`name` FROM `properties` AS `p`, `taxes` AS `t` WHERE p.`tax_id` = t.`id`


    i've done things like this before with multiple db's on the same server; but here i need to use multiple $links to multiple servers in order perform the query. is that possible? (beyond doing multiple queries to the different db's than comparing results manually.)

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

  5. ajax, anchors and scrolling

    Date: 03/29/07 (Web Development)    Keywords: browser

    I'm working on an ajax feature that collapses a large amount of content (blind up fom scriptaculous).

    The problem I'm having is that the user left looking at the footer because the browser doesn't follow the collapsed content. The quick solution was to jump to an anchor after the collapse occurs. This works, but it's very disorienting to have the page instantly jump to a spot. I'd like to have the browser follow the content as it collapses. I hope this is a clear explanation. Anyone have any ideas?

    Here is a diagram. The ajax call will collapse comments 1 through 4. During the collapse I want the browser to follow comment 5 as it moves up.

    div:comments
    li:comment_1
    li:comment_2
    li:comment_3
    li:comment_4 <-- collapse
    li:comment_5
    li:comment_6
    /div

    form
    ..
    ..
    footer

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

  6. Retouching on the redirect

    Date: 03/30/07 (PHP Community)    Keywords: php, browser, web

    A few days ago I posted a question about browser redirection in php. The general consensus is that header() works best, and it works perfectly fine.

    That's not where this question is heading.

    As I stated in my previous post, this is a small project for my mother. She's now decided that instead of this field redirecting, she wants it to open a new window.

    Now, if this was just a straight link on a generic web page, I wouldn't have a problem, but like I said in the afforementioned post, the page is selected based off of input from a form.

    So my esteemed group of resident genius-people...is there a command that will create a new window?

    :D

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

  7. Slow to start up?

    Date: 04/01/07 (Computer Geeks)    Keywords: browser

    Whenever I click on an icon to start up the program, it seems to take several seconds to load. If I were to click on my browser in the quick launch tool bar, it seems to take very long time to load. Lastly, when I click on "my computer" I ALWAYS get the back and forth flashlight and it takes a bit of time to load. Can anyone help with these problems

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

  8. Mozilla mulls Windows cursor flaw fix of its own

    Date: 04/04/07 (Security)    Keywords: browser

    Open-source Firefox browser is vulnerable to attack using the Windows flaw.

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

  9. css question

    Date: 04/04/07 (Web Development)    Keywords: browser, css, web

    Up until now I've always used tables to build my websites, but have decided it's time to move on and learn css. All seems fairly straightforward so far, but I've found something which it seems difficult to do so I thought I'd enquire!

    When I've made tables-based pages I've always centred my table, so you get the same size layout on any monitor, with the background left and right filled in with whatever colour my background was. And that was always fine. But looking at css, I can't seem to find a similar straightforward way to do the same thing? And what methods there are seem to not work on this browser or that browser which makes it quite awkward? Is this right? Do I just need to change my way of designing and either justify to the left or make everything stretch to fit monitors (which I don't really like doing)?

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

  10. AJAX Question

    Date: 04/06/07 (Web Development)    Keywords: php, browser, html, xml, microsoft

    I have a form of potentially 8 select menus, the goal of which is when you change the value it calculates a new cost based on the choices made. In order to bypass the annoying IFRAME issue of ruining your browser back button I'm looking into alternative scripting options - and while I am woefully unfamiliar with AJAX it seems to be my best option.

    I've got a script 'working' - processing one option, but I cannot seem to see how to get it to support multiple options. All it really needs to do is parse the options into a string for PHP like foo.php?item1=THIS&item2=THAT.

    The script I'm using now looks like this:

    var AJAXForms = false;
    var LastField = null;
    var isIE = false;
    
    if (window.XMLHttpRequest) {
      AJAXForms = new XMLHttpRequest();
    }
    
    function CheckField(field) {
    
      if (window.XMLHttpRequest) {
      } else if (window.ActiveXObject) {
        AJAXForms = new ActiveXObject("Microsoft.XMLHTTP");
      }
    
      AJAXForms.onreadystatechange = processChange;
      AJAXForms.open("GET", "check.php?&quantity="+field.value);
      LastField = field.name;
      AJAXForms.send(null);
    }
    
    function processChange() {
      if (AJAXForms.readyState == 4) { 
        var res = document.getElementById(LastField);
        res.innerHTML = AJAXForms.responseText;
        res.style.visibility = "visible";
      }
    }


    With HTML of 'OnChange="CheckField(this)"' attached to the dropdown. So what I'd like to do is either a.) Get this script to support up to 8 variables or b.) Get some direction on examples / tutorials in order to write one myself. Any help would be much appreciated.

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

  11. Wierd, but annoying problem

    Date: 04/07/07 (Computer Help)    Keywords: browser, web

    Having just found this comm, I have to say thank god! I hate joining to post in different for help ):

    that said, I have a really wierd problem when using IE Explorer. I just installed the latest version for IE not too long ago, but this was happening with the older version aswell.

    The problem is that when I'm typing in a web url and don't include the "www." an error will occur with the internet browser and all my windows will close.

    example, if I was trying to vist livejournal I couldn't type "livejournal.com" I'd have to type out the full "www.livejournal.com," otherwise an error would occur.

    Not the biggest, most damaging problem out there but still annoying none-the-less.

    Help would be greatly appreciated!

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

  12. Is the 'Web OS' just a geek's dream?

    Date: 04/09/07 (Web Technology)    Keywords: browser, web

    "Webtops" that bring multiple applications into a single browser take another stab at the fabled Web operating system.
    Images: Making the desktop fit in a browser

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

  13. Website that crashes my firefox

    Date: 04/12/07 (Mozilla)    Keywords: browser

    The link below (to myspace) crashes my firefox browser:

    http://www.myspace.com/danhenk

    Is it just my system or does this happen to anyone else?

    I am running Vista with firefox 2.0.0.3 and numerous extensions. However, it crashes firefox whenever I run in Firefox Safe Mode as well, so it can't be an extension.

    This is the error I'm getting:
    Runtime Error R6034

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

  14. Secure email

    Date: 04/13/07 (Computer Geeks)    Keywords: browser, asp, security, spyware

    I've been using Gmail for a while now. I know a lot of people are less than thrilled with their security. My email is slowly becoming a life line and more and more important information is going through my email so I figure this is the time to do some serious looking. My question is 2 fold.

    1. What are some opinions on the security of Gmail and should I consider jumping?
    2. If I should jump, where should I look to jump into? Pay for email? How much and where?

    I tried doing some quick research on secure pay e-mail sites but didn't come up with a whole lot, so I thought I would look for suggestions and opinions.

    Thanks.



    While I'm at it, why not ask 2?

    How good is AVG Free and is it worth paying to upgrade to something else? And if upgrading is suggest, what should I upgrade to? Whether it be just AV, an internet suite, spyware, etc. I've been looking pretty hard at Kaspersky, but I don't know..

    I'm a safe browser and I don't run in to many, if any problems.

    Just not sure how good a free AV can be, y'know?

    Thanks..

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

  15. Jobs...

    Date: 04/17/07 (PHP Community)    Keywords: php, programming, mysql, software, browser, css, html, xml, technology, database, sql, java, jsp, web, linux, microsoft, apache

    Moderator, if this isn't allowed on this forum just let me know.

    I get a lot of emails daily for various web dev and programming positions available. I found a good job, but I keep my resume up. Ya never know.

    Just feel guilty constantly deleting them when I know someone may need them. Figured I'd at least post them for any coder friends that may be looking for something. I lj-cut it so it wouldn't be too obtrusive.

    If these are just found to be crap, let me know and I'll stop passing them on. But some of them at least appear to have potential. They're all fresh over the past 24 hours.

    To whoever is currently looking, hope these help! If it's ok, I'll send periodic digests of these if anyone finds them worthwhile.


    Hello,


    I came across your resume and would to speak with you in regards to 2 immediate Cold Fusion needs in the Radford, VA areas.

    Here are the details.


    We need people onsite! 40 hour work week schedules

    Location/Address: Radford, VA (Southwestern VA)

    Start Date: ASAP

    Drop Dead Start Date: ASAP

    Project End date: N/A

    # Of resources need for role: 1

    Position Title: ColdFusion Software Engineer

    BE Level/ Job classification: Consultant

    Required Skill Set (Yrs Exp):


    SKILLS: ColdFusion software developer with experience leading the development of software modules.

    EXPERIENCE:
    Proven experience analyzing system requirements, guiding overall application development and individual module development. Direct involvement in application development, maintenance and operations of an application environment involving Microsoft SQL Server back-end with Macromedia ColdFusion middleware running on Microsoft IIS webservers.

    Specific education and experience requirements include:
    1. Minimum 4-year technical degree in Computer Science, Information Technology, or related field from accredited institution
    2. Minimum 1 year general programming experience and an additional 1 year experience in web-based application development
    3. Minimum 1 year experience with design, development and maintenance of ColdFusion-based online software applications
    4. Practical experience in MS SQL Server (v7 or higher) database design, operations, and maintenance involving extensive structured query language (SQL) usage and development of complex queries and procedures
    5. Practical experience with MS SQL Server (v7 or higher) database administration
    5. Must be a US Citizen
    6. Prefer current active Department of Defense (or capable of attaining) Secret Clearance

    Preferred Skill Set

    Will also consider candidates with Java and JSP experience.



    Job#2

    Location/Address: Radford, VA (Southwestern VA)

    Background of Project:

    Start Date: ASAP

    Drop Dead Start Date: ASAP

    Project End date: N/A

    # Of resources need for role: 1

    Position Title: Web Page Designer

    BE Level/ Job classification: Sr Systems Analyst

    Required Skill Set (Yrs Exp):

    The candidates we are seeking should be self starters, interested in seeking new ways to help this customer innovate and provide state of the art web design capabilities to DoD customers.

    Technical & functional requirements:

    - 1-2 years ColdFusion development experience using Version 6.0 or 7.0 (prefer 7.0)
    - 1-2 years experience with Enterprise level database design including stored procedures and functions.
    - working knowledge of the Fusebox design methodology, using version 3.0 or higher to develop robust web applications.
    - proficient with use of Visual Mind software, version 7
    - demonstrate ability to elicit requirement definitions from customers, then convert those specifications into realistic software development projects, and further develop a schedule in MS Project for task delegation and performance tracking.
    - US Citizen

    Preferred Skill Set

    XHTML or similar browser based scripting development, web services development experience a plus.
    - Cascading Style Sheet development using CSS v2.0 or later preferred.
    - Microsoft SQL Server 2000 database design experience preferred.

    Please forward me an updated word copy of your resume and give me a call.

    Thanks!

    Ray Santos | 1-800-627-8323 x9509 | rsantos@mastech.com Mastech | 1000 Commerce Drive Pittsburgh, PA 15275 | Ph:1.888.330.5497 x 9509

    Fax: 412-291-3037


    Mastech respects your privacy. We will not share your resume or contact details with any of our clients without your consent.









    Greetings!!!!!!

    VIVA USA INC., (www.viva-it.com) is an IT consulting firm headquartered in Rolling Meadows , IL servicing clients nationwide. We specialize in IT, telecom, engineering Staffing Solutions and system integration

    Please respond with your word document résumé, hourly rate, availability, visa status and relocation details to. recruit07@viva-it.com. One of our recruiters will get back to you ASAP. Kindly find below the job description.

    POSITION : Web Designer

    LOCATION : Columbia , SC

    DURATION : 6 Months

    Job Description :
    To create a new web site to replace the old web site.

    Required Skills: Web Developer, Web Site Design, Dreamweaver

    Optional Skills: .Net, XML

    Sukanya

    Viva USA INC, Chicago IL

    Phone: 847-448-0727 Ext 207

    Fax: 847-483-1317

    www.viva-it.com

    An ISO 9001:200 & CMMi M/WBE Company






    I saw your resume on Careerbuilder and thought you may be interested in this opportunity. BMW Manufacturing is looking to hire a Web developer for some contract work in their Greer, SC plant. I’ve included the details below. If you are interested, or know someone who may be, please contact me ASAP. I look forward to hearing from you soon.

    Sincerely,

    Aaron C. Fisher
    Sr. Account Representative
    Information Technology Division
    Greytree Partners, LLC


    (704) 815-1288 Office
    (704) 973-0767 Fax
    (704) 607-8518 Cell

    aaron.fisher@greytreepartners.com
    www.greytreepartners.com

    Entry Level – Web Developer Opportunity at BMW Manufacturing in Greer , South Carolina
    Client: BMW Manufacturing
    Job Title: Web Developer / Designer
    Assignment Length: 3 to 4 Weeks
    Shift: 1st / Full time
    Responsibilities: Update / refresh current departmental web content. Evaluate simple content management alternatives.
    Start Date: 23 April 2007
    Estimated End Date: 31 May 2007
    Required Skills: HTML
    Pre-Employment: Drug screen, background check (no education required).






    I have an exciting opportunity available for a PHP developer. I know the location may not be ideal but I felt it would be worth a look.

    Location: Las Vegas, NV

    Length: Contract to Hire/Direct Hire

    Rate: Depends on experience

    Required Skill Set:

    Extensive advanced PHP experience
    Back end PHP programming experience
    Experience with PHP 5
    Experience with MySQL
    Strong understanding of advanced Object Oriented Programming principles is a must

    For further consideration, please email your resume in Word format to cwander@yorksolutions.net.

    Thank You!

    Christi Wander
    York Enterprise Solutions
    cwander@yorksolutions.net






    Good afternoon,

    I came across your resume today on Monster.com and I have a position available that your skill set seems to match quite well. We are looking for a L.A.M.P. (Linux, apache, MySql, PHP) Developer candidate for a full time permanent opening in Toledo . This position is available with a great Online Bill Payment company, headquartered in Toledo and Washington D.C. This position is looking to go permanent in the 35 – 50K range, dependent upon experience. Ultimately, we are looking for someone with at least 3-5 years experience; comfortable in a lead type of role. If you are interested in discussing this opening with me, please feel free to email or call me at your earliest convenience.

    I look forward to speaking with you soon,

    Carl

    Carl Saad
    Manager of Branch Recruiting
    T 734-462-9505
    F 734-462-6443
    csaad@otterbase.com
    www.otterbase.com






    Hello! My name is Kristie Butler and I work for Procom Services, an IT Staffing Company. I am currently seeking a Web Designer for a 6 month contract position based in Columbia, SC. This position requires the following:

    The client is lookikng to create a new web site to replace the old web
    site. They are a Windows Department and they are looking for a public and private side (logon) in Web site. This will be a temp position, possible temp to hire position.

    Required Skills:

    Web Developer
    Web Site Design
    Dreamweaver
    Organizational Skills
    Written Communication Skills
    Adobe Photoshop
    Windows XP
    .Net
    XML

    If you feel you possess these skills and you are interested in this position, please send a current word document of your resume to kristieb@procomservices.com.

    Thank you!

    Kristie Butler
    Procom Services
    1-800-678-4590
    kristieb@procomservices.com

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

  16. net connection going nuts...

    Date: 04/19/07 (Computer Help)    Keywords: software, browser, virus, web, spyware

    SOLLUTION:
    I had NETframework installed, which effected many applications on windows.
    I uninstalled it.
    Possible other problem:
    Tag by mailware.

    Thank you so much for your help!

    I’m running Windows XP and I’m using BitDefender, Spybot and AdAware.

    My problem:
    My internet connection suddenly cuts off when I’m surfing the web. Usually, my messenger switches off first. I don’t think I would really notice if I didn’t have my messenger on, because my net-connection icon doesn’t switch off at all. Nor does my LAN-status-icon change.
    It all started when I rebooted my computer a few days ago, and my computer suddenly asked me for my username and password. I never ever make a computer administrator account/user account and activate it, though I know it’s always there from the start. It’s driving me nuts!
    I tried deactivating it, but it won’t let me. I can’t even change it or anything.
    Maybe I installed some software that activated it. I don’t know.
    I haven’t knowingly downloaded any malicious software and installed it ever since formatting my computer, and neither spybot, AdAware nor BitDefender find anything when I do a system scan.
    Another odd thing is that BitDefender is now always trying to connect to the internet without being prompted to. I have switched off automatic updates, because I can’t stand it when I’m in the middle of doing something, and those updates start eating up all my MB RAM.
    Anyway. When my connection breaks down, the connection-icon doesn’t vanish as it usually would. It shows me that I’m still online. When I double-click on it, a window opens and vanishes again instantly, though it shouldn’t. When I left-click on it and try to cut the connection, I don’t get a reaction. The icon doesn’t change.
    What confuses me the most is that my messenger won’t reconnect, my browser won’t open any new sites, but the clip I’m watching over at youtube dot com won’t stop playing. As far as I know, internet connection is required for watching clips at youtube.
    I’m very confused right now, and I really hope that all of this makes sense.

    (again in short: 1) my browser and messenger seem to be cut off from the net, but the icons tell me I’m online – and so does youtube.
    2) I can’t deactivate my local user account – which I myself have never activated
    3) my spyware and anti-virus software doesn’t detect any infected or defect files/etc.)

    Does anyone have any ideas?
    Is my network card maybe messed up somehow? It’s brand new, but it was super-cheap.
    Is my computer maybe infected with a virus or Trojan, that somehow manipulates my anti-virus and spyware software?

    Your help and ideas would be greatly appreciated.

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

  17. Database person needed for project

    Date: 04/19/07 (WebDesign)    Keywords: browser, database, web

    I'm bidding on a project that will need a database.

    The prospective client wants to have a catalog (no ordering) for each corporate customer. The database should be easy for the client to update via a web browser. Each customer will have a unique login and password.

    The database will run on a Windows 2003 server.

    Please contact me if interested so I can get some basic ideas on what's involved so I can put into a proposal for the client. Need to get the proposal going as soon as possible.

    Thanks,
    Chris

    p.s. Should I put a email address or phone # here for contact? Not sure what's "kosher".

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

  18. MacBook hacked in contest at security event

    Date: 04/20/07 (Security)    Keywords: browser, web

    Zero-day vulnerability in Safari Web browser used to commandeer a MacBook in hack-a-Mac contest at CanSecWest conference.

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

  19. Start-up adds shortcuts to Web browsing

    Date: 04/23/07 (Web Technology)    Keywords: browser, web

    Browser-based shortcuts that let you type in keywords to go a Web site have been around for a while. OpenDNS says it has a better idea that also happens to be free.

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

  20. Virus software

    Date: 04/23/07 (WebDesign)    Keywords: software, browser, security, virus, antivirus, web, microsoft

    So... This isn't a web design question, but I'm clueless when it comes to most Microsoft applications. I was hoping someone here might have some ideas for me.

    I go to a local youth center once a week to work on their computers. It's a bit of a grassroots, low-budget project, and they've pieced together a set of machines running on XP. They're not networked, but they have internet connections. They don't have any security software built in, so a few of the computers are so choked up with junk that they're barely usable. When I tried to clean them up, I realized I'd probably have to download any security programs on my own computer and install them on CD since the browsers won't work anymore.

    My question is:

    What would you do in this situation? Money is an issue since it's a youth center. I can't use the browsers. Would you uninstall the browsers? Or will some antivirus software clean everything automatically? Any other issues that might come up in the process? What application would you choose?

    Thanks much!

    Source: http://community.livejournal.com/webdesign/1248888.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