1. Shutterfly offers Web space to customers

    Date: 07/28/05 (Web Technology)    Keywords: web

    Online photo service debuts personalized URLs, Web pages that let people store an unlimited number of albums.

    Source: http://news.zdnet.com/Shutterfly+offers+Web+space+to+customers/2100-9588_22-5808719.html?part=rss&tag=feed&subj=zdnn

  2. Amazon files for Web services patent

    Date: 07/28/05 (Web Technology)    Keywords: web

    Company seeks a patent for an online marketplace where consumers can search and pay for Web services.

    Source: http://news.zdnet.com/Amazon+files+for+Web+services+patent/2100-9588_22-5808591.html?part=rss&tag=feed&subj=zdnn

  3. web-dev help needed.

    Date: 07/28/05 (Web Development)    Keywords: css, xml, java, web










    So I'm working on an internal Sharepoint site portfolio. The type of usability that I had in mind is that someone can upload a project with text entries for the objective, what they learned, and related links.

    Also, for a user to be able to (and I may be dreaming):


    • upload thumbnails of their screenshots.
    • how to universally alter a navigational dropdown so if you add a link, you don't have to individually alter each webpage (can this be done without frames?).
    • to deface the normal look of sharepoint.


    I need someone to explain to me the basics, though. I'm a web designer and not a developer, and my skills are extremely limited. For example, I don't know what can be put in CSS, whether it's just fonts and margins, or whether you can put automated code that would auto-update the links in a dropdown universally.

    I also don't necessarily know when I should use Java or XML, etc... Please don't be afraid to dumb it down. I need refreshers on almost everything.

    Any help that you could give me in the form of explanations or links would be greatly appreciated.

    Questions:

    • What is the correct procedure for making this type of usability?
    • Is it possible to integrate a thumbnail uploader into a sharepoint site? Would you have to use something other than sharepoint's engine?
    • How customizable are the graphics in a Sharepoint site if you're not dealing with site definitions?
    • Other helpful info:


    Thank you for all your help!
  4. Source: http://www.livejournal.com/community/webdev/226739.html

  5. Two Questions

    Date: 07/28/05 (Computer Geeks)    Keywords: web

    I have only two questions.

    1. I use Mozzila Firefox and everytime I attempt to access the avidgamers website, I get an error saying "Connection refused when attempting to access avidgamers.com". I was wondering if anyone has an explination to that, and could tell me how to fix it if possible.


    2. I'm running a COMPAQ Presario 2246 on a k6 processor and only half the reccomended amount of memory for Windows 2000 (professional). I was wondering what kind of processor I should upgrade to and around how much it would cost for both the processor and some more memory (Believe me, I've seen snails move faster than this machine).

    Source: http://www.livejournal.com/community/computergeeks/737285.html

  6. Microsoft cooking up more features for Hotmail

    Date: 07/29/05 (Web Technology)    Keywords: web

    Will turn up the heat on online rivals with changes to the Web-based e-mail, plus other plans for MSN.

    Source: http://news.zdnet.com/Microsoft+cooking+up+more+features+for+Hotmail/2100-9588_22-5809250.html?part=rss&tag=feed&subj=zdnn

  7. Flash 8 poised to take on Web video

    Date: 07/28/05 (Web Technology)    Keywords: web, microsoft

    With a big launch early next month for Flash 8 that emphasizes Web video, Macromedia could challenge Microsoft, Real and Apple.

    Source: http://news.zdnet.com/Flash+8+poised+to+take+on+Web+video/2100-9588_22-5808794.html?part=rss&tag=feed&subj=zdnn

  8. subquery question

    Date: 07/29/05 (MySQL Communtiy)    Keywords: mysql, sql, web, google

    I am trying to execute a delete using a subquery but I keep getting the same error and google and mysql.com are both no use as to what the error actually means

    My query is this

    delete from exon where exon_id in(select exon.exon_id from exon left join exon_transcript on exon.exon_id = exon_transcript.exon_id where exon_transcript.exon_id is NULL);


    and this is the error

    ERROR 1093 (HY000): You can't specify target table 'exon' for update in FROM clause

    do you have any ideas what I am doing wrong?

    exon_transcript is a table which links the exon table with another table called transcript and there were a series of rows missing from exon transcript so the links weren't present

    I have been able to use other methods to delete the links from transcript but I can't see any other way of deleting the links from exon

    if you want to see the schema description have a look here

    http://cvsweb.sanger.ac.uk/cgi-bin/cvsweb.cgi/ensembl/sql/table.sql?rev=1.229&view=log

    I am using this version of mysql

    mysql Ver 14.7 Distrib 4.1.12, for dec-osf5.1b (alphaev68) using readline 4.3

    thanks

    Source: http://www.livejournal.com/community/mysql/64885.html

  9. help?

    Date: 07/29/05 (WebDesign)    Keywords: web

    I finally have a design ready for creating my portfolio site.



    Thumbnails of my work would take the place of the small boxes, and when you click on a thumbnail, the image would appear in the larger area, with a description of that piece beneath that.


    The problem is that I don't know where to start. I haven't made a website in over a year and my mind is a complete blank. In the past I would have sliced this up in ImageReady, taken it into Dreamweaver, and gone from there. Is there a better way to do this? Thanks.

    Source: http://www.livejournal.com/community/webdesign/941391.html

  10. Gallery combination

    Date: 07/29/05 (PHP Community)    Keywords: php, html, web

    Right,

    I've got a gallery on a simple site I made for a friends band (apologies in advance if the red is overwhelming)

    http://fourworldtheory.com/gallery.php
    It does it's job BUT when you click on a thumbnail the scroll bar jumps back to the beginning (I know this is because the page re-loads)Which is quite annoying.

    I've been playing with this gallery
    http://fourworldtheory.com/scroll_gallery.html
    And it doesn't jump BUT I have to put all the images in the html first, which is very time consuming etc when there's so many images.

    Does anyone know if I can combine the two as it were?
    Have the php script load the images, then have the gallery that doesn't jump back to the beginning?

    Posted this in '[info]'webdev as well.




    $d = opendir("/home/james/sites/fourworldtheory.com/images/pictures_of_us/thumbs/");
    while(false !== ($f = readdir($d))) {
    if($f == "." || $f == "..") continue;
    print("\t . str_replace("50", "lg", $f) . "\"> alt=\"\"/>\n");
    }
    ?>



    Click to enlarge



    theory.com/images/$_GET[img]")){
    print("\"\"/");
    }?>



    Note: a friend helped me with the php, still very much a beginner myself

    Source: http://www.livejournal.com/community/php/326225.html

  11. Valnerability in php?

    Date: 07/29/05 (PHP Community)    Keywords: php, database, web

    Hi Everyone.
    I’m hoping someone can help me out with some code. I have a script on my website to automatically email me visitor comments. Last night my web host disabled it, saying there was a vulnerability that hackers were exploiting. I’ve looked over the script, but I can’t seem to find the vulnerability.


    $mail_path = "/usr/sbin/sendmail -i -t" ;
    $mail_to = -- my personal email address --;
    $mail_subject = "[Webpage Email] ";

    $email = $_RESQUEST['useremail'];
    $message = $_REQUEST['message'];
    $mail_subject .= $_REQUEST['subject'];

    if (!isset($referer)){$referer = $HTTP_REFERER;}

    if (trim($message) != ''){
    mail($mail_to,$mail_subject,$message,
    "From: $useremail\r\n" .
    "Reply-To: $useremail\r\n" .
    "X-Mailer: PHP/" . phpversion());
    $display = "Thank you for submitting an email.
    Your message has been successfully sent.
    Redirecting you to $referer in 5 seconds.";
    $meta = "";
    }
    ?>



    They also site these logs as evidence of the hack
    200.175.152.226 - - [27/Jul/2005:20:55:45 -0400] "POST /email.php?referer= HTTP/1.0" 200 2155 "http://www.aellalei.com/" "-"
    202.106.124.32 - - [27/Jul/2005:20:57:02 -0400] "POST /email.php?referer= HTTP/1.1" 200 2167 "http://www.aellalei.com/" "-"
    195.245.185.18 - - [27/Jul/2005:20:58:21 -0400] "POST /email.php?referer= HTTP/1.1" 200 2167 "http://www.aellalei.com/" "-"
    69.118.168.253 - - [27/Jul/2005:21:02:43 -0400] "POST /email.php?referer= HTTP/1.0" 200 2501 "http://www.aellalei.com/" "-"



    Also, I’m using a similar script to email users about updates. That script queries a database to get the user emails. Is it likely to have the same vulnerabilities?

    Source: http://www.livejournal.com/community/php/325993.html

  12. WOO!

    Date: 07/30/05 (Web Development)    Keywords: php, mysql, sql, web

    About a week ago I made a post asking for references on PHP because I had just interviewed for a job at a web design firm and my lack of PHP knowledge was one of the things holding me down. Well, like I said, I spent all weekend studying PHP (thanks for all the references everyone!) and tearing apart existing PHP scripts until I was able to write my own scripts without using any reference. By Tuesday I had written a blog system using PHP and MySQL (complete with login authentication using sessions, add, edit and delete entries, and add or remove posters on the system, plus much much more...which, I'm pretty sure you would agree is a pretty easy task, but having only started learning PHP three days prior, I'm quite proud of myself).

    Anyway, I went in for the second interview on Wednesday this week and showed them what I had accomplished over the four days between interviews.

    This morning I got a call from them offering the job to me :o) I start on the 15th.

    Anyway, I just wanted to thank everyone for hooking me up with the PHP references.

    Source: http://www.livejournal.com/community/webdev/228601.html

  13. WOO!

    Date: 07/30/05 (WebDesign)    Keywords: php, mysql, sql, web

    About a week ago I made a post asking for references on PHP because I had just interviewed for a job at a web design firm and my lack of PHP knowledge was one of the things holding me down. Well, like I said, I spent all weekend studying PHP (thanks for all the references everyone!) and tearing apart existing PHP scripts until I was able to write my own scripts without using any reference. By Tuesday I had written a blog system using PHP and MySQL (complete with login authentication using sessions, add, edit and delete entries, and add or remove posters on the system, plus much much more...which, I'm pretty sure you would agree is a pretty easy task, but having only started learning PHP three days prior, I'm quite proud of myself).

    Anyway, I went in for the second interview on Wednesday this week and showed them what I had accomplished over the four days between interviews.

    This morning I got a call from them offering the job to me :o) I start on the 15th.

    Anyway, I just wanted to thank everyone for hooking me up with the PHP references.

    Source: http://www.livejournal.com/community/webdesign/942191.html

  14. lightsaber

    Date: 07/30/05 (See my site)    Keywords: web

    Hi everybody! My name's Zelda, I'm Italian and I love design.
    I'm not a webdesigner, I'm just a graphic creative. But I made a site: LightingBlades.com.
    Yes, if you love Star Wars' light saber go and see: this is a sword with a real progressive switch on. I can't explain better, just look at the video ;)

    Source: http://www.livejournal.com/community/see_my_site/86840.html

  15. asking for opinions

    Date: 07/31/05 (Web Development)    Keywords: php, web

    Hey guys...

    I've been quite busy finishing up my personal website, and finally i'm done. Sort of.. cause i know the best beta testing is after launch :P So i'm expecting some bugs to come up along the way.

    So anyway, since some of you helped me a lot facing several issues that came up in this project, i'm posting this to ask for your opinions on the website. If you like it, if you don't, why, what would you change, etc.

    Basically, i'm asking for some feedback. ;)

    Thank you all in advance. Here's the link:

    http://andr3.net

    crossposted to '[info]'php and '[info]'webdev

    Source: http://www.livejournal.com/community/webdev/228657.html

  16. asking for opinions

    Date: 07/31/05 (PHP Community)    Keywords: php, web

    Hey guys...

    I've been quite busy finishing up my personal website, and finally i'm done. Sort of.. cause i know the best beta testing is after launch :P So i'm expecting some bugs to come up along the way.

    So anyway, since some of you helped me a lot facing several issues that came up in this project, i'm posting this to ask for your opinions on the website. If you like it, if you don't, why, what would you change, etc.

    Basically, i'm asking for some feedback. ;)

    Thank you all in advance. Here's the link:

    http://andr3.net

    crossposted to '[info]'php and '[info]'webdev

    Source: http://www.livejournal.com/community/php/327290.html

  17. Programming (part two)

    Date: 07/31/05 (Computer Geeks)    Keywords: php, programming, software, css, html, xml, database, asp, sql, java, security, web

    A few weeks ago, I asked about programming languages and which I should learn, and your reaction had me thinking that I could have offered more info about what I hoped to do with computers. My request was so vague that I can see why you found it difficult to reply. Perhaps this time I'll do better.

    To make things easier, I'm providing a list of what I want to do, and I ask you if you know what languages or applications I should consider in order to fulfill my technological goals.

    I'd like to:

    1. build web pages
    2. provide internet security for large & small clients
    3. make computer games
    4. build my own OS from scratch (a big task, I know)
    5. create, edit, download, and manipulate multi-media images and files
    6. develop application software
    7. build and manage my own server
    8. develop databases
    9. get a general feel for everything else, in case I ever need it


    So my current list of stuff I wish to learn now includes:
    • Java
    • Java Script
    • Perl
    • C, C+, & C++
    • PHP
    • SQL
    • CSS
    • HTML
    • XML
    • Adobe Photoshop
    • Adobe Illustrator
    • Flash & Dreamweaver
    • .Net (VB.net, ASP.net, C#)
    • CGI

    If you know anything about the above, feel free to post:

    What are each of the above used for? How did it come out? Are any of them similar or used for similar tasks? Etc., etc., etc.

    Finally, I was told to learn some Assembly language, but unless I am mistaken, I think I learned that already. If someone could give me a rundown on what it is, I could be sure if its what I think it is. I think I learned 8086 in my day (came with a card, too), so all I have to do is review it I think.

    Your help and suggestions are welcome and I thank you in advance for your time.

    Source: http://www.livejournal.com/community/computergeeks/740093.html

  18. login, user accounts, etc.

    Date: 08/01/05 (WebDesign)    Keywords: php, css, html, java, web

    Hi,
    Sorry this is probably a rather dumb question but...
    So I've been doing web design for quite some time now, using the basic design languages, html,css,dhtml,php,java. But I think I've kind of come up with an idea finally, a good idea, for a hopefully profitable website!
    But one of the problems is, I need to be able to have users who can sign up and create their own accounts, such as signing up on LJ or Deviantart and getting your own page.
    But I'm not exactly sure how to start creating such a thing. What language do I need to learn in order to accomplish that? so they'd have their accounts on a sub domain in essance. www.webpage.com/username
    I've thought about using phpnuke or a forum based site but it just wouldn't work for my idea. I like Deviantart's setup. I would need something similiar to what they've got.
    Thanks for reading my dumb question, I hope someone knows what I need.

    Source: http://www.livejournal.com/community/webdesign/942600.html

  19. Next Explorer to fail Acid test

    Date: 08/01/05 (Web Technology)    Keywords: web, microsoft

    Microsoft says IE 7 won't pass the standards exam; rivals Opera and Apple say they'll meet criteria set by World Wide Web Consortium.

    Source: http://news.zdnet.com/Next+Explorer+to+fail+Acid+test/2100-9588_22-5813897.html?part=rss&tag=feed&subj=zdnn

  20. AOL ready to reinvent itself

    Date: 08/02/05 (Web Technology)    Keywords: web

    As subscriptions slide, Net service giant plans to launch a free portal that unleashes its content on the Web.

    Source: http://news.zdnet.com/AOL+ready+to+reinvent+itself/2100-9588_22-5814373.html?part=rss&tag=feed&subj=zdnn

  21. Dogpile adds MSN search

    Date: 08/02/05 (Web Technology)    Keywords: web, yahoo, google

    InfoSpace is building the capabilities of its metasearch Web site, which already offers results from Google, Yahoo and Ask Jeeves.

    Source: http://news.zdnet.com/Dogpile+adds+MSN+search/2100-9588_22-5814463.html?part=rss&tag=feed&subj=zdnn

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