1. A follow-up to my guestbook post from the other day

    Date: 05/20/05 (WebDesign)    Keywords: web, spam

    I have a Megabook guestbook on my Web site. It uses a CGI script and unfortunately I have been getting an INSANE amount of spam comments lately. I really don't want to take the guestbook down but I'm sick of dealing with 20+ spam comments every day. The only thing I've found that claims to be able to fight guestbook spam is a program called Junkeater. I was wondering if anyone has used this program before. How good is it at filtering out spam? Do you know if it is compatible with Megabook? Any info would be appreciated!

    Thanks!

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

  2. Help with Mouse Clicks

    Date: 05/20/05 (WebDesign)    Keywords: java, web, seo

    Hello all. I am currently desinging a website for and antique shop in my community and I need some help on trying to figure out how to achieve a certain look and code.

    This is what I have so far:
    http://shoppicayune.com/A/Antiques/iframe_page2.htm
    Please note the text link at the top. Basically what I want to achieve is when you click on one of images surrounding the iframe, it loads the image into the iframe. However I am not very sure how I would go about doing this or if I using an iframe is even the best method.

    I have managed to find a script that allows me to achieve what basically want to do, however I want the images to go all the way around the center large display window as I have in the page linked above, and I want it to load the center large image with a click instead of a mouseover.
    Here is the link to the script I have:
    http://shoppicayune.com/picayuneflorists/index.htm

    I am not to savy with Javascript, but I have Front page and I can edit a script if I have one.

    Does anyone have any advice about how I could go about achieving this look or a script that could do what I want? Also if anyone knows any other communities that I might find better information surrounding this topic, that would also be helpful.

    Thank you in advance for you suggestions and advice.

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

  3. MySQL -> MS SQL SQL Create Script

    Date: 05/19/05 (SQL Server)    Keywords: mysql, sql, web

    Hello everyone,

    We've got a MySQL DB on a solaris box that is going to be retired shortly and we need to move the data source for a web application from MySQL to MS SQL. I dont't work with MySQL as much, so I would like to know if anyone can tell me how to get a SQL create script out of the MySQL db so that I can recreate it in MS SQL.

    peace.

    Source: http://www.livejournal.com/community/sqlserver/26975.html

  4. concern in video card overheating..

    Date: 05/20/05 (Computer Geeks)    Keywords: web

    i recently bought an XFX geforce 6600GT, and it worked great for a month..until the other day, i installed a new hard drive...booted up, everything is fine. i go to play guild wars, then it freezes almost instantaneously to the point where i have to do a cold reboot, i try again, still the same problem...i open up the case side, touch the card, and YOUCH enough to fry an egg....i check the temperature.....96c.....i look at the card closer, and realize that the hs fan is not spinning at all...i take the bugger apart and see the wire was actually stripping, and perhaps shorting against the heatsink....so i go out and buy a new heat sink and fan....i still have the same problem! i figure it has to with some internal traces...which makes me believe i knocked it while installing that hdd. i send the card back, get a refund.....

    i pick up an x800 XL today....install, works like a beauty.....which leads to my question or advice from others..
    when i play any game i feel it getting pretty hot to....i know my hs fan is working and all that for sure..
    but the questions:


    1. is what i'm feeling on this x800 normal?? i've used nvida gpus all my life.

    2. if it sounds fishy, could i have some how damage some traces on my agp slot and should i get everything out ASAP?


    please give me some input here....i want to feel safe useing this $300 card. and i really don't.
    thanks.




    p.s. i searched around the web for an ati temperature monitor...is there one in existance for an x800 XL?? if you know of one, please provide a link.

    haha. one more thing. can anyone recommend to me a good driver set i should use??? apparantly, my cs:s stress test only comes in at 85fps...and i feel i should get higher than that with this machine....
    specs:
    amd athlon xp barton core 2500+ OCed to 2.2GHZ
    1.25 GB of generic pc2700 RAM
    ATI x800 XL 256MB AGP
    ASUS A7N6X-E MOBO

    sorry about the rambling, hopefully someone read this ! =)

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

  5. viewing certificate services database

    Date: 05/20/05 (C Sharp)    Keywords: database, asp, security, web, microsoft

    Hello All!
    I need to have access to certificate services database from the c# web application. Approach described in msdn lib(http://msdn.microsoft.com/library/default.asp?url=/library/en-us/seccrypto/security/viewing_the_certificate_services_database.asp) does not seem to work. Or maybe i can't understand what the realy mean...
    certadm.dll doesn't provide class implementation for IEnumCERTVIEWROW, IEnumCERTVIEWATTRIBUTE and IEnumCERTVIEWEXTENTION. Interface is an abstract entity as far as i know. (Unfortunately i don't know much...) So, how can one (as "ICertView::OpenView creates a IEnumCERTVIEWROW object") create an instance of an interface object with no corresponding class?
    One version of my code looks something like this:

    CERTADMINLib.IEnumCERTVIEWROW cvr;
    CERTADMINLib.IEnumCERTVIEWATTRIBUTE cva;
    CERTADMINLib.CCertViewClass CertView = new CERTADMINLib.CCertViewClass();
    CertView.OpenConnection("pcitis31.cert.cern\\CERTSubCA");
    CertView.SetTable(0);
    CertView.SetResultColumnCount(-2);
    cvr = CertView.OpenView();
    cva = cvr.EnumCertViewAttribute(0); //-here i get COMException with 0x8000ffff code (Catastrophic failure)

    Am i missing something, or am i absolutely on the wrong way?

    Examples shown in msdn are quite similar(but in vb):

    ex.1
    ' Declare the IEnumCERTVIEWROW object variable.
    Dim objRow As IEnumCERTVIEWROW

    ' Instantiate the row object.
    Set objRow = objView.OpenView

    ' Use the object as needed.
    ' When done processing, free the object.
    Set objRow = Nothing

    ex.2
    ' Initialize an IEnumCERTVIEWCOLUMN object.
    Dim objCol As IEnumCERTVIEWCOLUMN
    Set objCol = objRow.EnumCertViewColumn()
    ' Use objCol as needed.
    ' ...
    ' Free objCol when done.
    Set objCol = Nothing

    Any help, ideas are very much appreciated!

    Thanks in advance!

    Source: http://www.livejournal.com/community/csharp/29256.html

  6. Good Keywords v2

    Date: 01/01/70 (Webmaster View)    Keywords: software, web

    Good Keywords version 2.0 is released.

    Good Keywords is a free Windows software for finding the perfect set of keywords for your web pages.

    Download Good Keywords »

    Screenshot of gkw v2

    Comments

    Source: http://www.webmasterview.com/tools/good_keywords_v2

  7. email form

    Date: 05/21/05 (HTML Help)    Keywords: html, web

    I was wondering if anyone in this community knows how to make a form for collecting email. I need something for a web site that has a text box for visitors to enter their email address to receive a news letter. I can do the html part, but I don't know how to collect the data.

    Thanks!

    Source: http://www.livejournal.com/community/htmlhelp/1983666.html

  8. Stupid question

    Date: 05/21/05 (Computer Geeks)    Keywords: php, web

    Where the hell has the free version of AVG gone? I've been poking around http://www.grisoft.com/ for a full 15 minutes now, and I keep going in circles.

    Never bloody mind. I found it. http://free.grisoft.com/freeweb.php

    Boy, do I feel like a dork now...

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

  9. Fileserver question..

    Date: 05/21/05 (Computer Geeks)    Keywords: software, web, linux

    has anyone had any experience with building raid-based file servers in linux?
    I'm building one over the summer for my new student house next year, to provide storage for music, films, software etc.
    I need at least 500gb of storage, preferably more, with some sort of redundancy. I have an old P2-500 with 128mb of ram sitting about, would this be adequate for about 6 users?
    I was thinking of going down the RAID-5 path, as it provides redundancy, and a good ratio of disks to storage capacity.
    I'm considering a software-based raid controller card such as this as they are much cheaper than a hardware-based raid card such as this.
    Obviously the hardware based card would be faster, but I'm not so bothered about that, I'm more concerned with driver stability and compatability with my os of choice(gentoo)

    Also, I assume I would have to run samba on this server to provide access for the llama's im living with next year who run windows.
    Has anyone got any tips on securing samba, as I have heard it is fairly insecure, I could block internet access from the firewall, but I would like to run a web server on this box as well, would this be advisable, or would you advise running the web server on a seperate machine?

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

  10. reverse proxying --> mega slow

    Date: 05/21/05 (Apache)    Keywords: web, hosting, apache

    [Error: Irreparable invalid markup ('') in entry. Owner must fix manually. Raw contents below.]

    hello all -- i don’t know where else to ask my question, so here we go. first, background on my setup. i have two webservers on an internal network, each to be responsible for hosting a unique site. i have one public IP, and all port 80 traffic is being forwarded to a third machine running mac os x server. so obviously, there would need to be some high level packet rewriting to get these requests to the correct box via the mac os x server machine. the solution? well besides acquiring another public ip (or two), reverse proxying (right?)

    the problem at the moment is that it is slow as balls. see for yourself --> http://mczapp.darktech.org (click on a japan page). the pictures come up pretty slow. compare this to behind the firewall (http://192...), the images and pages load lightning quick. what’s the deal? is it just by virtue of reverse proxying? my friend says no, based on his experience. is it that mac os x server’s apache build is just fucked/bloated like whoa? i mean, the computer is fast enough to be doing this, too. should i do precaching (i don’t even know how to do that).

    Listen *:80
    Port 80
    NameVirtualHost *:80

    ## default virtual host ###
    # if someone gets to this server with an invalid virtualhost URL
    # it’ll default to this configuration because it’s listed first

    DocumentRoot /var/docroot
    ServerName default.mcdefaulty.com
    Options -Indexes




    ######### John’s websites #########

    DocumentRoot /var/docroot/zero.darktech.org
    ServerName zero.darktech.org
    Options -Indexes
    ErrorLog “/var/log/httpd/zero.darktech.org-error.log”
    CustomLog “/var/log/httpd/zero.darktech.org-access.log” combined

    # Proxy stuff
    ProxyRequests Off
    ProxyPass / http://192.168.0.200:1337/
    ProxyPassReverse / http://192.168.0.200:1337/



    DocumentRoot /var/docroot/mczapp.darktech.org
    ServerName mczapp.darktech.org
    Options +Indexes
    ErrorLog “/var/log/httpd/mczapp.darktech.org-error.log”
    CustomLog “/var/log/httpd/mczapp.darktech.org-access.log” combined

    # Proxy stuff
    ProxyPass / http://192.168.0.200:1338/
    ProxyPassReverse / http://192.168.0.200:1338/

    in case there is something i’m forgetting. i don’t know enough about reverse proxying to really troubleshoot, so i submit to the wisdom of the lj comm.

    thanks for your help =D

    Source: http://www.livejournal.com/community/apache/19923.html

  11. CSS in IE6???

    Date: 05/22/05 (Web Development)    Keywords: css, html, java, web

    I just tried setting up my first website. I'm not a professional, but I am trying to teach myself about web development. I set up this website by creating .htm docutments in Dreamweaver. I wrote out all the code myself and didnt really use any of Dreamweaver's features.

    So far I've only been able to test it in IE6 and AOL (using IE6). In both, I recieve error messages telling me that AOL or IE6 must close due to an error. I predefined the window size using a javascript, but in AOL the size comes up incorrectly. With or without this resizing script, the error messages still occur, and AOL/IE6 needs to close. Here is the site. (BTW, this site is only meant for family and friends...these bags are not for sale to the general public.)

    I've been researching this, and read that IE6 can have some doctype issues. The doctype on all of my pages is this: !DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN", and shouldnt cause any problems.

    What is the best solution? I ljcut my CSS code below. Is the syntax wrong, or not strict enough, so that it's causing errors? If I want my page to be universally viewed, should I not be using CSS? I had heard that using frames is outdated, and I really like the control CSS gives me over everything on the page.

    Thanks for any and all help!!! It will be very much appreciated! (I apologize for any x-posting.)


    All of the below code is formatted correctly on the actual page. The syntax is correct, and the entire website works correctly when I test it in Internet Explorer through Dreamweaver.

    body {background: url(background_image.jpg) fixed; scroll: no}

    p {color: red}

    p.white {background-color: white}

    p.topmenu {background-color: white; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 14;

    line-height: 15pt; border-style: dotted; border-width: 4px; border-color: red;

    position: absolute; left: 20px; top: 100px; width: 100px; text-align: center}

    p.menu {background-color: white; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 14;

    line-height: 15pt; border-style: dotted; border-width: 4px; border-color: red;

    position: relative; left: 30px; top: 5px; width: 120px; text-align: center}

    p.main {font-family: Verdana, Arial, Helvetica, sans-serif; background-color: white; font-size: 13;

    line-height: 13pt; font-weight: bold; position: absolute; left: 220px; top: 20px; height: 500;

    width: 420; border-style: dotted; border-width: 4px; border-color: red}

    p.title {background-color: white; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 14;

    line-height: 15pt; border-style: dotted; border-width: 4px; border-color: red;

    position: relative; left: 10px; top: 5px; width: 120px; text-align: center}



    p.lower_right_image {position: absolute; left: 510px; top: 340px}

    p.image2 {position: absolute; left: 260px; top: 360px}

    p.thumb {position: absolute; left: 230px; top: 30px}



    a:link {text-decoration: none; color: black; border: 0}

    a:active {text-decoration: none; color: black}

    a:visited {text-decoration: none; color: black}

    a:hover{text-decoration: none; color: red}

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

  12. CSS in IE6???

    Date: 05/22/05 (WebDesign)    Keywords: css, html, java, web

    I just tried setting up my first website. I'm not a professional, but I am trying to teach myself about web development. I set up this website by creating .htm docutments in Dreamweaver. I wrote out all the code myself and didnt really use any of Dreamweaver's features.

    So far I've only been able to test it in IE6 and AOL (using IE6). In both, I recieve error messages telling me that AOL or IE6 must close due to an error. I predefined the window size using a javascript, but in AOL the size comes up incorrectly. With or without this resizing script, the error messages still occur, and AOL/IE6 needs to close. Here is the site. (BTW, this site is only meant for family and friends...these bags are not for sale to the general public.)

    I've been researching this, and read that IE6 can have some doctype issues. The doctype on all of my pages is this: !DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN", and shouldnt cause any problems.

    What is the best solution? I ljcut my CSS code below. Is the syntax wrong, or not strict enough, so that it's causing errors? If I want my page to be universally viewed, should I not be using CSS? I had heard that using frames is outdated, and I really like the control CSS gives me over everything on the page.

    Thanks for any and all help!!! It will be very much appreciated! (I apologize for any x-posting.)


    All of the below code is formatted correctly on the actual page. The syntax is correct, and the entire website works correctly when I test it in Internet Explorer through Dreamweaver.

    body {background: url(background_image.jpg) fixed; scroll: no}

    p {color: red}

    p.white {background-color: white}

    p.topmenu {background-color: white; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 14;

    line-height: 15pt; border-style: dotted; border-width: 4px; border-color: red;

    position: absolute; left: 20px; top: 100px; width: 100px; text-align: center}

    p.menu {background-color: white; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 14;

    line-height: 15pt; border-style: dotted; border-width: 4px; border-color: red;

    position: relative; left: 30px; top: 5px; width: 120px; text-align: center}

    p.main {font-family: Verdana, Arial, Helvetica, sans-serif; background-color: white; font-size: 13;

    line-height: 13pt; font-weight: bold; position: absolute; left: 220px; top: 20px; height: 500;

    width: 420; border-style: dotted; border-width: 4px; border-color: red}

    p.title {background-color: white; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 14;

    line-height: 15pt; border-style: dotted; border-width: 4px; border-color: red;

    position: relative; left: 10px; top: 5px; width: 120px; text-align: center}



    p.lower_right_image {position: absolute; left: 510px; top: 340px}

    p.image2 {position: absolute; left: 260px; top: 360px}

    p.thumb {position: absolute; left: 230px; top: 30px}



    a:link {text-decoration: none; color: black; border: 0}

    a:active {text-decoration: none; color: black}

    a:visited {text-decoration: none; color: black}

    a:hover{text-decoration: none; color: red}

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

  13. Programming language?

    Date: 05/22/05 (Computer Geeks)    Keywords: programming, java, web

    I'm interested in learning a programming language, and have been recommended to start with everything from Visual BASIC to Java to even just jumping right into C++. What I want to do is write a program where I can inpute information taken from the NASA website regarding star coordinates, velocities, etc., and be able to enter the information into the program and have the program compute the necessary calculations to yield the result that I want (rather than having to do the calculations by hand). What progamming language would you suggest for such a task as this?

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

  14. Embedding LJ into my website...

    Date: 05/23/05 (WebDesign)    Keywords: web

    I need some help in embedding LJ into my website. I would like to just get the entries, with no formatting, to appear where I want in a page. I've used the iframe method before and it works okay, but you still see all the formatting LJ puts in, and I don't want that...

    Any help would be greatly appreciated.

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

  15. SOS

    Date: 05/23/05 (WebDesign)    Keywords: web, spam

    Web-designer wanted.


    I'm looking for a web-designer who can construct a personal website. This site will have some member only areas and may even turn into a pay-to-view site. Pay is negotiable. I need someone reliable and talented in photoshop. For more information please send an email to summerinmalibu@aol.com. Do put something pertaining to 'live journal' in the header as to distract my spam eater. ;) Also, linking your work may help me reply to you quicker.

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

  16. Out of Ideas

    Date: 05/23/05 (See my site)    Keywords: web

    Hey everyone,

    I have a website here:

    http://www.batalie.com/

    I am running out of ideas on how to make it look cool, or interesting. It's really plain, no graphics.

    Any help for contents would be appreciated, or any ideas on how to promote my site better.

    Thanks,
    Natalie

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

  17. Picture This Website

    Date: 05/23/05 (See my site)    Keywords: web

        Do you enjoy taking pictures? This new photo website could be right up your alley.

        Based on some popular LiveJournal communities, Picture This has been born. In picture this, a "Word of the Week" is announced, and users will have a full week to submit pictures that they took which fall in the category of that "Word of the Week". The following week is then open for all visitors to the site to vote on their favorite picture for that week, and the picture with the most votes wins!

        For updates to Picture This (http://picturethis.scottmhoward.com/), join or befriend the community '[info]'scottswebpage, which posts weekly updates to the site including winners to Picture This, the new "Word of the Week", and any new structural developments in the site.

        And if you're not sure if Picture This is right for you, explore the rest of Scott's Webpage. Areas such as MP3 Downloads, Games, Icons, and more!

    Scott's Webpage
    http://www.scottmhoward.com/

    ~ Scott M. Howard ~
    www.scottmhoward.com
     

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

  18. Web Services Offer Growing Profit Potential

    Date: 05/23/05 (Java Web)    Keywords: software, security, web

    Offering Web Services is a potential path for solution providers away from dependence on commodity hardware and software products. With a loose definition of web services, solution providers surveyed said they felt that Web services are a major priority to businesses of all sizes. Only security edged out Web services for the No. 1 spot. The [...]

    Source: http://blog.taragana.com/index.php/archive/web-services-offer-growing-profit-potential/

  19. Web Editors Have a Great Future

    Date: 05/23/05 (Java Web)    Keywords: technology, web

    Web editors are critical to website success. They have a combination of communications, marketing and technology skills. Most of all, they know their readers inside out....

    Source: http://blog.taragana.com/index.php/archive/web-editors-have-a-great-future/

  20. UK Government in Search of CMS

    Date: 05/23/05 (Java Web)    Keywords: cms, web

    UK Government departments have begun sourcing the new 'e-Communications Infrastructure' for public sector websites that will replace DotP, the Government's short-lived £35 million ($64m) bespoke content management system (CMS). Whereas DotP was custom-written specifically for government use, the e-Communications Infrastructure… Ever wonder where the tax dollars go? Source

    Source: http://blog.taragana.com/index.php/archive/uk-government-in-search-of-cms/

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