Need help w / easy to update and recurring elements

What would be the easiest way to create a header that when I need to change or update that changes will be made universal throughout the site? (For example adding/replacement of the sensory buttons or update a logo. The header is a table with pieces sliced Photoshop) that would be helpful with some other recurring elements of the site. I'm a little fuzzy with CSS I depend mainly on the design mode. This is probably a simple solution I'm not find in my book, because I don't know exactly what I'm looking for good research. Thanks in advance.

Advice on when to use DW templates, library and Server - Side Includes-
http://www.Adobe.com/devnet/Dreamweaver/articles/ssi_lbi_template.html

IMO, the biggest drawback to the templates and library items is that you must republish the entire site whenever changes are made.  With SSIs, you change a file and put in the server.  Voila!  Job done.

Inclusions on the server side are only excerpts of reusable HTML code for the page of shared items such as headers, footers and menus.  No great mystery to really use.

http://forums.Adobe.com/message/2112460#2112460

More on DWTemplates and SSIs:
http://www.smartwebby.com/web_site_design/dreamweaver_template.asp
http://www.smartwebby.com/web_site_design/server_side_includes.asp

Nancy O.
ALT-Web Design & Publishing
Web | Graphics | Print | Media specialists
www.Alt-Web.com/
www.Twitter.com/ALTWEB
www.Alt-Web.blogspot.com

Tags: Dreamweaver

Similar Questions

  • Need help with Exchange 2010 Diag and implementation

    I NEED HELP FOR EXCHANGE 2010 DAG AND THE IMPLEMENTATION THAT CAN HELP-IM I IN THE RIGHT SUPPORT GROUP?

    Hello HectorLopez_790,

    Microsoft Communities is for consumer issues with Windows 8, Windows 7, Windows Vista and Windows XP. Your question with Exchange would be better supported in the TechNet forums.
    Click here for a link to transfer your question in the forums of Exchange.

    Thank you

    Marilyn

  • Need help with a Windows update it please...

    03/15/13, we had a storm, and when well even I had a surge protector for a reason, he put my date one (1) year until 15/03/14 which I didn't notice at the time, so when I started my pc, he had a update installtion, which was the following: good security for Windows Vista (KB2807986) update less say , my pc was a bit confusing, because until what I changed the actual date in the BIOS?  She had always installed this update for 2014, so my pc and the browsers would not work correctly until I changed the date.  But in the meantime, the correct installation of the certain this update was never made...  So, I need help on what to do.  How to remove this update? Or should I leave and just manually install the update correct?  According to what it is, I need help on how to do it and where to find the correct update?  Can someone help me please?  and thank you!  I have Windows Vista Ultimate 2007 ServicePack2 32bitOS

    Hello

    Thanks for posting your question on the Forums of community of Microsoft.
     
    1. what exactly is the problem that you are facing as a result of this update?
    2. do you get an error message?
     
    I suggest you to install this update manually and check:
    Reference:
    Update security for Windows Vista (KB2807986)
     
    See also:
    Remove an update
     
    I hope this helps.
  • Need help with windows 10 update

    I don't have this icon on my desktop so I can not to update or windows 10 reserve

    need help with this, I want to experience windows 10!

    I need a quick answer, I tried to find a way to book and I can't do anything

    Try this tool to upgrade your system: http://windows.microsoft.com/en-us/windows-10/media-creation-tool-install

  • With the help of MERGE for update and insert a table

    -Oracle 11 g
    -Windows 2008

    I'm working on a script which requires update on insertion according to requirement.

    I table_a in the Test database and table_b in a Production environment and want to sync database availability.
    I need help to place the dblink (where to put it etc.).
    Here's what I've got so far:

    / * Update the tables for the production of Test environment
    November 28, 2011
    */

    FUSION
    in prod.tbl_link P
    using (select * from test.tbl_link) T
    On(prod.tbl_link.link_id = test.tbl_link.link_id.ID)
    When matched then
    Update
    Set P.LINK_ID = T.L_LINK_ID,
    P.L_URL = T.L_URL =,
    P.L_TITLE = T.L_TITLE,
    P.L_DESCRIPTION = T.L_DESCRIPTION,
    P.ISSUE_DATE = T.L_ISSUE_DATE,
    P.PUBLICATION_DATE = T.L_PUBLICATION_DATE,
    P.LAST_MODIFIED_DATE = T.L_LAST_MODIFIED_DATE,
    P.L_ICON_NEW = T.L_ICON_NEW,
    P.L_ICON_RECENT = T.L_ICON_RECENT,
    P.L_ICON_NEW_FROM_DATE = T.L_ICON_NEW_FROM_DATE,
    P.L_ICON_NEW_TO_DATE = T.L_ICON_NEW_TO_DATE,
    P.L_ICON_RECENT_FROM_DATE = T.L_ICON_RECENT_FROM_DATE,
    P.L_ICON_RECENT_TO_DATE = T.L_ICON_RECENT_TO_DATE,
    P.ACTIVE_FLAG = T.ACTIVE_FLAG,
    P.MODIFIED_BY = T.MODIFIED_BY,
    P.MODIFIED_DATE = T.MODIFIED_DATE,
    P.CATEGORY_ID = T.CATEGORY_ID,
    P.SUBCATEGORY_ID = T.SUBCATEGORY_ID,
    P.SUBJECT_ID = T.SUBJECT_ID,
    P.STATUS_ID = T.STATUS_ID
    When not matched then
    Insert (P.LINK_ID,
    P.L_URL,
    P.L_TITLE,
    P.L_DESCRIPTION,
    P.L_ISSUE_DATE,
    P.L_PUBLICATION_DATE,
    P.L_LAST_MODIFIED_DATE,
    P.L_ICON_NEW,
    P.L_ICON_RECENT,
    P.L_ICON_NEW_FROM_DATE,
    P.L_ICON_NEW_TO_DATE,
    P.L_ICON_RECENT_FROM_DATE,
    P.L_ICON_RECENT_TO_DATE,
    P.ACTIVE_FLAG,
    P.MODIFIED_BY,
    P.MODIFIED_DATE,
    P.CATEGORY_ID,
    P.SUBCATEGORY_ID,
    P.SUBJECT_ID,
    P.STATUS_ID)
    values (T.LINK_ID,
    T.L_URL,
    T.L_TITLE,
    T.L_DESCRIPTION,
    T.L_ISSUE_DATE,
    T.L_PUBLICATION_DATE,
    T.L_LAST_MODIFIED_DATE,
    T.L_ICON_NEW,
    T.L_ICON_RECENT,
    T.L_ICON_NEW_FROM_DATE,
    T.L_ICON_NEW_TO_DATE,
    T.L_ICON_RECENT_FROM_DATE,
    T.L_ICON_RECENT_TO_DATE,
    T.ACTIVE_FLAG,
    T.MODIFIED_BY,
    T.MODIFIED_DATE,
    T.CATEGORY_ID,
    T.SUBCATEGORY_ID,
    T.SUBJECT_ID,
    T.STATUS_ID)

    You cannot update the same column that is used in the join.

    The error is been derived from here:
    on (t.status_id = s.status_id)
    

    http://asktom.Oracle.com/pls/Apex/f?p=100:11:0:P11_QUESTION_ID:556373000346392260

  • Dear community, I need help to change my email and rescue security question

    I need help to change my email of relief. First of all, I don't remember my Security Question. Second, when I click the reset security question and no email has been send to my email of relief. That's why I need help with these two questions

    Unless the email in a spam filter, you have to ask Apple to reset your security questions. To do this, click here and choose a method; If this page does not list one for your country or if you are unable to call, complete and submit this form.

    (137729)

  • need help with error in Update window

    error 80096001 that is the message I get I can't update

    Hi SejB,
     
    Welcome to the Forum of answers Windows Vista.
     
    This problem may occur if one or more of the following conditions are met:

    • Log file or database corruption exists in the folder % Systemroot%\System32\Catroot2.
    • Cryptographic services is set to disabled.
    • Other Windows files are corrupted or missing.
    • The timestamp signature or the certificate cannot be verified, or is incorrect.
    • The hidden attribute is set to the folder %windir%, or one of its subfolders.

    To resolve this problem, use the following methods. After completing the steps in each method, check to see if the issue is resolved before you go to the next method. If the problem is resolved by any method, you do not have to use other methods.
     
    Method 1: Rename the Edb.log file
     
    Rename the Edb.log file, and then try to install the program again. To rename the Edb.log file, follow these steps:

    1. Click Start, click run, type cmd in the Open box, and then OK.

      Note On a Windows Vista-based computer, click Start, type cmd in the box to search for text and right click on cmd.exe, and then click run as administrator.

    2. At the command prompt, type the following command and press ENTER:

    Ren %systemroot%\system32\catroot2\Edb.log *.tst

    Method 2: Set Cryptographic on auto Services

    Define Cryptography on AutoServices and then try to install the program again. To set the cryptographic on AutoServices, follow these steps:

    1. Start the Administrative Tools utility in control Panel.
    2. Double-click Services.
    3. Click Cryptographic Services, and then click Properties.
    4. Click Automatic for Startup type, and then click Start.

    Method 3: Reregister DLL files that are associated with Cryptographic Services
     
    To register .dll files that are associated with Cryptographic Services, follow these steps:

    1. Click Start, click run, type cmd in the Open box, and then OK.

      Note On a Windows Vista-based computer, click Start, type cmd in the Search box and right-click on cmd.exe, and then click run as administrator.

    2. At the command prompt, type the following commands and press ENTER after each command:

    regsvr32 /u softpub.dll
    regsvr32 /u wintrust.dll
    regsvr32 /u initpki.dll
    regsvr32 /u dssenh.dll
    regsvr32 /u rsaenh.dll
    regsvr32 /u gpkcsp.dll
    regsvr32 /u sccbase.dll
    regsvr32 /u slbcsp.dll
    regsvr32 /u mssip32.dll
    regsvr32 /u cryptdlg.dll
    output

    Note If you are prompted, click OK .

    Note Microsoft Windows 2000 does not include the Sccbase.dll file. If you are running a version of Windows 2000, omit the Sccbase.dll file.

    1. Restart your computer.
    2. Click Start, click run, type cmd in the Open box, and then click OK.
    3. At the command prompt, type the following commands and press ENTER after each command:

    regsvr32 softpub.dll
    regsvr32 wintrust.dll
    regsvr32 initpki.dll
    regsvr32 dssenh.dll
    regsvr32 rsaenh.dll
    regsvr32 gpkcsp.dll
    regsvr32 sccbase.dll
    regsvr32 slbcsp.dll
    regsvr32 mssip32.dll
    regsvr32 cryptdlg.dll
    output

    Note If you are prompted, click OK .

    Note Microsoft Windows 2000 does not include the Sccbase.dll file. If you are running a version of Windows 2000, omit the Sccbase.dll file.

    1. Restart the computer.

    Method 4: Remove the hidden %windir%\System32 and its subfolders attribute

    1. Click Start, click run, type cmd in the Open box, and then OK.

    Note On a Windows Vista-based computer, click Start, type cmd in the Search box and right-click on cmd.exe, and then click run as administrator.

  • At the command prompt, type the following commands, pressing ENTER after each line:
  • attrib s h % windir %
    attrib s h %windir%\system32
    attrib s h %windir%\system32\catroot2
    output

    Method 5: Define a signature unmanned silent success strategy

    1. Click Start, click run, type regedit, and then click OK.

      Note On a Windows Vista-based computer, click Start, type regedit in the Search box and click on regedit.exe, and then click run as administrator.

    2. Locate and then click the following key in the registry:

    The HKEY_LOCAL_MACHINE\Software\Microsoft\Non-Driver signing

    1. Right-click on the Policy binary value, and then click change.
    2. The value data will appear in the following format:
    0000 02

    Press DELETE to remove the current value (02 in this example), and then type 0 (the current value will now appear as 00).

    1. Click OK, and then quit the registry editor.

    Method 6: Clear the temporary file and restart the hotfix installation or the service pack installation
     
    To clear the temporary file and restart the hotfix installation or the service pack installation, follow these steps:

    1. Remove all tmp*.cat of the following folders:

      systemroot\system32\CatRoot\{127D0A1D-4EF2-11D1-8608-00C04FC295EE}

      systemroot\system32\CatRoot\{F750E6C3-38EE-11D1-85E5-00C04FC295EE}

    2. Delete all the kb*.cat files in the following folders:

    % systemroot%\System32\CatRoot\{F750E6C3-38EE-11D1-85E5-00C04FC295EE}
    % systemroot%\System32\CatRoot\{127D0A1D-4EF2-11D1-8608-00C04FC295EE}

    1. Remove all the oem *. * files in the % systemroot %\inf folder.
    2. At the command prompt, type the following commands. Press ENTER after each command.

    net stop cryptsvc
    Ren %systemroot%\System32\Catroot2 oldcatroot2
    net start cryptsvc
    output

    1. Restart the installation of the patch failed or the installation of the service pack.

    Method 7: Empty the software distribution folder

    1. Click Start, click run, type services.msc and click OK.

      Note On a Windows Vista-based computer, click Start, type services.msc in the Search box, click services.mscand then click run as administrator.

    2. In the Services (Local) pane, click automatic updates, and then click stop.
    3. Reduce the Services (local) window.
    4. Select all the contents of the Windows distribution folder, and then delete them.

      Note By default, the Windows distribution folder is located in the folder drive: \Windows\SoftwareDistribution. In this place, the drive is a placeholder for the drive where Windows is installed.

    5. Make sure that the Windows distribution folder is empty and enlarge the Services (local) window.
    6. In the Services (Local) pane, click automatic updates, and then click Start.
    7. Restart the computer, and then run Windows Update again.

    You can also follow the link below:
     
    You cannot install some programs or updates
     
    http://support.Microsoft.com/?kbid=822798
     
    I hope this helps.
     
    Concerning
    Rehman - Microsoft Support

  • Need help, connect to the wifi and Panel set to work.

    Let me start by saying that I recently downloaded malware bytes and microsoft security essentials. Malware found 4 corrupted files. I deleted the and also received a warning that the files needed to restore. I restarted the computer and then I realized that the computer wouldn't connect to the Internet wirelessly. There is no any wifi connection possible. I tried to access the firewall via the Control Panel, but I received a message saying that something is misspelled, and I needed to check my spelling and try again. I can't access anything in the control panel. I then returned to malicious software and restored the files and I don't know if it restored. Again, I have no wireless connections and cannot use Control Panel. I did a restore there when I knew that nothing was wrong with her, but he says that there is no change for a week about a week ago. I need help!

    What are the 'properties' can you get not to?

    If you were not able to see something like this picture--> http://www.askdavetaylor.com/4-blog-pics/windows-system-properties.jpg

    or you have to this Properties dialog box, but the part of the circle includes all mention of the Service Pack,

    Then, it's probably time for you to go to a good independent store (place of type no BigBoxStoreUSA or geeksquad) computer repair.  If they think they can reinstall Windows, ask them to back up your data (files, photos, music) first.  Ask them to tell you the consequences of reinstalling Windows before they do.

  • need help to install microsoft office and Student 2007 disc

    When I try to install it it rpet ' set up can not find Office.en-us/OfficeLR.cab browse to a valid installation source and then click ok. I need help I do not know which folder to look in

    Uninstall the 1 trial.

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

    How to uninstall manually Office system 2007 if you cannot uninstall it by using the function "Add or Remove Programs".

    Office:

    http://www.Microsoft.com/Office/Community/en-us/flyoutoverview.mspx

    Office newsgroups

    http://www.Microsoft.com/Office/Community/en-us/default.mspx?DG=Microsoft.public.Office.misc&lang=en&CR=us

    Discussions of general issues of the Office.

    They will help you with your office questions when repost you in the Office discussion groups above.

    See you soon.

    Mick Murphy - Microsoft partner

  • Need help to reallocate the space and get rid of the double partitions?

    Can someone help me to reassign my data partition? I was trying to dual boot my computer with windows 8 and linux, but I failed miserably a year ago. After a month of research, I managed to get into my windows installation; However, all the data is irrelevant. I'm pretty sure that I moved my EFI boot files... something like that is called... I moved it in this space of 22 GB which is WAYYYYYYYYYY to much space for these files, which require that... ? 1000 mb or more? Anyway. I need help this hot mess of fixing. Thanks for any help. I really appreciate it. I know virtually nothing about it. Perhaps someone can guide me on how to fix everything by using linux? If there is there any program that can solve this too, that would be great. A free solution would be appreciated. Thank you all.

    Hello

    Thank you for visiting Microsoft Community.

    According to the description, I understand that you want to delete the partitions created on your PC under Windows 8 double. I will certainly help you to question.

    I suggest you refer to the suggestion made by Yann replied on 9 April 2015 from the link below:

    http://answers.Microsoft.com/en-us/Windows/Forum/windows8_1-performance/how-do-i-rectify-this-confusion-in-disk-management/afc2a41e-ef1c-4880-b4eb-05b960a6d8c3

    Hope this information helps

    Meet us with the State of the question.

    Sincerely,

    Ankit Rajput

  • Need help developing 'a server scenario' - and MOA & Stuff

    Hi all!

    I need help with the following scenario.

    I have several machines to virtualize via the DRAC or ILO, and I have to keep the local interation in a minimum possible.

    In some sites, I have only one server, do I need to create a virtual computer on a USB drive, install ESXi on this same machine and add to the ESXi virtual machine create earlier.

    I tried to use a CD multiboot I've done with the installer ESXi and MOA on the same disk, to eventually reach:
    1. create a VM with MOA (Windows 2008 R2) cold start
    2 - test this virtual machine with VMware Player on MOA
    3 - reboot
    4. install ESXi
    5 - create a VM 'work' of vsphere client (from my desktop over a wide AREA network)
    6 - start MOA on this work «VM»
    7 use moa to add my VM created in step 1 to the new ESXi


    I can't get to step 5, I can't find a way to import the virtual machine to ESXi, I tried adding converter 5 MOA Build, but no dice. Above all I do not see my ESXi host, or I get another error when you try to run the converter 5 4 or 3, the converter to connect on a Vserver, witch, I have not at this time here.

    So any who has any light for me or another possible scenario to reach my goal?

    Of course - there are several ways to do so.

    You say you have Workstation on your generation? -Then, you also have vmware-vdiskmanager.
    With vdiskmanager you can import VMDK in ESXi.

    Other options will need to use WinSCP to transfer the virtual machine - vmkfstools can be used if you are generating MOA with NFS support.

    Recently, I found a way to use the latest Converterversions so...

    If you like to meet via Skype and we know which option is best for your users

  • need help to trigger to update the change of columns of a table

    Hi all
    I need help in the manufacture of change update trigger in the columns from one table to another table.
    For example, table (col1 col 2 col 3 col 4 col 5 samplea
    .. .Col 20

    Now if I do any change in one of the data column must be changed to
    sample_copya... table that contains duplicate column

    So for this I thought to create a trigger with the following logic



    If updating (col1) then
    Update sample_copya set col1: =: new.col1 where n ° 1 =: new.no1;
    Otherwise, if the update (col2) then
    Update sample_copya set col2: =: new.col2 where n ° 1 =: new.no1;
    Otherwise, if the update (col3) then
    Update sample_copya set col3: =: new.col3 where n ° 1 =: new.no1;

    end if;
    But how doi handle if all columns are changed or say 2 columns record the number of columns is more than 20...
    I would like to know if there is a simpler method to achieve...
    Thank you

    susf wrote:
    Hi all
    I need help in the manufacture of change update trigger in the columns from one table to another table.
    For example, table (col1 col 2 col 3 col 4 col 5 samplea
    .. .Col 20

    Now if I do any change in one of the data column must be changed to
    sample_copya... table that contains duplicate column

    So for this I thought to create a trigger with the following logic

    If updating (col1) then
    Update sample_copya set col1: =: new.col1 where n ° 1 =: new.no1;
    Otherwise, if the update (col2) then
    Update sample_copya set col2: =: new.col2 where n ° 1 =: new.no1;
    Otherwise, if the update (col3) then
    Update sample_copya set col3: =: new.col3 where n ° 1 =: new.no1;

    end if;
    But how doi handle if all columns are changed or say 2 columns record the number of columns is more than 20...
    I would like to know if there is a simpler method to achieve...
    Thank you

    What is the purpose of this trigger?
    How can you be sure that ' where n ° 1 =: new.no1 "is true?
    How does line in the SAMPLE_COPYA table at the start?
    only the last modified value will lie in SAMPLE_COPYA than the previous values is written more

  • Need help resolution Windows 7 update error code 80242016 for update KB3185330 * IMPORTANT UPDATE

    I installed 5 updates to windows that have been brought to my attention.  4 5 updates were installed successfully.  But 1 updates that is marked "Important" CANNOT install.  The update is "KB3185330", it says it's an update to "October 2016 cumulative monthly security for Windows 7 x 64 based systems quality".  Can someone please help me to rectify this & this update installed successfully.  I never had problems before installing an update 'important '.  I am very concerned because I'm not a person tech savy, but I guess that if the update said '' significant '' than he SHOULD CERTAINLY be installed.  I kept all of my updates of Windows 7 since I got my computer.  I did NOT any changes to my computer before trying to update & as I said before, 4 other updates have been "successful".  I would appreciate the help of anyone who is well informed about it and can give me EASY instructions on what went wrong AND how to fix it.  Thank you in advance.

    Hello

    To address your concerns about the error message the update is not applicable to your computer , you can visit this link and follow the steps carefully.

    Let us know how it goes.

  • BlackBerry Z10 need help with the facebook chat and notifications

    Hey, guys.

    Since I updated to version 10.2.1.2102 of the software I was not able to receive messages from the hub of blackberry facebook chat. Before the update whenever I had my phone connected to a wireless network it was automatically getting messages facebook on the hub. Now, although I can send messages and receive messages if this contact is online, once I close the conversation hub is gone and I don't get the messages, only the "new messages of * person *" e-mail after a certain time.

    In addition, I don't get notifications about birthdays of the people. I get the "next event" x hours notification on the lock screen, if I go in the calendar I see the notification at the top of the page, but it does not sound to warn me of my birthdays from the contacts.

    Can someone help me with this two problems? Thank you!

    Fact. I needed to update the facebook app.

  • Need help to change the background and more

    Hey everybody! This is my first post on this forum so excuse me if its not very good.

    Now, at school, we experience a realization project and I and my group want to impress the teacher really a lot of movies. We decided that our film will be defined on a boat on the way to the sink, and before it sinks you get to know the different families/people on the boat and how all this turns out to these families when the boat begins to sink. But the problem is that we don't have a boat. But I have after effects, and a normal size sheet that is completely blue, which can be used as a blue screen!

    I know how to chroma key easily, but some scenes are in need of a big blue screen we have
    So I spent a few hours now looking for a tutorial on how maybe change the background without anything like a blue screen , but I can't seem to find a good tutorial that helps me with what I want help with.

    E.g. one of our scenes are cars climbing on the boat and the blue screen is not big enough to cover the entire car and the Earth under our car is gravel, and I can't have that. So is there anyone here who knows a few videos on the internet that could help me, or a kind soul who could write me a text tutorial on how to do this?
    / Friendly, Axel.
    (btw I'm Swedish so excuse for bad spelling/grammar)

    There are many times when a green screen is not wide enough to cover all the material. You end up using a combination of green screen and Rotoscoping. In your car drive you to the boat example would position the blue screen before the blue screen was behind the windows of the car because that would be the most difficult parts of the car for Rotoscoping in hand. It would be easy enough to rotoscope the wheels and underside of the car.

    Take a look at this video from Lynda.com - a really great source after effects training. It will show you how the various masks are used to clean up a green screen when it does cover the whole.

    There was a lot of publicity for Singapore Airlines called Across the World who had an actress works continuously with a shot that she moved seamlessly from San Francisco to Paris to Venice and across transitions, she walked in front of a green screen that was just big enough to cover here head and shoulders because it is very difficult to rotoscoping hair and hands when they move. I took a quick glance for the behind the scenes video that was produced when they initially released the commercial but couldn't find the exact. If you look closely in this video, you will see people moving green screens around as she walks.

    This technique is still used on hit movies. Note here the green screen that does not hide the bottom of everything, just the parts that would be very difficult if not impossible to Rotoscoping.

Maybe you are looking for

  • Adapter Lenovo RS110 and Intel RSAII (T 44, 1412) won ' t boot

    I installed adapter IBM RSAII. Once I started, I get a d2 of error message from the bios which means: interruption D2 unknown error. Do you know where can be a problem? I also tried to plug the SYS MGMT (RJ45) port. My network card on the laptop regi

  • A single Motorola XOOM WiFi?

    Anyone see this? http://www.droid-life.com/2011/02/09/did-a-WiFi-only-Motorola-Xoom-pass-through-the-FCC-today/

  • ENVY 5640: Print only in grayscale

    Photoshop CC: In the printer dialog "color options" selection is missing. In the applications Office 11 is even the selection "show invisible characters" missing. Not possible to contact an HP support supportengineer.

  • P1102w cannot be accepted

    I have been successfully using my HP LaserJet P1102w printer with my iMac running OS 10.6.8.  Today I leave my daughter to connect his laptop to my printer window.  It is automatically downloaded and installed the drivers and the printer worked fine.

  • why I'm notget hibernation?

    I reinstalled XP, but I can't get the hibernation. The STANDBY button is disabled. Could you help me?