Trouble building login system

Perhaps this questions is best posed to David Powers, but I'm having some problems with my login system for a site that I'm building with the assistance of "The Essential Guide To Dreamweaver CS4".
I believe that I have followed his instructions, but when I login using a valid username and password entered into my "users" table in my database, I get redirected to the failed login page.
I'm using encrypted passwords, and I believe that I have encrypted the password for the login attempt so that it should match the encrypted password in my table.
Below is the code for my login page:
<?php require_once('../Connections/aibAdmin.php'); ?>
<?php
if (isset($_POST['password'])) {
    $_POST['password'] = sha1($_POST['password']);
if (!function_exists("GetSQLValueString")) {
function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "")
  if (PHP_VERSION < 6) {
    $theValue = get_magic_quotes_gpc() ? stripslashes($theValue) : $theValue;
  $theValue = function_exists("mysql_real_escape_string") ? mysql_real_escape_string($theValue) : mysql_escape_string($theValue);
  switch ($theType) {
    case "text":
      $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
      break;   
    case "long":
    case "int":
      $theValue = ($theValue != "") ? intval($theValue) : "NULL";
      break;
    case "double":
      $theValue = ($theValue != "") ? doubleval($theValue) : "NULL";
      break;
    case "date":
      $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
      break;
    case "defined":
      $theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;
      break;
  return $theValue;
?>
<?php
// *** Validate request to login to this site.
if (!isset($_SESSION)) {
  session_start();
$loginFormAction = $_SERVER['PHP_SELF'];
if (isset($_GET['accesscheck'])) {
  $_SESSION['PrevUrl'] = $_GET['accesscheck'];
if (isset($_POST['username'])) {
  $loginUsername=$_POST['username'];
  $password=$_POST['password'];
  $MM_fldUserAuthorization = "content_priv";
  $MM_redirectLoginSuccess = "/admin/users/register.php";
  $MM_redirectLoginFailed = "/admin/login.php";
  $MM_redirecttoReferrer = true;
  mysql_select_db($database_aibAdmin, $aibAdmin);
  $LoginRS__query=sprintf("SELECT username, password, content_priv FROM users WHERE username=%s AND password=%s",
  GetSQLValueString($loginUsername, "text"), GetSQLValueString($password, "text"));
  $LoginRS = mysql_query($LoginRS__query, $aibAdmin) or die(mysql_error());
  $loginFoundUser = mysql_num_rows($LoginRS);
  if ($loginFoundUser) {
    $loginStrGroup  = mysql_result($LoginRS,0,'content_priv');
    //declare two session variables and assign them
    $_SESSION['MM_Username'] = $loginUsername;
    $_SESSION['MM_UserGroup'] = $loginStrGroup;        
    if (isset($_SESSION['PrevUrl']) && true) {
      $MM_redirectLoginSuccess = $_SESSION['PrevUrl'];   
    header("Location: " . $MM_redirectLoginSuccess );
  else {
    header("Location: ". $MM_redirectLoginFailed );
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Administrator Login</title>
</head>
<body>
<h1>Administrator Login</h1>
<form action="<?php echo $loginFormAction; ?>" method="POST" name="admin_login" id="adminLogin">
  <p><label for="username">Username:</label>
  <input type="text" name="username" id="username" /></p>
  <p><label for="password">Password:</label>
  <input type="password" name="password" id="password" /></p>
  <input name="submit_button" type="submit" id="submitButton" value="Log In" />
</form>
</body>
</html>
Any assistance would be greatly appreciated. I'm also eager to learn more, so if there is literature that someone might be willing to suggest, that would be most appreciated as well.
Thanks!

Proper Prior Planning Prevents Poor Performance.
Building a (close to) state of the art machine takes information and patience.
Components that worked on your previous system will not work on your new one.
The power supply must have 2 mother board connectors.
BEFORE YOU RUSH OUT TO BUY A NEW ONE ----
Make a list of what you plan on having in your new system now and 12 months from now.
Ok, got the list?
Find a post from "DANNY"
Go to the power supply capacity link
Fill it in
Buy a power supply that matches your current and future requirements.
Best of luck

Similar Messages

  • Trouble with booting system after upgrade udev= systemd

    Hi everybody,
    I have been trouble with my system since last upgrade (udev => systemd)
    My issue is something like this: https://bbs.archlinux.org/viewtopic.php?pid=1106157 but advice from this discussion doesn't work.
    When system booting, *immediately* (very fast, too fast) display login screen after start parsing hook [udev]
    Of course, i can't login - type username and i have redraw screen again on all /dev/tty* - i have no chance to type password.
    Many invalid logins suspend init for 5 minutes and allow me see display error due stop redraw screen - libpam.so.0 cannot find.
    I suspect that, partitions aren't mount (this fast login screen doesn't have even hostname). I have a 4 discs, with many partitions - mounting
    this take a some time (+- 5 secs).
    In rescuecd, i can mount all partitions and chroot. In chroot all works fine - /bin/login (i was checked authorization on all users),
    paths and pams are ok. Of course i try ,,default rescue trick'': `pacman -Suy linux udev mkinitcpio` and 'mkinitcpio -p linux' on rescuecd
    but nothing it's changed after reboot. I checking grub config, and unpack and check initramfs-linux.img - all ok.
    In my mkinitcpio.conf ofcourse i have MODULES="ext3" (for my filesystems).
    Please help.

    crab wrote:
    This may or may not be related... but I saw this message just now during an upgrade:
    (121/168) upgrading mkinitcpio [###################] 100%
    ==> If your /usr is on a separate partition, you must add the "usr" hook
    to /etc/mkinitcpio.conf and regenerate your images before rebooting
    And am wondering what the message means by if /usr is on a separate partition - separate partition to what?  /boot? / ?
    I have my /usr partition in the same partition as /  (but /boot is in a different partition)
    Logic tells me I'm safe (haven't rebooted yet), as / is "master", and anything else is a separate partition, and I have /usr on the same partition as /.
    Do you guys have separate /usr and/or /boot partitions?  As stated in first sentence this may not be related, but looks important...
    It means separate from /. So yes, you're right, you are "safe" from having to do anything with this message on your system.
    And to the other people on this thread: make sure you do have all your packages uniformly updated, including any pam-related AUR or ABS-build packages. libpam and the pam module directory (.../lib/security) were moved from /lib to /usr/lib a little while back, so make sure that anything that cares about where these may be have been updated so they aren't confused by this move.
    Last edited by ataraxia (2012-06-03 22:40:22)

  • Building login module

    Hi!
    I have a project to do in networking security. One of the moduls is building a secured login system. It suppose to be on same level like unix works. Encrypting 0 with DES like 25 times using salt+password and storing it with the username.
    Now we didn't learn anything about security in java, so can you help me please. Is there some already existing classes or code samples for doing login, or maybe des function.
    Every help will be appriciated! If somthing is unclear please ask.
    Thanx.

    hashing the password should be sufficient for a login
    the Crypto classes contain classes you can use for encryting though such as DES and AES
    http://java.sun.com/j2se/1.4.2/docs/guide/security/CryptoSpec.html#AppA
    there is a crytography forum on here too you might want to look there

  • Secure Login System

    I know that this might be quite simple to advanced PHP users and CSS coders but I am new to that sort of thing. Although I am very advanced in HTML and with computers in general, and dreamweaver, but I am confused on how I would go about adding in a secure login system for my sites users to use and a member area for their profiles they can use and such. I have done a lot of looking around and research on how to do this and all I have seem to find are terrible youtube videos on how to do MSQL which is doesnt really comply with DW, and other numerous sites offering paid for exstentions for such a thing.
    Is there any easy way to do this such as somone who has (or can) write a easy to cpy and paste code that allows this. I know that sounds weak and lazy but I dont understand any other way to do this. Im kinda on a low budget which is why I make websites in the firstplace. So if anyone can lead me in the right direction or just help me in some or any way at all i would really appreciate it.
    Thanks.

    The Dreamweaver Help files contain instructions on how to build a login system. There's also an online tutorial by Sherri German (a very reliable writer on Dreamweaver). Sherri's article is based on the original release of the user authentication server behaviors as a Dreamweaver extension. The server behaviors are now built into Dreamweaver, so you don't need an extension.

  • User login system

    I'm building a simple user login system with the following desired functionality.
    Main vi called Login.vi (attached below) offers the user the chance to login to a previously created account by entering their username and password or alternatively the user can create a new account which will ask them to enter a number of details, name, age, height etc.
    If the user has an existing account and wants to access this account, the program flow goes to Validate.vi when Login boolean is true which authenticates their entered username and password.
    Else the user creates a new account when "I'm New" boolean is true, then program flow should go to add user.vi (attached below). Here lies my problem... I'm not sure how to close Login.vi front panel when "I'm New" boolean is true and hence open add user.vi front panel.
    I'm convinced the solution is simple enough so I'm sure someone with more experience can point me in the right direction.
    Thanks,
    Strokes 
    Solved!
    Go to Solution.
    Attachments:
    Login.vi ‏35 KB
    Add User.vi ‏37 KB
    Save User.vi ‏24 KB

    I've attached the final two sub vi's that are part of my main vi entitled Login.vi which is attached above.
    Strokes
    Attachments:
    Validate User.vi ‏21 KB
    Load User.vi ‏26 KB

  • Trouble building kernel module for sensor support

    Hi, I'm new here but have been using Arch for a while.  Recently, I decided to install Arch on an old laptop (Toshiba A70) and have managed to work out most of the kinks to where it runs nicely.  Unfortunately, ACPI support is spotty and the /sys/class/thermal directory gives me only cooling_device0.  I installed the lm-sensors package and ran sensors-detect, which yielded no results.  Although the laptop runs smoothly otherwise, I would like to know the CPU's temp so that I would be able to set up a fan control scheme and CPU scaling (so far it's stuck at the lowest frequency, and that's kind of a big deal for me since the laptop runs on an archaic mobile P4 chip).
    Sorry for the story but I felt some context was necessary.  I did manage to find a kernel module that would connect those sensors to ACPI for me (http://sourceforge.net/projects/omnibook/), however I'm having trouble building it on the latest kernel.  Here is the output from running make:
    make -C /lib/modules/3.16.1-1-ARCH/build SUBDIRS=/root/omnibook-2.20070211 modules
    make[1]: Entering directory '/usr/lib/modules/3.16.1-1-ARCH/build'
    CC [M] /root/omnibook-2.20070211/init.o
    In file included from /root/omnibook-2.20070211/init.c:26:0:
    /root/omnibook-2.20070211/laptop.h:25:3: warning: initialization from incompatible pointer type
    .callback = dmi_matched,
    ^
    /root/omnibook-2.20070211/laptop.h:25:3: warning: (near initialization for ‘omnibook_ids[0].callback’)
    /root/omnibook-2.20070211/laptop.h:34:3: warning: initialization from incompatible pointer type
    .callback = dmi_matched,
    ^
    /root/omnibook-2.20070211/laptop.h:34:3: warning: (near initialization for ‘omnibook_ids[1].callback’)
    /root/omnibook-2.20070211/laptop.h:43:3: warning: initialization from incompatible pointer type
    .callback = dmi_matched,
    ^
    // I left out most of the 'incompatible pointer type' warnings since they repeat for a while.
    ^
    /root/omnibook-2.20070211/laptop.h:1001:3: warning: (near initialization for ‘omnibook_ids[108].callback’)
    /root/omnibook-2.20070211/init.c: In function ‘dmi_matched’:
    /root/omnibook-2.20070211/init.c:141:16: warning: assignment discards ‘const’ qualifier from pointer target type
    laptop_model = dmi_get_system_info(DMI_PRODUCT_VERSION);
    ^
    /root/omnibook-2.20070211/init.c: In function ‘omnibook_init’:
    /root/omnibook-2.20070211/init.c:281:3: error: implicit declaration of function ‘create_proc_entry’ [-Werror=implicit-function-declaration]
    proc_entry = create_proc_entry(feature->name, pmode, omnibook_proc_root);
    ^
    /root/omnibook-2.20070211/init.c:281:14: warning: assignment makes pointer from integer without a cast
    proc_entry = create_proc_entry(feature->name, pmode, omnibook_proc_root);
    ^
    /root/omnibook-2.20070211/init.c:290:13: error: dereferencing pointer to incomplete type
    proc_entry->data = feature;
    ^
    /root/omnibook-2.20070211/init.c:291:13: error: dereferencing pointer to incomplete type
    proc_entry->read_proc = &procfile_read_dispatch;
    ^
    /root/omnibook-2.20070211/init.c:293:14: error: dereferencing pointer to incomplete type
    proc_entry->write_proc = &procfile_write_dispatch;
    ^
    /root/omnibook-2.20070211/init.c:294:13: error: dereferencing pointer to incomplete type
    proc_entry->owner = THIS_MODULE;
    ^
    cc1: some warnings being treated as errors
    scripts/Makefile.build:257: recipe for target '/root/omnibook-2.20070211/init.o' failed
    make[2]: *** [/root/omnibook-2.20070211/init.o] Error 1
    Makefile:1333: recipe for target '_module_/root/omnibook-2.20070211' failed
    make[1]: *** [_module_/root/omnibook-2.20070211] Error 2
    make[1]: Leaving directory '/usr/lib/modules/3.16.1-1-ARCH/build'
    Makefile:88: recipe for target 'omnibook.ko' failed
    make: *** [omnibook.ko] Error 2
    I have honestly no idea what to make of any of this and would really appreciate any help towards a solution.  Thanks for reading

    Welcome to Arch Linux
    That looks like it is a 2.6 kernel module
    http://sourceforge.net/p/omnibook/bugs/58/
    Did you try either of these AUR offerings?
    ewaller$@$odin ~ 1001 %packer -Ss omnibook
    aur/omnibook-git 20110911-9 (7)
    Kernel module for HP OmniBook,Pavilion,Toshiba and Compal ACL00 laptops
    aur/omnibook-svn-zen 268-1 (1)
    Kernel module for HP OmniBook, Pavilion, Toshiba and Compal ACL00 laptops
    ewaller$@$odin ~ 1002 %
    Last edited by ewaller (2014-08-23 23:33:53)

  • SQL injection on login system by Adobe?

    Hello everybody!
    I recently bought a wonderful book "Adobe Dreamweaver CS5 with PHP - Training from the source" by Daivid Powers.
    In the book is described how you can create a login system.
    What I would like to ask is: Have the dreamweaver server behaviors any kind of protection against SQL injection?
    Unfortunately I do not know PHP in order to recognize the code generated by server behaviors and be able to answer this question by myself..
    I just want to know how safe is to publish a website based on the dreamweaver server behaviors..
    Thank you in advance!

    Any form values and inbound URL parameters will be sanitized (via the function GetSQLValueString) based on several criteria:
    a) generally applied sanitizing functions: stripslashes, mysql_real_escape_string
    b) in case of a numeric value (integer, double) the function GetSQLValueString will additionally apply the PHP function intval respectively doubleval

  • Folio Builder login error

    Now 2012.08.08
    In Indesign CS 6
    Folio Builder login error appears. Message is shown below.
    "Sign in has failed
    Network failure"
    How do you solve?
    DPS Version is
    12.2.4.20120611_m_691037
    8.0.7.21

    http://www.adobe.com/support/downloads/thankyou.jsp?ftpID=5377&fileID=5010
    Patch!
    Solve it!
    Enjoy Works~!

  • How to write the SQL codes  of the login system for a database system

    If I have a table stored with a Column staff_ID and Password. How can I make use of this 2 columns information to setup the login system?

    Hi,
    Create Table Modules          -----e.g. payroll, inventory etc.
    (ModID    NUMBER(10),
    ModName  VARCHAR2(50)); 
    Create Table Modules_Forms    ------e.g. Sales Transaction Form
    (FormID   NUMBER(10),
    ModID    NUMBER(10),
    FmxName  VARCHAR2(32));           
    Create Table Modules_Reports  ------e.g. Sales Report
    (RepID    NUMBER(10),
    ModID    NUMBER(10),
    RepName  VARCHAR2(32));           
    Create Table Usr              ------------From the Employee Information Module
    (UserID   VARCHAR2(20),       ------------you can find the designation of
    Password VARCHAR2(10)        ------------the user who wants to connect
    Emp_Code Varchar2(25));      ------------that is why, I am Addng Emp_Code.
    Create Table User_Modules     ------------Control the Module Access.
    (UserID   VARCHAR2(20);
    ModID    NUMBER(10),
    Access   VARCHAR2(1));
    Create Table User_Forms       ------------Control the Forms Access
    (UserID   VARCHAR2(20),
    FormID   NUMBER(10),
    Read     VARCHAR2(1),
    Write    VARCHAR2(1),
    Execute  VARCHAR2(1),
    Delete   VARCHAR2(1));
    Create Table User_Reports     ------------Control the Report Access
    (UserID   VARCHAR2(20),
    RepID    NUMBER(10),
    Access   VARCHAR2(1));
    1 ) After Creating these Tables, Control the Application Access of the users
        From the application (Oracle Forms).
    2 ) I think you should create a Menu from oracle forms.
    3 ) For Controlling the Database Level Access, you can create a ROLE
    4 ) Forms Forum Site:-
        http://www.forums.oracle.com/forums/forum.jsp?forum=82Regards
    Muhammad Waseem Haroon
    [email protected]

  • How to create a login system

    I need to create a login system for an application.  The application will be a Flex front-end connecting to a Postgres database through ColdFusion.  I can connect to my database but cannot find a good way to check user credentials and save data in a session.  Can someone provide some sample code or suggestions (I have already reviewd Bruce Phillips blog on the subject).  I assume this is a standard activity in Flex but cannot find a lot of guidance.  Any help would be appreciated.  Details follow:
    The use case is quite simple:
    Assumptions:
    -the user has an account and supplies correct information
    -Flex can connect to the Postgres databse through ColdFusion datasource.
    Actions:
    User supplies username, password and role and clicks submit button.  System validates that the username/password/role combination matches and displays a viewstack based on the role provided.
    Thanks!

    After some more seraching and playing around, I found a pretty useful example out there on the Flex Cookbook beta site.
    The post by stinasius is located at http://www.adobe.com/cfusion/communityengine/index.cfm?event=showDetails&postId=12346&prod uctId=2&loc=en_US

  • Adf security login system

    Hi I would ask you for advice.
    I have a case:
    1.     On the weblogic are specified users:
    2.     I must make login system which will verified is user exist on weblogic.
    I have seen Franks tutorial http://download.oracle.com/otn_hosted_doc/jdeveloper/11gdemos/AdfSecurity/AdfSecurity.html but it is case where I manually add users to jazn file.
    I must verified users form weblogic.

    jazn-data.xml is used during development (when you are testing on the integrated WLS).
    When you deploy to an external WLS server, it will (or at least can) use the users defined in the WLS's LDAP
    Have you read [url http://docs.oracle.com/cd/E26098_01/web.1112/e16182/adding_security.htm#BGBGJEAH]the docs?

  • Signing my application in a Continuous build/integration system

    I have a Mac OS X app and I recently obtained a digital certificate (Developer ID Application) to sign this app. I have the following questions about signing this app -
    Can I specify a particular certificate as an input to codesign so that it is not installed in keychain? So that in my environment (Continuous build/integration system), any available Mac could be used to sign my app?
    If not, then can I install/uninstall a certificate in keychain on a machine on the fly?
    Thanks!

    You will probably get a faster answer in the developer forum.

  • How to make a login system using xCode?

    Hello guys!
    I'm trying to make a login system;
    Is it possible to make it like this:
    Put a text box for the username and password and a label called "Sign in"
    How can I make so that the username and password box get's my input box on my PHP website and that "Sign In" will be the Submit?
    I don't want to use the HTTP way...
    Thank you !

    Thanks for your answer !
    Before I made this topic I tried to find a tutorial here and I didn't find any...
    Can you please redirect me to one of them?
    Thank you

  • Making a login system

    Making a login system with flex.
    i have registration in one panel and login in another panel,
    basicly in the same application,
    But since il be calling the same username i register, i can
    only use the same id for that input feild in both REGISTRATION and
    LOGIN but i get a 'identifier already in use' , cant get my head
    for a work around.
    please help
    using something like this
    http://www.vipercreations.com/tutorials/Adobe%20Flex/28.html

    ntsii can u give me an example for declaring a textInput with
    an id at application level then refrencing it
    my code
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="
    http://www.adobe.com/2006/mxml"
    layout="absolute">
    <mx:states>
    <mx:State name="Logged In">
    <mx:SetProperty target="{panel1}" name="width"
    value="95%"/>
    <mx:SetProperty target="{panel1}" name="height"
    value="95%"/>
    <mx:RemoveChild target="{password}"/>
    <mx:RemoveChild target="{username}"/>
    <mx:RemoveChild target="{label1}"/>
    <mx:RemoveChild target="{Submit}"/>
    <mx:RemoveChild target="{label2}"/>
    <mx:SetProperty target="{panel1}" name="title"
    value="Members Section"/>
    <mx:AddChild relativeTo="{panel1}"
    position="lastChild">
    <mx:Label x="10" y="10" text="Welcome to the Members
    Section!"/>
    </mx:AddChild>
    <mx:AddChild relativeTo="{panel1}"
    position="lastChild">
    <mx:Label x="10" y="36" text="Here you can do great
    things, like join the forums @ Viper Creations!"/>
    </mx:AddChild>
    <mx:AddChild relativeTo="{panel1}"
    position="lastChild">
    <mx:Label x="10" y="62" text="Label"/>
    </mx:AddChild>
    </mx:State>
    </mx:states>
    <mx:Script>
    <![CDATA[
    import mx.rpc.events.ResultEvent;
    import mx.controls.Alert;
    ]]>
    </mx:Script>
    <mx:Script>
    <![CDATA[
    private function checkLogin(evt:ResultEvent):void
    if(evt.result.loginsuccess == "yes")
    currentState = "Logged In";
    if(evt.result.loginsuccess == "no")
    mx.controls.Alert.show('Invalid username/password');
    ]]>
    </mx:Script>
    <mx:HTTPService id="login_user"
    result="checkLogin(event)" showBusyCursor="true" method="POST"
    url="
    http://www.phobos-machines.com/login/bin/request.php"
    useProxy="false">
    <mx:request xmlns="">
    <username>
    {username.text}
    </username>
    <password>
    {password.text}
    </password>
    </mx:request>
    </mx:HTTPService>
    <mx:Panel resizeEffect="Resize" width="250" height="200"
    layout="absolute" title="Login System" horizontalCenter="0"
    verticalCenter="-2" id="panel1">
    <mx:Label x="10" y="10" text="Username:" id="label1"/>
    <mx:TextInput x="10" y="36" id="username"/>
    <mx:Label x="10" y="66" text="Password:" id="label2"/>
    <mx:TextInput x="10" y="92" id="password"
    displayAsPassword="true"/>
    <mx:Button x="10" y="122" label="Submit" id="Submit"
    click="login_user.send();"/>
    </mx:Panel>
    <!--registraion -->
    <mx:HTTPService id="login" showBusyCursor="true"
    method="POST" url="
    http://www.phobos-machines.com/login/bin/request.php"
    useProxy="false">
    <mx:request xmlns="">
    <username>
    {username2.text}
    </username>
    <password>
    {password2.text}
    </password>
    </mx:request>
    </mx:HTTPService>
    <mx:Panel x="30" y="10" width="380" height="270"
    layout="absolute">
    <mx:Form x="10" y="19" width="328" height="187">
    <mx:FormItem label="username">
    <mx:TextInput id="username2" width="100%"/>
    </mx:FormItem>
    <mx:FormItem label="Password">
    <mx:TextInput id="password2" width="100%"
    displayAsPassword="true"/>
    </mx:FormItem>
    <mx:FormItem>
    <mx:Button label="Submit"
    click="login.send(),Alert.show('User Registered',
    'Registration',mx.controls.Alert.OK);"/>
    </mx:FormItem>
    </mx:Form>
    <mx:FormHeading x="0" y="0" label="Registration"/>
    </mx:Panel>
    </mx:Application>

  • Resources to Build PC System?

    I have been reading the forums here on building your own system.  On one hand, I am inspired to do this ... on the hand, it sounds daunting.
    Can anyone recomend a good resource for instructions?  I'm guessing you'd mostly follow each manufacturer's instructions?
    I'm fairly techy ... but have never done anything close to this.
    Does this ehow resource look like something good to follow?
    How to Build a PC for Editing HD Video
    Read more:  How to Build a PC for Editing HD Video | eHow.com http://www.ehow.com/how_5876856_build-pc-editing-hd-video.html#ixzz1GRGn932N
    --NAN

    You can watch some video's on building a system here:
    http://www.homepcbuilder.com/
    Click the Home PC button and play each lesson.  It will play a few minutes but will give you a good idea.
    And you can get a good sence of what parts to buy by looking at what others here are using for Premire
    http://ppbm5.com/Benchmark5.html
    Building is the way to go.
    GLenn

Maybe you are looking for

  • HT1918 How can I split a gift card between two separate iTunes accounts?

    Can I use my iTunes account to give iTunes gift cards?

  • Getting error while loading Flat File

    Hello All, I am getting error while loading flat file. Flat file is a CSV file. Value ',,,,,,,,' of characteristic 0DATE is not a number with 000008 spaces Data seprator  | Escape sign    ; It has 23708 entries , it s loading successfully till 23 665

  • OK to disconnect?? How do I get out of this mode?

    My nano ipod is displaying a check mark and "OK to disconnect" on the screen but I can't get it to go back to the menu where I can see my Music Playlist. I did disconnect it from the MAC but the check mark and message are still there and I cannot get

  • CIC0 - ENVD - Conditional option context menu ?

    Hi, in the Customer Interaction Center in the context menu of a node, we have added an option by using the ENVD transaction. The type of the node is SERVFREQH (Service Frequency). We only want to add this option when the type of the Service frequency

  • Repeated short duration calls 1-5 seconds

    Hello, new to this forum. Thanks in advance for any help. On receiving my latest itemised bill, I noticed that I have repeated very short duration calls to mobiles of between 1 and 5 secs (107 in all).  On one evening I have 31 calls to the same numb