Login, register, e-commerce, etc.

I need to create a Web site with similar facilities such as the website at this link.

Acme Linen Co. | All of your textiles and home needs

I need to create the following:

Sign in / register (see link below)

Login | Acme Linen Co.

I guess that those who come from a third party and integrated site in the site to connect / register, but I'm not sure. I've never done a site like this before.

Also, I need to create a drop down menu that could sort by popularity, price - High - Low, etc. (see link below)

Brentwood by Martex 100% Ring Spun cotton. Acme Linen Co.

I also need to create an e-commerce store:

All this is possible with Adobe Muse?

Thank you

Stephanie

Hi Stephanie,

If British Colombia is not an option, then all you can do is create a page in Muse and integrate your form of registration/login on the page using Insert HTML code. You need the code for the form.

Kind regards

Aish

Tags: Adobe Muse

Similar Questions

  • Horizontal lines in all modes (boot, safe mode etc.)

    Horizontal lines across my screen all... This occurs during startup, in POST, on the login screen in SafeMode etc etc...

    Example 1:

    the PC will sometimes hang after POST, before starting Windows and occasionally asking me if I'd like to try to get it back, that does not solve the problem. If she manages to get to the standard login screen, after typing my password, the PC will crash.

    I am able to boot in safe mode, but the lines are still there.

    Example 2:

    This obviously isn't a problem of graphics driver that the problem persists in safe mode and when starting. I also tried on 2 different monitors, who work very well when hooked to other devices.

    If someone could give me a solution or an idea where the problem may lie... I would be eternally grateful.

    My PC is as follows:

    Windows 7 Home Premium 64-bit

    ASUS Sabertooth 990FX Motherboard R2.0

    8-Core processor, 4.3 GHz AMD FX 8350

    16 GB (4 x 4 GB) Corsair XMS3 DDR3 1333 MHz RAM Performance

    ASUS GeForce GTX 760 2 GB 1033 MHz GPU

    512 GB SSD

    2 TB HARD drive

    power supply 750W

    Case Antec, with lots of cooling (5 fans)

    More photos HERE

    Hello

    These lines indicate corruption graphics driver or lack of graphic material.

    Monitor > cable > Port > which is connected to an integrated graphics card to a location on the motherboard or graphic material that is part of the motherboard.

    Glance of replacement or Exchange the graphic above.

    See you soon.

  • Criar access restrito com login e senha

    OLA, não entendo programacao, ja vou avisando kkk.

    From gostaria EU saber como CFFO para criar um banco dados (UM page make the site com access restrito wave o usuario pode gravar login e senha e etc.)?

    SE alguem puder help desde ja Agradea§o.

    Muito obrigado

    Gabriel

    Adding to Mylenium, please consult the links below the same talk.

    How to create an entry page protected password for a site of muse?

    Can I create a login/password in the Muse for a HTML5 page or two?

    Kind regards

    Vivek

  • Login PHP Script error

    Correctly, I worked on a simple PHP login system for my site.

    I met two problems.

    One with the login and two with the regerstation.

    Now with the connection, once you click on send and it connects you to, it doesent show you anything. Login script:

    <?php 
    include 'php/login/dbc.php';
    
    
    $user_email = mysql_real_escape_string($_POST['email']);
    
    
    if ($_POST['Submit']=='Login')
    {
    $md5pass = md5($_POST['pwd']);
    $sql = "SELECT id,user_email FROM users WHERE 
                user_email = '$user_email' AND 
                user_pwd = '$md5pass' AND user_activated='1'"; 
      
    $result = mysql_query($sql) or die (mysql_error()); 
    $num = mysql_num_rows($result);
    
    
        if ( $num != 0 ) { 
    
    
            // A matching row was found - the user is authenticated. 
           session_start(); 
                 list($user_id,$user_email) = mysql_fetch_row($result);
                        // this sets variables in the session 
                        $_SESSION['user']= $user_email;  
      
      
                        if (isset($_GET['ret']) && !empty($_GET['ret']))
                        {
                        header("Location: $_GET[ret]");
                        } else
                        {
                        header("Location: php/login/myaccount.php");
                        }
                        //echo "Logged in...";
                        exit();
        } 
    
    
    header("Location: php/login/login.php?msg=Invalid Login");
    //echo "Error:";
    exit(); 
    }
    
    
    ?>
    <?php if (isset($_GET['msg'])) { echo "<div class=\"msg\"> $_GET[msg] </div>"; } ?>
    <form id="form1" method="post" action="">
      Your Email
      <input name="email" type="text" id="email" />
    Password:
    <input name="pwd" type="password" id="pwd" />
    <input type="submit" name="Submit" value="Login" />
    <a href="php/login/register.php">Register</a> | <a href="php/login/forgot.php">Forgot</a>
    </form>
    
    

    And with the registration page, he doesn't submit:


    <?php 
    session_start();
    
    
    
    
    include ('../../dbc.php'); 
    
    
    
    
    if ($_POST['Submit'] == 'Register')
    {
       if (strlen($_POST['email']) < 5)
       {
        die ("Incorrect email. Please enter valid email address..");
        }
       if (strcmp($_POST['pass1'],$_POST['pass2']) || empty($_POST['pass1']) )
              { 
              //die ("Password does not match");
              die("ERROR: Password does not match or empty..");
    
    
              }
              if (strcmp(md5($_POST['user_code']),$_SESSION['ckey']))
              { 
                                   die("Invalid code entered. Please enter the correct code as shown in the Image");
                          } 
              $rs_duplicates = mysql_query("select id from users where user_email='$_POST[email]'");
              $duplicates = mysql_num_rows($rs_duplicates);
      
              if ($duplicates > 0)
              { 
              //die ("ERROR: User account already exists.");
              header("Location: register.php?msg=ERROR: User account already exists..");
              exit();
              }
      
      
      
      
              $md5pass = md5($_POST['pass2']);
              $activ_code = rand(1000,9999);
              $server = $_SERVER['HTTP_HOST'];
              $host = ereg_replace('www.','',$server);
              mysql_query("INSERT INTO users
                            (`user_email`,`user_pwd`,`country`,`joined`,`activation_code`,`full_name`)
                                              VALUES
                                              ('$_POST[email]','$md5pass','$_POST[country]',now(),'$activ_code','$_POST[full_name]')") or die(mysql_error());
      
              $message = 
    "Thank you for registering an account with Ballastic Studios. Here are the login details...\n\n
    User Email: $_POST[email] \n
    Password: $_POST[pass2] \n
    Activation Code: $activ_code \n
    ____________________________________________
    *** ACTIVATION LINK ***** \n
    Activation Link: http://ballasticstudio.net/php/login/activate.php?usr=$_POST[email]&code=$activ_code \n\n
    _____________________________________________
    Thank you. This is an automated response. PLEASE DO NOT REPLY.
    ";
    
    
              mail($_POST['email'] , "Login Activation", $message,
        "From: \"Auto-Response\" <notifications@$host>\r\n" .
         "X-Mailer: PHP/" . phpversion());
              unset($_SESSION['ckey']);
              echo("Registration Successful! An activation code has been sent to your email address with an activation link..."); 
      
              exit;
              } 
    
    
    ?> 
                                            <table width="65%" border="0" cellpadding="0" cellspacing="0">
                                              <tr>
                                                <td bgcolor="e5ecf9" class="forumposts"><form action="register.php" method="post" id="form2" style="padding:5px;">
                                                  <p><br />
                                                    Name:
                                                    <input name="name" type="text" id="name" />
                                                    Ex. John Wilson</p>
                                                  <p>Email:
                                                    <input name="email2" type="text" id="email2" />
                                                    Ex. [email protected]</p>
                                                  <p>Password:
                                                    <input name="pass1" type="password" id="pass1" />
                                                    Atleast 5 chars</p>
                                                  <p>Retype Password:
                                                    <input name="pass2" type="password" id="pass2" />
                                            </p>
                                                  <p>Country:
                                                    <select name="country" id="select8">
                                                      <option value="Afghanistan">Afghanistan</option>
                                                      <option value="Albania">Albania</option>
                                                      <option value="Algeria">Algeria</option>
                                                      <option value="Andorra">Andorra</option>
                                                      <option value="Anguila">Anguila</option>
                                                      <option value="Antarctica">Antarctica</option>
                                                      <option value="Antigua and Barbuda">Antigua and Barbuda</option>
                                                      <option value="Argentina">Argentina</option>
                                                      <option value="Armenia ">Armenia </option>
                                                      <option value="Aruba">Aruba</option>
                                                      <option value="Australia">Australia</option>
                                                      <option value="Austria">Austria</option>
                                                      <option value="Azerbaidjan">Azerbaidjan</option>
                                                      <option value="Bahamas">Bahamas</option>
                                                      <option value="Bahrain">Bahrain</option>
                                                      <option value="Bangladesh">Bangladesh</option>
                                                      <option value="Barbados">Barbados</option>
                                                      <option value="Belarus">Belarus</option>
                                                      <option value="Belgium">Belgium</option>
                                                      <option value="Belize">Belize</option>
                                                      <option value="Bermuda">Bermuda</option>
                                                      <option value="Bhutan">Bhutan</option>
                                                      <option value="Bolivia">Bolivia</option>
                                                      <option value="Bosnia and Herzegovina">Bosnia and Herzegovina</option>
                                                      <option value="Brazil">Brazil</option>
                                                      <option value="Brunei">Brunei</option>
                                                      <option value="Bulgaria">Bulgaria</option>
                                                      <option value="Cambodia">Cambodia</option>
                                                      <option value="Canada">Canada</option>
                                                      <option value="Cape Verde">Cape Verde</option>
                                                      <option value="Cayman Islands">Cayman Islands</option>
                                                      <option value="Chile">Chile</option>
                                                      <option value="China">China</option>
                                                      <option value="Christmans Islands">Christmans Islands</option>
                                                      <option value="Cocos Island">Cocos Island</option>
                                                      <option value="Colombia">Colombia</option>
                                                      <option value="Cook Islands">Cook Islands</option>
                                                      <option value="Costa Rica">Costa Rica</option>
                                                      <option value="Croatia">Croatia</option>
                                                      <option value="Cuba">Cuba</option>
                                                      <option value="Cyprus">Cyprus</option>
                                                      <option value="Czech Republic">Czech Republic</option>
                                                      <option value="Denmark">Denmark</option>
                                                      <option value="Dominica">Dominica</option>
                                                      <option value="Dominican Republic">Dominican Republic</option>
                                                      <option value="Ecuador">Ecuador</option>
                                                      <option value="Egypt">Egypt</option>
                                                      <option value="El Salvador">El Salvador</option>
                                                      <option value="Estonia">Estonia</option>
                                                      <option value="Falkland Islands">Falkland Islands</option>
                                                      <option value="Faroe Islands">Faroe Islands</option>
                                                      <option value="Fiji">Fiji</option>
                                                      <option value="Finland">Finland</option>
                                                      <option value="France">France</option>
                                                      <option value="French Guyana">French Guyana</option>
                                                      <option value="French Polynesia">French Polynesia</option>
                                                      <option value="Gabon">Gabon</option>
                                                      <option value="Germany">Germany</option>
                                                      <option value="Gibraltar">Gibraltar</option>
                                                      <option value="Georgia">Georgia</option>
                                                      <option value="Greece">Greece</option>
                                                      <option value="Greenland">Greenland</option>
                                                      <option value="Grenada">Grenada</option>
                                                      <option value="Guadeloupe">Guadeloupe</option>
                                                      <option value="Guatemala">Guatemala</option>
                                                      <option value="Guinea-Bissau">Guinea-Bissau</option>
                                                      <option value="Guinea">Guinea</option>
                                                      <option value="Haiti">Haiti</option>
                                                      <option value="Honduras">Honduras</option>
                                                      <option value="Hong Kong">Hong Kong</option>
                                                      <option value="Hungary">Hungary</option>
                                                      <option value="Iceland">Iceland</option>
                                                      <option value="India">India</option>
                                                      <option value="Indonesia">Indonesia</option>
                                                      <option value="Ireland">Ireland</option>
                                                      <option value="Israel">Israel</option>
                                                      <option value="Italy">Italy</option>
                                                      <option value="Jamaica">Jamaica</option>
                                                      <option value="Japan">Japan</option>
                                                      <option value="Jordan">Jordan</option>
                                                      <option value="Kazakhstan">Kazakhstan</option>
                                                      <option value="Kenya">Kenya</option>
                                                      <option value="Kiribati ">Kiribati </option>
                                                      <option value="Kuwait">Kuwait</option>
                                                      <option value="Kyrgyzstan">Kyrgyzstan</option>
                                                      <option value="Lao People's Democratic Republic">Lao People's Democratic 
                                                        Republic</option>
                                                      <option value="Latvia">Latvia</option>
                                                      <option value="Lebanon">Lebanon</option>
                                                      <option value="Liechtenstein">Liechtenstein</option>
                                                      <option value="Lithuania">Lithuania</option>
                                                      <option value="Luxembourg">Luxembourg</option>
                                                      <option value="Macedonia">Macedonia</option>
                                                      <option value="Madagascar">Madagascar</option>
                                                      <option value="Malawi">Malawi</option>
                                                      <option value="Malaysia ">Malaysia </option>
                                                      <option value="Maldives">Maldives</option>
                                                      <option value="Mali">Mali</option>
                                                      <option value="Malta">Malta</option>
                                                      <option value="Marocco">Marocco</option>
                                                      <option value="Marshall Islands">Marshall Islands</option>
                                                      <option value="Mauritania">Mauritania</option>
                                                      <option value="Mauritius">Mauritius</option>
                                                      <option value="Mexico">Mexico</option>
                                                      <option value="Micronesia">Micronesia</option>
                                                      <option value="Moldavia">Moldavia</option>
                                                      <option value="Monaco">Monaco</option>
                                                      <option value="Mongolia">Mongolia</option>
                                                      <option value="Myanmar">Myanmar</option>
                                                      <option value="Nauru">Nauru</option>
                                                      <option value="Nepal">Nepal</option>
                                                      <option value="Netherlands Antilles">Netherlands Antilles</option>
                                                      <option value="Netherlands">Netherlands</option>
                                                      <option value="New Zealand">New Zealand</option>
                                                      <option value="Niue">Niue</option>
                                                      <option value="North Korea">North Korea</option>
                                                      <option value="Norway">Norway</option>
                                                      <option value="Oman">Oman</option>
                                                      <option value="Pakistan">Pakistan</option>
                                                      <option value="Palau">Palau</option>
                                                      <option value="Panama">Panama</option>
                                                      <option value="Papua New Guinea">Papua New Guinea</option>
                                                      <option value="Paraguay">Paraguay</option>
                                                      <option value="Peru ">Peru </option>
                                                      <option value="Philippines">Philippines</option>
                                                      <option value="Poland">Poland</option>
                                                      <option value="Portugal ">Portugal </option>
                                                      <option value="Puerto Rico">Puerto Rico</option>
                                                      <option value="Qatar">Qatar</option>
                                                      <option value="Republic of Korea Reunion">Republic of Korea Reunion</option>
                                                      <option value="Romania">Romania</option>
                                                      <option value="Russia">Russia</option>
                                                      <option value="Saint Helena">Saint Helena</option>
                                                      <option value="Saint kitts and nevis">Saint kitts and nevis</option>
                                                      <option value="Saint Lucia">Saint Lucia</option>
                                                      <option value="Samoa">Samoa</option>
                                                      <option value="San Marino">San Marino</option>
                                                      <option value="Saudi Arabia">Saudi Arabia</option>
                                                      <option value="Seychelles">Seychelles</option>
                                                      <option value="Singapore">Singapore</option>
                                                      <option value="Slovakia">Slovakia</option>
                                                      <option value="Slovenia">Slovenia</option>
                                                      <option value="Solomon Islands">Solomon Islands</option>
                                                      <option value="South Africa">South Africa</option>
                                                      <option value="Spain">Spain</option>
                                                      <option value="Sri Lanka">Sri Lanka</option>
                                                      <option value="St.Pierre and Miquelon">St.Pierre and Miquelon</option>
                                                      <option value="St.Vincent and the Grenadines">St.Vincent and the Grenadines</option>
                                                      <option value="Sweden">Sweden</option>
                                                      <option value="Switzerland">Switzerland</option>
                                                      <option value="Syria">Syria</option>
                                                      <option value="Taiwan ">Taiwan </option>
                                                      <option value="Tajikistan">Tajikistan</option>
                                                      <option value="Thailand">Thailand</option>
                                                      <option value="Trinidad and Tobago">Trinidad and Tobago</option>
                                                      <option value="Turkey">Turkey</option>
                                                      <option value="Turkmenistan">Turkmenistan</option>
                                                      <option value="Turks and Caicos Islands">Turks and Caicos Islands</option>
                                                      <option value="Ukraine">Ukraine</option>
                                                      <option value="UAE">UAE</option>
                                                      <option value="UK">UK</option>
                                                      <option value="USA">USA</option>
                                                      <option value="Uruguay">Uruguay</option>
                                                      <option value="Uzbekistan">Uzbekistan</option>
                                                      <option value="Vanuatu">Vanuatu</option>
                                                      <option value="Vatican City">Vatican City</option>
                                                      <option value="Vietnam">Vietnam</option>
                                                      <option value="Virgin Islands (GB)">Virgin Islands (GB)</option>
                                                      <option value="Virgin Islands (U.S.) ">Virgin Islands (U.S.) </option>
                                                      <option value="Wallis and Futuna Islands">Wallis and Futuna Islands</option>
                                                      <option value="Yemen">Yemen</option>
                                                      <option value="Yugoslavia">Yugoslavia</option>
                                              </select>
                                            </p>
                                                  <p>
                                                    <input name="user_code" type="text" size="10" />
                                                    <img src="pngimg.php" alt="" align="middle" />  </p>
                                                  <p align="center">
                                                    <input type="submit" name="Submit2" value="Register" />
                                            </p>
                                                  </form></td>
                                        </tr>
                                    </table>
    
    

    You can take a look for your self to the: http://ballisticstudio.net/

    Never mind set it

  • Web Services [Magento]

    I'm totally crossed this announcement... Sorry to be rude, just do not get any action in the advanced forum.

    Can we make this work?

    Trying to connect to / to consume a webservice in a commerce store [written in php] Magento, I'm having problems with coldfusion is not able to 'find' the methods I need to invoke.

    -I can create the object, sign, get a session but nothing [NOTHING!] Furthermore, no other methods are available - I just get a method not found error.

    -' register' with the button 'register' has a permission to use and I can [have] prove [n] it works, I can call for example upwards from VIAcatalogCategoryTree store categories tree.

    -discharge of the mage_obj shows all the available methods.

    -The webservice is a Magento store [http://www.magentocommerce.com/]

    -API documentation is here http://www.magentocommerce.com/support/magento_core_api

    -the webservice url is turned upwards and a test instance, so I'm not afraid of him breaking, please test to your heart's desire!

    <cfscript>

    mage_obj = CreateObject(webservice, http://mage.bigblock.ca/api/v2_soap?wsdl);
    mage_session = mage_obj.login('register','register');

    //retcat = mage_obj.catalogCategoryTree(mage_cats);

    </cfscript>

    <cfdump var="#mage_session#" />
    <cfdump var="#mage_obj#" />
    <!---cfdump var="#retcat#" /--->


    If anyone can take a look, this gives a test - give me clues as to why I can't access VIA CFMX Web service, I would REALLY REALLY appreciate it.

    I've been struggling with it for better that 2 days now. [over 4 days now]

    -Thanks in advance

    -sean

    
         mage_obj = CreateObject("webservice",
    "http://mage.bigblock.ca/api/v2_soap?wsdl");
         mage_session = mage_obj.login('register', 'register');
         retcat = mage_obj.catalogCategoryTree(mage_session, 1, 1);
    
    
    
    

    The code above works a little for me (in the sense that it returns a

    category called root catalog - I have no experience with Magento

    Web services).

    Mack

  • What to do before selling my 6s +?

    I have already backed up everything that I need my 6s + and set up my new 7 +. Is that what I need / have to do with my 6s + in addition to wiping just before I sell it? Does it matter if I register on iCloud, etc.. ? How to stop the display find my iPhone?

    Thank you.

    Follow the steps in this document support. What to do before you sell or give away your iPhone, iPad or iPod touch - Apple Support

    It is important a lot about iCloud signing.

  • Thunderbird change outgoing email address

    Compose a new email:

    In the field 'To' I start typing an address. Thunderbird offers a drop-down matches of my address book. I select one of the addresses. Thunderbird puts in the field "to". At this point, my cursor is still in the field "to". Then I hit enter to move to the next field, & Thunderbird changed the email address to a different address (an address that is different from my address book).

    If I add a space after the e-mail address before you press Enter, Thunderbird leave the email address as it is.

    Behavior is somewhat random - address is not replaced all the time. In addition, for a while, Thunderbird will make a change - as always change address X to the address, then it will switch to another change - address Z always replacing address w.

    The alternative address is always one that is in the address book.

    Also, Thunderbird colors randomly a few e-mail addresses out in red, even if they are in my address book.

    This is known and reported bug the developers are working on a fix critical. Please note that this bug only occurs if you are using TAB or ENTER.

    Two options, but I recommend option 2.

    1. if you use your mouse to select the email address and use the mouse to move to the next line then it does not.

    2. suggest using this method. This method does not require using the TAB or ENTER keys, so will not produce the bug.

    Write a new message.

    • Use the Contacts Sidebar
    • 'View' > 'Contacts sidebar' or toggle view using the f9 key.
    • Select address book only SELECT strung
    • Click on the button 'TO Addto' or other options.

    You can follow the bug here:

    You can "vote" for the bug... in the upper part, where it is said:

    • Importance:-criticism with 13 votes (vote)

    This is not a forum 'cat' or 'support', it is used to report bugs and developers will use, then do not enter do not comment, unless adding new useful data, but you can vote for it. You must register to vote etc.

  • Auto email address becomes a different name instead of a different email.

    When I write a new email, I type in the person's name in the To: field. For example, I'll type in "Michael Smith". As usual, a list of all of the possible 'Michael' e-mail addresses complete for me to choose. I selects the correct address, and then press return. When I hit the return, the e-mail address becomes an any other 'Michael' or 'Susan '. This occurs whenever an address fills and I knocked back.

    This is known and reported bug the developers are working on a fix critical. Please note that this bug only occurs if you are using TAB or ENTER.

    Two options, but I recommend option 2.
    1. if you use your mouse to select the email address and use the mouse to move to the next line then it does not.

    2. suggest using this method. This method does not require using the TAB or ENTER keys, so will not produce the bug.

    Write a new message.

    • Use the Contacts Sidebar
    • 'View' > 'Contacts sidebar' or toggle view using the f9 key.
    • Select address book only SELECT strung
    • Click on the button 'TO Addto' or other options.

    You can follow the bug here:

    You can "vote" for the bug... in the upper part, where it is said:

    • Importance:-criticism with 13 votes (vote)

    This is not a forum 'cat' or 'support', it is used to report bugs and developers will use, then do not enter do not comment, unless adding new useful data, but you can vote for it. You must register to vote etc.

  • Mutliplyng a table 1 d

    I tried a few methods and searched I just can't understand it.

    I am multiplying one table in itself and receive the 2D Board logic.

    I tried a while loop and multplying each elemnt by a full line/colum then build table, does not work.

    I've tried a few others with table to initialize and replace, shift, matrix conversion register and multiplying etc.  just does not work.

    any suggestions?

    My fault.  My linear algebra is not what it was I suppose.  Try this out...

  • Error in mscomct2.ocx after application of active directory

    Hello!

    I developed a system of inventory for my business application, that I am currently working.

    The application is developed using VB6 and works perfectly until the Active Directory is implemented.

    The error will like "component mscomctl.ocx or one of its dependencies is not correctly registered... etc.

    I already checked the administrator account and tried the app and it works exactly the way it should be.

    I have already ruled out the user to the list of unauthorized users and included everyone in the group. I rebooted the computer several times.

    I guess that active directory is causing the problem.

    The error goes to the time windows 7 & 8 (64-bit)

    Please help me.

    Thanks in advance

    Hi Owen,.

    Welcome to the Microsoft community.

    The question you posted would be better suited in the TechNet Forums. I suggest you to ask your question in the TechNet Forums for assistance.

    http://social.technet.Microsoft.com/forums/WindowsServer/en-us/home?category=WindowsServer

    I hope it helps. If you have any questions about Windows in the future, please let us know. We will be happy to help you.

    Thank you

    Kulu Sharma.

  • HP Officejet Pro 8610: The 8610 Pro Officejet will analyse to 14.04 Ubuntu?

    Hello

    I am running Ubuntu 14.04 as my operating system. I just bought a Hewlett-Packard (HP) Officejet Pro 8610. I have installed all the software, registered the product, etc. etc. etc.  It receives instructions wireless through a network with my computer and it prints very well on the computer.

    It does not analyze. I'm told 'No found computer', followed by instructions for both Windows and Mac users. I do not see clear parallels to the Ubuntu system.

    It doesn't seem to be clear instructions on how to analyze the Ubuntu forums, so I ask here: what should I do to have the new machine to scan my documents?

    Thank you.

    Hello

    Thank you for using the HP forum.

    You can try Webscan.

    This relevant resource will show you how to do this:

    Printing from Chromebook

    https://goo.GL/CQfwmo

    WEBSCAN mainly use Web Services integrated printer.

    Hope that helps.

  • my dvd drive disappeared

    I tried to fix it but didn't work. Sotried manually by following the instructions, regedit lay clicked on register

    hckeysystem etc, but where should I found case files in the right pane, it says no 'set', under data.

    so im stuck now. any help welcome. Thank you.

    Hello

    How to ask a question
    http://support.Microsoft.com/kb/555375

    ------------------------------------------------------------------------

    Step 1: Please do all the same underneath if you did some before as is often total
    a process that solves the problem.

    Try this - Panel - Device Manager - CD/DVD - double click on the device - driver tab.
    Click on update drivers (this will probably do nothing) - RIGHT click ON the drive - uninstall.
    RESTART this will refresh the default driver stack. Even if the reader does not appear to continue
    below.

    Then, work your way through these - don't forget the drive might be bad, could be a coward
    cable or slight corrosion on the contacts (usually for a laptop) and other issues.

    Your CD or DVD drive is missing or is not recognized by Windows or other programs
    http://support.microsoft.com/kb/314060 - a Mr Fixit

    Try this fix manually if the Fixit 314060 does not work
    http://www.pchell.com/hardware/cd_drive_error_code_39.shtml

    Your CD or DVD drive is missing or is not recognized by Windows or other programs-
    a Mr Fixit
    http://support.Microsoft.com/kb/982116

    The CD drive or the DVD drive does not work as expected on a computer that you upgraded to
    for Windows Vista
    http://support.Microsoft.com/kb/929461

    When you insert a CD or a DVD, Windows Vista may not recognize the disc
    http://support.Microsoft.com/kb/939052

    Your CD or DVD drive cannot read or write media - A Mr Fixit
    http://support.Microsoft.com/GP/cd_dvd_drive_problems

    CD/DVD drive does not appear in Windows Vista, or you receive this error in Windows
    Vista installation after booting from the DVD (AHCI)
    http://support.Microsoft.com/kb/952951
    Drive CD - R or CD - RW Drive is not recognized as a recordable device
    http://support.Microsoft.com/kb/316529/

    Hardware devices not detected or not working - A Mr Fixit
    http://support.Microsoft.com/GP/hardware_device_problems

    Another possibility is that the cables are loose. Remove ALL power, then make sure that the cables in both
    ends. Remove and replace, do not just tight. For laptops, you can often clean power and
    contacts data with a pencil eraser.

    Some DVD players do not use the Windows default drivers so check with the manufacturer of system and
    manufacturer of device to see if there is a firmware or drivers for your drive if necessary.

    ===============================

    Step 2: You have disc problems as the CD/DVD is actually 4 discs in 1 case (CD & DVD
    Burn and CD and DVD read). So it is not unusual for 1 or 2 operational so that other parts
    do it right.

    Did you follow the Troubleshooting Guide for the reader who still does not work? There are
    the entries in registry that the troubleshooter does not solve and those who "might" be the cause.

    Check with your Maker system and a device for the two possible firmware updates and
    the correct registry entries for your car.

    Here are the keys that I of course are those in question - for the subkeys of the CD/DVD drive
    as there will be other subkeys in these keys. Do not forget to ask specific keys involved as well as
    the parameters.

    HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Enum\IDE

    HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Hardware Profiles\0001\System\CurrentControlSet\Enum\IDE

    HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Class\ {4D36E965-E325-11CE-BFC1-08002BE10318}

    -----------------------------------------------------------------------

    You can probably find more info here and maybe even the exact registry for your CD/DVD settings
    drive from someone with the same model.

    Forums - a lot of expert real help
    http://Club.myce.com/

    CD/DVD units
    http://www.myce.com/storage/

    Use DevManView to locate the CD/DVD in the registry (be careful and do a prior Restore Point)
    nothing change) - find the DevManView device and then make a right click on it free in RegEdit.

    DevManView - free - an alternative to the standard Windows Device Manager, which displays all the
    devices and their properties in flat table, instead of the tree viewer
    http://www.NirSoft.NET/utils/device_manager_view.html

    I hope this helps.

    Rob Brown - Microsoft MVP<- profile="" -="" windows="" expert="" -="" consumer="" :="" bicycle="" -="" mark="" twain="" said="" it="">

  • How to: format and reinstall the operating system

    Original title: is there a virus that downloads all the images that appear on windows xp family within 24 hours, I have acquired 17 000 images and used to my PC I want to enter windows in any mode

    I can't navigate what whether in safe mode with or without networking. How to flatten the system, which dates back to the original state that I'm not bothered about registering files images etc want just my PC to work

    Hi wendyspeariett,

    1. you receive an error message when you start in safe mode or normal mode?

    2. did you of recent changes on the computer?

    If you have access to the internet in safe mode with network, then you will need to scan the computer to remove all infections from the computer and check if that helps.

    http://www.Microsoft.com/security/scanner/en-us/default.aspx 

    You can also use Microsoft Security databases to scan your computer

    http://Windows.Microsoft.com/en-us/Windows/products/security-essentials

    If you want to format new Windows XP installation, you can move forward.

    A new installation is to remove all data from your hard drive repartition and reformat the hard drive and reinstall the operating system and programs empty (clean) hard disk.

    How to install or upgrade to Windows XP

    http://support.Microsoft.com/kb/978307

    How to partition and format a drive hard using the Windows XP Setup program

    http://support.Microsoft.com/kb/313348

  • Why IE9 does not recognize my Facebook account?

    Everytime I try to log in to my Facebook account I'm using again to login / register page when I use IE9. Mozilla Firefox not this problem with other Facebook.Someone who uses the same computer and the same IE9 doesn't has this problem either. They are able to use IE9 to access Facebook, but I can't. Therefore,. I m sticking with Firefox, which is actually slower than IE but that's all what I can use to FB.

    Hello

    1 did you do any change to your computer?

    2. this problem only occurs with the facebook?

    I suggest you follow the link and check.

    Can't access some Web sites in Internet Explorer

    http://support.Microsoft.com/kb/967897

  • Toolbox ThinkVantage vs old tools

    Hello

    I just downloaded the ThinkVantage Toolbox.  I have a Lenovo Value Line 3000 C200 laptop.  I was wondering if I even need the previous tools that came with the computer.  I can remove them?  The place where I bought my computer says they add a lot of overhead.  The machine is slow, so I was wondering if I can save space and transformation by deleting the old utilities of Lenovo care, such as logins, Client Security Solution, etc.

    Also, I plan on adding more memory (have 1.5 G now).  Is it easy to install for a person who has never opened a laptop before?

    Thank you!!

    do not hesitate to remove applications if you do not use / to improve performance.

    Maximum memory is 2 GB for your device. (2 x 1 GB)

    You may need the hardware maintenance manual.

Maybe you are looking for