1. It will be a miracle if someone can answer this

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

    I used to have a website bookmarked that helped me with HTML. Somehow I lost it. The only things I can remember about it are that it had an orange-ish background, and I believe the color of the print was blue. All of the different sections were in rectangular boxes on the top of the page.

    If anyone nows the site I am thinking of, I would love you forever.

    Thanks.

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

  2. Where to put .html files

    Date: 12/18/05 (Computer Geeks)    Keywords: html, web

    I have a website that I need to move. Where is a place that can host all of my pictures, plus the .html files that I have?

    Thanks.

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

  3. $_SERVER['PHP_SELF'] alternative...

    Date: 12/19/05 (PHP Community)    Keywords: php, html, security

    This forum post got me thinking more about security. (yes, that is me with a similar question there)

    http://forum.hardened-php.net/viewtopic.php?id=20

    After trying the methods in this blog post got me thinking and looking for an alternative.

    http://blog.phpdoc.info/archives/13-XSS-Woes.html

    So I started thinking of a safer way to accomplish the same thing. I was looking at the manual at http://php.net/ and came across $_SERVER['SCRIPT_FILENAME'] and did a little playing with it. I did a simple echo statement, and it returned the path for the script and nothing else, even using injection methods. Is this a good substitute for PHP_SELF? Anyone know any security issues with this superglobal? I have several scripts that use PHP_SELF, and would like a safe alternative.

    *edit*
    I just noticed I accidentally made this friends only post, so I removed that

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

  4. Using functions in classes

    Date: 12/22/05 (PHP Community)    Keywords: php, mysql, html, sql, web

    I am learning classes (trying to anyway).

    I have class called photo. It contains two functions:

    create_folder()
    sterilize_text()

    In the create_folder function I want to clean user uploaded data before creating a folder based on that data. I have a few special rules so I wanted to put this in a seperate function instead of regexing all over my pages.

    I read that using functions within functions in classes is easy, but I don't know how and the tutorial I'm using doesn't touch on using nested functions.

    So what happens is when I invoke the class and use create_function(), php exits with this:

    Fatal error: Call to undefined function: sterilize_text() in /var/www/html/includes/classes.php on line 34
    Line 34 is : $brand = sterilize_text($myrow[brand]);

    Is there a way to code this so I can use functions within functions, inside of my class? I've included the relevant scripts below.

    Thank you.


    class photo
    {
    
    	var	$model;
    
    	// mk the folder for an uploaded image.
    	function create_folder($model)
    	{
    
    		global $dbx, $dbxold;
    		if (!isnum($model)||strlen($model)>5) {return(false);}
    		
    		$q = "SELECT brand FROM spec WHERE model='$model'";
    		$result = mysql_query($q,$dbxold);
    		$myrow = mysql_fetch_array($result);
    
    		$brand = sterilize_text($myrow[brand]); 
    
    		if ($brand=="") {return(false);}
    		$webpath = "/images/dirtbikes/$brand";
    		$uploaddir = $_SERVER["DOCUMENT_ROOT"] . $webpath;
    		if (!file_exists($uploaddir)) {
    			mkdir ($uploaddir, 0777);
    			chmod($uploaddir,0777);
    			if (!file_exists($uploaddir)) {
    				echo "

    unable to create directory. :(
    "; return(false); } } $dir_array[] = $webpath; $dir_array[] = $uploaddir; return $dir_array; } function sterilize_text($text) { $hyphen = "_"; $dash = "-"; $text = strtolower($text); $text = ereg_replace('[^a-zA-Z0-9_\\,]', '', $text); $text = ereg_replace('[\\]', $dash, $text); $text = ereg_replace('[,]', $hyphen, $text); return $text; } }






    create_folder($model); 
    
    	echo "
    ";
    	print_r($dir_array);
    	echo "
    "; ?>

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

  5. Code review advice sought!

    Date: 12/29/05 (PHP Community)    Keywords: php, html, security, web, linux, apache

    Greetings all, new reader on the community here.

    I'm one of the co-administrators of a small private co-op site, and we recently had our webserver hacked. :( We're still trying to figure out why, but there is some suspicion that PHP vulnerabilities might have been the vector of attack. As a result I am planning to upgrade to the latest and greatest version of PHP, but before we go live again with that, I want to review the PHP that runs on a few sites we host and make sure that I've taken care of as many holes as reasonably possible.

    We run Debian Linux, and I've just upgraded us to Apache 2.0 as well. (We plan to upgrade to 2.2 as soon as we have a Debian package for that.) And I plan to put PHP 5.0.5 up off of backports.org.

    The questions I would like to pose to the community are:

    1) Since PHP 5.1.1 is not available in package form yet, are there any known big problems with 5.0 that might make it necessary for me to build 5.1.1 by hand?

    2) I've been reading up in the Security chapter of the docs on php.net, as well as the SecurePHP wiki, and have come up with a list of things I know I'd like to look at. Can anyone recommend things besides these items that I ought to look at?

    - Use .htaccess to control who gets to look at source code
    - Take sensitive data, e.g., passwords, out of public web space
    - Verify that register_globals is OFF
    - Validate all user data
    - Initialize variables
    - Turn off magic quotes
    - Use addslashes and stripslashes as needed
    - Set expose_php = off in php.ini
    - Log errors out to files not in public space rather than displaying them on the page
    - Use $_POST, $_GET, $_COOKIE, and $_SESSION for global variables
    - Use htmlspecialchars() for hidden form values
    - For URL stuff, use both htmlspecialchars() AND urlencode(); the latter should be for specific variables in the URL, and the former for the entire URL

    Thank you very much in advance for any pointers!

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

  6. Outlook

    Date: 12/30/05 (Computer Help)    Keywords: html

    Outlook automatically replies in text format if the original message is text which is fair enough. Is there anyway I can permanently forward in html even if the original message is in text? Is there a place in settings to override that function?

    Source: http://www.livejournal.com/community/computer_help/555545.html

  7. syntax error

    Date: 12/31/05 (PHP Community)    Keywords: php, mysql, html, sql

    Ok, I'm being slowly driven nuts by this. There is a syntax error and whatever it is, my eyes are just sliding right past it each time. If anyone can spot it I will be eternally grateful. The error is "
    Parse error: parse error, unexpected ';' in /home/remove/public_html/test/root/admin_functions.php on line 35"

    I have marked the line 35 in red.

    If anyone can think of a better way of doing this (while your here) that would be great. It takes tags much like you would set for an LJ entry, splits them up and then checks the tags table for them, if they aren’t there it then adds them. Then for each tag, it sets up a map in the maptag table which links the page_id to the tag id (the tag id in the tags table is set in an auto_increment, so it have to run yet another query to find this out).

    It doesn’t have to be too fast though, its only admin.

    function update_tags($page_id, $tags_string)
    {
    $tag_array = explode(',', $tags_string, -1);
    $count = count($tag_array);
    for ($i = 0; $i < $count; $i++)
    {
    $update_tags_query = "SELECT `id` FROM `tags` WHERE `name` = '" . $tag_array[$i] . "'";
    $update_tags_result = mysql_query($update_tags_query) or die('update tags query failed: ' . mysql_error());
    if(mysql_num_rows($update_tags_result)==0)
    {
    //add entry to tags table
    $tag_update_query = "INSERT INTO tags (name) VALUES ('" . $tag_array[$i] . "')";
    mysql_query($tag_update_query) or die('tag update query failed: ' . mysql_error());

    //then find out the new tags id
    $tags_query = "SELECT `id` FROM `tags` WHERE `name` = '" . $tag_array[$i] . "'";
    $tags_result = mysql_query($tags_query) or die('tags query failed: ' . mysql_error());
    $tags_array = mysql_fetch_array($tags_result);

    //then add to the maptag table
    $maptag_update_query = "INSERT INTO maptag (contentid, tagid) VALUES (" . $page_id . ", " . $tags_array['id'] . ")";
    mysql_query($maptag_update_query) or die ('maptag update query 1 failed: ' . mysql_error());
    }else(
    //add entries to the maptag table
    $update_tags_array = mysql_fetch_array($update_tags_result);
    $maptag_update_query = "INSERT INTO maptag (contentid, tagid) VALUES (" . $page_id . ", " . $update_tags_array['id'] . ")";
    mysql_query($maptag_update_query) or die ('maptag update query 2 failed: ' . mysql_error());
    }
    }
    }

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

  8. I'm sure I'm missing something glaringly obvious here...

    Date: 01/01/06 (PHP Community)    Keywords: php, mysql, html, sql, web

    Hi all, I'm a complete and total noob to PHP and MySQL. I'm working on putting up a site/cart for a friend.

    http://www.allthingsally.com

    I'm barely dipping my toes in, I know, I'm using a pre-made cart, that self-installs, has a web-based back-end built in, and should be easier than pie.

    I've managed to get much of the changes made from the demo cart that I wanted to, and now I'm stuck. The pages are all basically built off of a single template, and it's an HTML template at that, so it should be more in my realm of expertise. Now as you can see on the page, there is a graphic/logo that should be displaying on the top, but for the life of me, I can't get it to work. I've stared at it and relinked for about 4 hours now, and I'm getting no-where. Any help/ideas would be swell.

    If this is too vague, or doesn't make any sense, just let me know and I'll elaborate any way I can. I'm sorry if this is beyond stupid.

    Thanks in advance.

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

  9. [SOLVED] Dynamic HTML issue

    Date: 01/02/06 (Javascript Community)    Keywords: php, css, html, xml, java, web

    Hey Guys,

    I have a website i am working on

    http://dev.jamesmandrews.com/

    It's one html file. index.php (not really php just html in a php ext file)
    http://dev.jamesmandrews.com/index.php

    Then one javascript file
    http://dev.jamesmandrews.com/includes/control.js

    And an XML data file
    http://dev.jamesmandrews.com/data/portfolio.xml

    Basically when in Safari and Firefox it does what it's suppose to. When you click on portfolio it builds a grid of album categories, when you click on a category it builds a grid of albums for that category, when you click on the album it builds a grid of images in that album. when you click on the image, it displays the full image alone.

    The problem in IE is that it doesn't listen to my divObj.style.cssFloat="left"; command and I don't understand why not. Looking for some insight.

    Thanks,

    Source: http://www.livejournal.com/community/javascript/89322.html

  10. File upload control issues with ASP.NET (playing with fire)

    Date: 01/03/06 (C Sharp)    Keywords: html, asp, security, web

    Heya all, I'm working on a web-based application (using ASP.NET and C# on .NET 1.1.4322, supporting only IE6 for Windows) that allows for file uploads. It seems to be a universally agreed that the file upload control is as ugly as they come, so I want to set its style to "display: none;" and interact only with the standard file upload dialog (which can be summoned by firing the click() method of the control, which is exposed under IE6 but not recent versions of Mozilla).

    Attempting programmatic access of a file upload control is generally playing with fire, and this time is apparently no exception. Once I call the click() method, it seems, the page is no longer able to post back. When I attempt to submit the form, the value of the file upload control is cleared and the page just sits there. However, if I make the file upload control visible and manually click its "Browse..." button, the page posts back correctly.

    For those of you familiar with Gmail's attachment upload interface, this is very close to the effect I am trying to achieve, but something about ASP.NET is apparently interfering (perhaps for my own protection) with the process. Has anybody experienced similar behavior under the same platform, and if so, explain the behavior or point to a KB article or security documentation that might be enlightening ? Thanks greatly for your time. Toy code can be found after the cut.



    Codeahead:

    <%@ Page language="c#" Codebehind="Foo.aspx.cs" AutoEventWireup="false" Inherits="FooApp.Foo" %>
    
    
    
    
    

    Postback info:
    Codebehind:
    
    using System;
    using System.Collections;
    using System.ComponentModel;
    using System.Data;
    using System.Drawing;
    using System.Web;
    using System.Web.SessionState;
    using System.Web.UI;
    using System.Web.UI.WebControls;
    using System.Web.UI.HtmlControls;
    
    namespace FooApp
    {
    	public class Foo : System.Web.UI.Page
    	{
    		protected HtmlInputFile f;
    		protected HtmlGenericControl s;
    
    		private void Page_Load(object sender, System.EventArgs e)
    		{
    			if (this.IsPostBack)
    			{
    				s.InnerText = String.Format("{0} file(s) posted", Request.Files.Count);
    				if (1 == Request.Files.Count) { s.InnerText += String.Format(", content length: {0}", Request.Files[0].ContentLength); }
    			}
    		}
    
    		override protected void OnInit(EventArgs e)
    		{
    			InitializeComponent();
    			base.OnInit(e);
    		}
    	
    		private void InitializeComponent()
    		{    
    			this.Load += new System.EventHandler(this.Page_Load);
    		}
    	}
    }
    
    

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

  11. virtual hosting

    Date: 01/03/06 (IT Professionals)    Keywords: html, web, hosting, google

    I need some iis help here. (or meta refresh/redirect?)

    I'm not a web guy by trade, but this thing falls on my lap anyway.

    --
    ok: I just did a domain transfer of mydomainB.com from some china registrar to godaddy.com

    godaddy.com doesn't seem to have URL forwarding, only domain forwarding and A and Cnames, mx

    (as opposed to the one i use for my own private domain www.domainbooking.com)

    I just turned on domain forwarding to point to mydomainA.com/mywebsite but I'm not sure if it will corrupt the mx entries for mail. (which should point to mail.mydomainB.com , in turn A for mail.mydomainB.com = 12.34.56.78)

    assuming it does and I reverse the domain forwarding.
    then what I have is that my current A for www.mydomainA.com = 11.22.33.44
    and my new A for www.mydomainB.com points to 11.22.33.44 as well

    but they are supposed to be two distinct websites.

    so I need to redirect by url? perhaps on my index.html. those that originate from www.mydomainA.com proceed to index1.html and those from www.mydomainB.com proceed to 11.22.33.44/mywebsite/index.html

    I think this falls under the category of virtual hosting, i've been searching google for bit with not much luck.
    I'm not sure host headers work for wan/internet domain names, and godaddy/A addressing doesn't quite allow you to specify port numbers either.

    to add to the complication, the website is also hosting an exchange outloook mobile access site. so http://www.mydomainA.com/exchange should be accessible.

    so how do I do this?

    Source: http://www.livejournal.com/community/itprofessionals/31972.html

  12. Windows XP

    Date: 01/04/06 (Computer Help)    Keywords: cms, software, browser, html, java, web, spyware, yahoo, microsoft, google

    I've ran Spybot - Search & Destroy and Lavasoft Adaware aswell as a cleaning all my temp files and cookies etc... but I still get these random popups, many saying POWERED BY ZEDO. Any suggestions?

    Logfile of HijackThis v1.99.1
    Scan saved at 5:27:55 PM, on 1/3/2006
    Platform: Windows XP SP2 (WinNT 5.01.2600)
    MSIE: Internet Explorer v6.00 SP2 (6.00.2900.2180)

    Running processes:
    C:\WINDOWS\System32\smss.exe
    C:\WINDOWS\system32\winlogon.exe
    C:\WINDOWS\system32\services.exe
    C:\WINDOWS\system32\lsass.exe
    C:\WINDOWS\system32\svchost.exe
    C:\WINDOWS\System32\svchost.exe
    C:\WINDOWS\system32\spoolsv.exe
    C:\WINDOWS\Explorer.EXE
    C:\WINDOWS\system32\spool\drivers\w32x86\3\hpztsb05.exe
    C:\WINDOWS\system32\hphmon04.exe
    C:\Program Files\Hewlett-Packard\HP Share-to-Web\hpgs2wnd.exe
    C:\Program Files\Adaptec\Easy CD Creator 5\DirectCD\DirectCD.exe
    C:\WINDOWS\SOUNDMAN.EXE
    C:\Program Files\Hewlett-Packard\HP Share-to-Web\hpgs2wnf.exe
    C:\Program Files\Common Files\Real\Update_OB\realsched.exe
    C:\Program Files\Java\jre1.5.0_06\bin\jusched.exe
    E:\programs\Quicktime\qttask.exe
    C:\WINDOWS\system32\drivers\KodakCCS.exe
    C:\WINDOWS\System32\svchost.exe
    C:\Program Files\Network\network.exe
    E:\Programs\Winamp\winampa.exe
    E:\Programs\AIM\aim.exe
    C:\Program Files\Kodak\Kodak EasyShare software\bin\EasyShare.exe
    C:\Program Files\Kodak\KODAK Software Updater\7288971\Program\Kodak Software Updater.exe
    C:\Program Files\LiveJournal\LiveJournal.exe
    C:\Program Files\SpywareGuard\sgmain.exe
    C:\Program Files\SpywareGuard\sgbhp.exe
    E:\Programs\AIM\aim.exe
    E:\Programs\Winamp\winamp.exe
    C:\Program Files\HijackThis\HijackThis.exe

    R0 - HKCU\Software\Microsoft\Internet Explorer\Main,Start Page = http://mail.yahoo.com/
    R0 - HKLM\Software\Microsoft\Internet Explorer\Search,SearchAssistant =
    R0 - HKCU\Software\Microsoft\Internet Explorer\Main,Local Page = C:\WINDOWS\about.htm
    R1 - HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings,ProxyServer =
    R1 - HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings,ProxyOverride = localhost
    R3 - URLSearchHook: (no name) - {02EE5B04-F144-47BB-83FB-A60BD91B74A9} - (no file)
    O2 - BHO: AcroIEHlprObj Class - {06849E9F-C8D7-4D59-B87D-784B7D6BE0B3} - C:\Program Files\Adobe\Acrobat 5.0\Reader\ActiveX\AcroIEHelper.ocx
    O2 - BHO: SpywareGuardDLBLOCK.CBrowserHelper - {4A368E80-174F-4872-96B5-0B27DDD11DB2} - C:\Program Files\SpywareGuard\dlprotect.dll
    O2 - BHO: (no name) - {53707962-6F74-2D53-2644-206D7942484F} - E:\Programs\SPYBOT~1\SDHelper.dll
    O2 - BHO: (no name) - {5C8B2A36-3DB1-42A4-A3CB-D426709BBFEB} - (no file)
    O3 - Toolbar: &Google - {2318C2B1-4965-11d4-9B18-009027A5CD4F} - c:\program files\google\googletoolbar1.dll
    O4 - HKLM\..\Run: [HPDJ Taskbar Utility] C:\WINDOWS\system32\spool\drivers\w32x86\3\hpztsb05.exe
    O4 - HKLM\..\Run: [HPHmon04] C:\WINDOWS\system32\hphmon04.exe
    O4 - HKLM\..\Run: [HPHUPD04] "C:\Program Files\HP Photosmart 11\hphinstall\UniPatch\hphupd04.exe"
    O4 - HKLM\..\Run: [Share-to-Web Namespace Daemon] C:\Program Files\Hewlett-Packard\HP Share-to-Web\hpgs2wnd.exe
    O4 - HKLM\..\Run: [AdaptecDirectCD] "C:\Program Files\Adaptec\Easy CD Creator 5\DirectCD\DirectCD.exe"
    O4 - HKLM\..\Run: [SoundMan] SOUNDMAN.EXE
    O4 - HKLM\..\Run: [WorksFUD] C:\Program Files\Microsoft Works\wkfud.exe
    O4 - HKLM\..\Run: [Microsoft Works Portfolio] C:\Program Files\Microsoft Works\WksSb.exe /AllUsers
    O4 - HKLM\..\Run: [Microsoft Works Update Detection] C:\Program Files\Microsoft Works\WkDetect.exe
    O4 - HKLM\..\Run: [TkBellExe] "C:\Program Files\Common Files\Real\Update_OB\realsched.exe" -osboot
    O4 - HKLM\..\Run: [SunJavaUpdateSched] C:\Program Files\Java\jre1.5.0_06\bin\jusched.exe
    O4 - HKLM\..\Run: [DeadAIM] rundll32.exe "E:\Programs\AIM\\DeadAIM.ocm",ExportedCheckODLs
    O4 - HKLM\..\Run: [QuickTime Task] "E:\programs\Quicktime\qttask.exe" -atboottime
    O4 - HKLM\..\Run: [BootSkin Startup Jobs] "C:\Program Files\Stardock\WinCustomize\BootSkin\BootSkin.exe" /StartupJobs
    O4 - HKLM\..\Run: [CorelDRAW Graphics Suite 11b] C:\Program Files\Corel\Corel Graphics 12\Languages\EN\Programs\Registration.exe /title="CorelDRAW Graphics Suite 12" /date=120205 serial=DR12WEX-1504397-KTY lang=EN
    O4 - HKLM\..\Run: [Network] C:\Program Files\Network\network.exe
    O4 - HKLM\..\Run: [WinampAgent] E:\Programs\Winamp\winampa.exe
    O4 - HKLM\..\Run: [] winlog.exe
    O4 - HKLM\..\RunServices: [] winlog.exe
    O4 - HKCU\..\Run: [AIM] E:\Programs\AIM\aim.exe -cnetwait.odl
    O4 - HKCU\..\Run: [iufm] C:\PROGRA~1\COMMON~1\iufm\iufmm.exe
    O4 - HKCU\..\Run: [Semagic] C:\Program Files\Semagic\LiveJournalU.exe
    O4 - Startup: LiveJournal.lnk = C:\Program Files\LiveJournal\LiveJournal.exe
    O4 - Startup: SpywareGuard.lnk = C:\Program Files\SpywareGuard\sgmain.exe
    O4 - Global Startup: Kodak EasyShare software.lnk = C:\Program Files\Kodak\Kodak EasyShare software\bin\EasyShare.exe
    O4 - Global Startup: Kodak software updater.lnk = C:\Program Files\Kodak\KODAK Software Updater\7288971\Program\Kodak Software Updater.exe
    O4 - Global Startup: Microsoft Office.lnk = C:\Program Files\Microsoft Office\Office\OSA9.EXE
    O8 - Extra context menu item: &Google Search - res://c:\program files\google\GoogleToolbar1.dll/cmsearch.html
    O8 - Extra context menu item: &Translate English Word - res://c:\program files\google\GoogleToolbar1.dll/cmwordtrans.html
    O8 - Extra context menu item: Backward Links - res://c:\program files\google\GoogleToolbar1.dll/cmbacklinks.html
    O8 - Extra context menu item: Cached Snapshot of Page - res://c:\program files\google\GoogleToolbar1.dll/cmcache.html
    O8 - Extra context menu item: Copy to Semagic - C:\Program Files\Semagic\copy.htm
    O8 - Extra context menu item: E&xport to Microsoft Excel - res://C:\PROGRA~1\MICROS~4\OFFICE11\EXCEL.EXE/3000
    O8 - Extra context menu item: Semagic - C:\Program Files\Semagic\link.htm
    O8 - Extra context menu item: Similar Pages - res://c:\program files\google\GoogleToolbar1.dll/cmsimilar.html
    O8 - Extra context menu item: Translate Page into English - res://c:\program files\google\GoogleToolbar1.dll/cmtrans.html
    O9 - Extra button: (no name) - {08B0E5C0-4FCB-11CF-AAA5-00401C608501} - C:\Program Files\Java\jre1.5.0_06\bin\npjpi150_06.dll
    O9 - Extra 'Tools' menuitem: Sun Java Console - {08B0E5C0-4FCB-11CF-AAA5-00401C608501} - C:\Program Files\Java\jre1.5.0_06\bin\npjpi150_06.dll
    O9 - Extra button: Research - {92780B25-18CC-41C8-B9BE-3C9C571A8263} - C:\PROGRA~1\MICROS~4\OFFICE11\REFIEBAR.DLL
    O9 - Extra button: AIM - {AC9E2541-2814-11d5-BC6D-00B0D0A1DE45} - E:\Programs\AIM\aim.exe
    O12 - Plugin for .spop: C:\Program Files\Internet Explorer\Plugins\NPDocBox.dll
    O16 - DPF: {04E214E5-63AF-4236-83C6-A7ADCBF9BD02} (HouseCall Control) - http://housecall60.trendmicro.com/housecall/xscan60.cab
    O16 - DPF: {17492023-C23A-453E-A040-C7C580BBF700} (Windows Genuine Advantage) - http://go.microsoft.com/fwlink/?linkid=36467&clcid=0x409
    O16 - DPF: {39B0684F-D7BF-4743-B050-FDC3F48F7E3B} (FilePlanet Download Control Class) - http://www.fileplanet.com/fpdlmgr/cabs/FPDC_1_0_0_44.cab
    O16 - DPF: {6414512B-B978-451D-A0D8-FCFDF33E833C} (WUWebControl Class) - http://v5.windowsupdate.microsoft.com/v5consumer/V5Controls/en/x86/client/wuweb_site.cab?1106105469611
    O16 - DPF: {DF780F87-FF2B-4DF8-92D0-73DB16A1543A} (PopCapLoader Object) - http://download.games.yahoo.com/games/web_games/popcap/bejeweled2/popcaploader_v6.cab
    O23 - Service: Adobe LM Service - Unknown owner - C:\Program Files\Common Files\Adobe Systems Shared\Service\Adobelmsvc.exe
    O23 - Service: Command Service (cmdService) - Unknown owner - C:\WINDOWS\Q2FybHk\command.exe (file missing)
    O23 - Service: InstallDriver Table Manager (IDriverT) - Macrovision Corporation - C:\Program Files\Common Files\InstallShield\Driver\11\Intel 32\IDriverT.exe
    O23 - Service: IMAPI CD-Burning COM Service (ImapiService) - Roxio Inc. - C:\WINDOWS\system32\ImapiRox.exe
    O23 - Service: Kodak Camera Connection Software (KodakCCS) - Eastman Kodak Company - C:\WINDOWS\system32\drivers\KodakCCS.exe
    O23 - Service: Macromedia Licensing Service - Unknown owner - C:\Program Files\Common Files\Macromedia Shared\Service\Macromedia Licensing.exe
    O23 - Service: Pml Driver HPH11 - HP - C:\WINDOWS\system32\HPHipm11.exe








    Advertisement







    Source: http://www.livejournal.com/community/computer_help/559247.html

  13. people here have discussed it

    Date: 01/03/06 (Computer Geeks)    Keywords: html

    so, justice is done. well, ok, not really...

    http://www.pcpro.co.uk/news/81859/sony-settles-over-dodgy-drm-fallout.html

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

  14. Client Survey quesitions.

    Date: 01/05/06 (WebDesign)    Keywords: cms, software, html, database, web, hosting

    Hey all. I'm in the process of creating a client/project survey to give to clients. Right now I'm focusing on web and html/text email blasts. Does anyone have any good references to this stuff already. I had a few, but can't find them in my infinite number of bookmarks {that's next on the list}. If you can, please review the questions I wrote below and tell me what's crap and what's gold or if I missed anything. Also, do you think this is too long to give a client? I've seen them usually be 10 questions or so long. Please look at the sections as two different ones that I may or may not give to clients. Thanks so much.

    x-posted in '[info]'design, '[info]'webdesign, '[info]'designrants, '[info]'graphicdesign

    WEB SITES

    Figuring Out What You Need:

    1. What is the Main Purpose or Goal of the site?

    2. Is this a new web project/presence or a redesign?
    a.) If it’s a redesign, what are the good and bad parts of your current site?
    b.) Will the content be the same / How will it differ? Is it ready or does it need editing?

    3. Who is your main audience and user base?

    4. Do you want Flash for your site? If yes, please explain the desired implementation.

    5. How many and what kind of pages does the site need? Please be as specific as possible.

    6. Are there any special functions of the site? Ex: User info submission forms; e-commerce/take payments; etc.

    7. Name some competitors’ sites or sites you like and why.

    8. What are the short term and long term project timelines?


    Management/Maintenance:

    9. How often does the site need updating?

    10. Who will be doing the updates? Will the person require training?

    11. What existing technologies do you have to support the site? Ex: Is there already web hosting and domain name registration in place? Does the site have a database installed yet? Proper software & hardware for updating the site?

    12. Will a Content Management System {CMS} benefit your organization?


    The Big Picture:

    13. What is a realistic length of time for your company to complete this project?

    14. What is your company’s budget for this particular project?



    HTML/TEXT EMAIL BLASTS


    1. How many emails per month? How many email addresses in each blast?

    2. Who is your user base? Will there be different newsletters for different audiences?

    3. Who creates the content?

    4. Is there already a system in place for this?

    5. What is the budget and timeline for each email blast?

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

  15. File Serving

    Date: 01/06/06 (PHP Community)    Keywords: php, mysql, html, sql, web

    So what is the best way to serve documents (DOC PDF Images, other…) from a location outside of your public html directory?

    I thought about using mysql and the LONGBLOB attribute.

    But surely there must be a way to simply store the files and use php to retrieve them????
    (I’ve done more web searching than I care to admit)

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

  16. help!! annoying security prompts

    Date: 01/06/06 (Computer Help)    Keywords: html, security, ebay

    I run: windows 98 SE, IE 6.0

    For some reason, just today, when I log into sites, I can't STAY logged in, and I get annoying security certifcate prompts everytime I go to ebay and gmail ..

    I can't access the 'standard' view of gmail, and the 'html' version of gmail wont let me delete messages.

    I looked in my internet options >> advanced tab, and 'warn about invalid site certifates' is UNCHECKED, (I never had it checked in the first place, nor did I change any security settings to make it this way, so I have no idea what is going on.)

    I cleared ALL cookies, my cache, my temp internet files, ran hijackthis, and spybot, and nothing showed any problems or fixed anything.

    wtf is going on?

    thanks alot for your help.

    Source: http://www.livejournal.com/community/computer_help/561595.html

  17. Questions and first post here.

    Date: 01/08/06 (WebDesign)    Keywords: html

    How do you do an email page like this?
    http://www.shardcore.org/contact/index.html

    And a picture page like this:
    http://www.elisabet.com/

    thanks! Also, if anyone is up to helping me design my site please let me know.

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

  18. Hypothetical Pricing Question

    Date: 01/09/06 (WebDesign)    Keywords: html, web

    "If you had a the money, and wanted someone to make you a webpage with five pages of content, minimal serverside stuff, and a bit of spiffy DHTML on the clientside, how much would you be willing to pay?"

    I ask this, and will also give a bit of background on why. I'm starting up a part-time on the side webdesign studio with two other people. Between the three of us we have a lot of experience and each of us specializes in a different area; graphics, serverside code, and dynamic clientside code.

    I'd like to know what any of you would be willing to pay as a lower-end figure (I do not however, plan to partake in 'bidding' wars to get a client) for a non-corporate page, and a corporate page.

    Many thanks in advance!



    ***EDIT***
    I should of mentioned, I have read the past articles about pricing by the hour, but I would like to have a nice figure for a base price for that kind of site. A friend of mine suggested something in the range of $300-$500, this including 2 months of 'customer support', basically helping the user to update their site/set them up with FTP, or fix minor bugs (read: limited warranty).

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

  19. php frameworks and such

    Date: 01/09/06 (PHP Community)    Keywords: cms, php, html, database, security, web

    Hey all,

    I know there's been a couple posts about this recently, so if I'm asking redundant questions, sorry.

    A friend of mine has come up with a pretty novel idea for a MySpace-ish site, but for a specific niche market (kind of like those CatSpace and DogSpaces that exist) - users will have profiles, photos, a blog, message boards, send friend requests, yadda yadda yadda, you've seen it all before. I'm going to be developing the initial setup myself (since we have no money), and this is a somewhat long term project that I'll be picking at casually for a little while.

    Right now I'm trying to figure out if I should give this a go coding from scratch, or use an existing CMS type solution (like Mambo, Joomla, Drupal, etc). I'd really like to code it myself, as I think it could be a fun project to work on. I'm a pretty solid PHP programmer, but as I have a feeling that this idea could jump in popularity pretty quick, I really want to make sure I keep this thing as efficient as possible for a large user base. For instance, I don't want to go making another MySpace which I think runs horribly as a web app compared to even LiveJournal.

    Currently I use PEAR's DB_DataObject or my database interactions and I've just gotten into Smarty for templating, though I'm sure I'm not using either to their fullest potential. I saw mention of a couple of development environments and frameworks in someone's recent post looking for a visual studio-esque PHP environment - http://www.livejournal.com/community/php/388602.html but I've never used any of these.

    I'm not really concerned here with using a "rapid development" framework - I don't mind coding, I like it - but what I'm really concerned with is stability, efficiency and security - I know of course that these also rely heavily on how well I code, and using a good coding environment or framework won't do the coding for me, but there have to be some tools/frameworks/etc out there that pros are using that I just haven't moved onto yet, and I wanted to see what you guys (and gals) are using on some of your bigger projects.


    - I know this comes up a bunch, but does anyone else think would it be handy at all for us as a community to maybe organize some of the more useful threads and frequently asked (and answered) questions in the php community at a separate location? Doing just a search on the community doesn't necessarily give you anything about the quality of the responses, and it may even be nice to be able to 'browse' solutions/posts by categories or something; maybe we could have some sort of quality ranking on posts, or some way to identify posts that contain questions that get asked all the time. I don't think this would be too tricky to put together, and I'd be willing to work on it, but I don't know if anyone would even use it?

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

  20. Photo Gallery

    Date: 01/09/06 (PHP Community)    Keywords: php, templates, mysql, css, html, sql, java, spam

    I've been hunting all around for a decent photo gallery. There seem to be quite a few different projects, some of which are still active, available. None of them seem to accomplish what I'm looking for, though. I have tested quite a few, but all are lacking. To this end, I thought I'd ask here if anyone has anything similar to what I've been looking for.

    Major Features:
    Abstracts image URLs - hides the path and filename to prevent direct access
    Public/private flags - allows some images to stay hidden
    Tags - I'd like to be able to tag the images ala del.icio.us, LJ, Flickr
    Does not require gd - auto-thumbnails and watermarks can be disabled
    Traverses directories - new images can be dropped in a subfolder or the root image folder and will be picked up automatically
    Comments - allows for public (configurable) or private comments, either ties into phpbb or uses some sort of email validation/captcha scheme to reduce spam
    EXIF - extracts all image data form the photographs and can display it
    Uses simple cacheable CSS/XHTML templates
    Does not store images in DB
    Uses MySQL or abstraction layer that allows MySQL for comments, tags, etc
    Takes reasonable measures to be secure and speedy

    Minor Features:
    Users can upload images
    Temporary/expiring image URLs for sharing
    Hotlinking configuration - allow all, deny all, allow specific sites
    User-switchable templates
    Javascript navigation and image pop-ups optional
    Keeps stats on a pre image basis - top keywords, views, etc
    All images can be watermarked automatically
    Thumbnails may be re-generated automatically
    Can assign/rename/describe multiple photos at once

    I'm sure there are more details, but that should give a start. The scripts I've found so far are either too simple and don't have many features or too complex and require components and methods of use that I won't be using. There are a few others that store the images in the DB, which is something I'm definately against. I want to be able to FTP a directory of images and know that it will be online and ready to go as soon as the transfer is complete, or that it takes a simple click to do a rescan so they are available.

    If I have to, I'll start from scratch... I was just hoping that there would be something available that I have not yet found that could serve as a foundation to build from.

    Thanks

    Source: http://www.livejournal.com/community/php/392436.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