CSS11506 - Some basic help needed

Alright, I have a CSS11506 in the lab and I am trying to configure it into a reverse proxy config. So I would like to have all inbound http requests hit the CSS and then have it redirect to our web server on correct DMZ. Having never setup a CSS before I need some help.
- Is my service type proxy-cache, type redirect or type transparent cache ?
I know this should be fairly easy to do with the 11506. Can you also provide some docs explaining the config walkthru.
Any help would be appreciated.
Cheers
Dave

Thanks, that explains a few things.
So assuming the following, DMZ web server ip is 192.168.20.50 and VIP for CSS is 192.168.20.100, basically I would want to redirect all inbound http requests from 192.168.20.100 to the 192.168.20.50 using the following CSS config ?
service rprox1
ip address 192.168.20.50
protocol tcp
port 8080
active
owner clee
content redirect_rule
add service rprox1
vip address 192.168.20.100
protocol tcp
port 8080
url "/*"
Like I said, never configured one yet so this is my first attemtp.
Thanks again for the help
Cheers
Dave

Similar Messages

  • Some Basic Help Needed...

    Alrighty, I don't know why this is being difficult. All I want to do is create an application that opens a window, puts a panel in it, and paints an image on the panel.
    Here is what I have:
    import java.io.*;
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    public class Arena
         static JFrame ArenaWindow;
         static JPanel Battlefield;
         static Toolkit toolkit = Toolkit.getDefaultToolkit();
         static Image image1 = toolkit.getImage("C:\\j2sdk1.4.1\\bin\\coll.jpg");
         public static void main(String[] args)
              ArenaWindow = new JFrame("Arena - The Game!");
              Battlefield = new JPanel();
              Battlefield.getGraphics().drawImage(image1,0,0,Battlefield);
              ArenaWindow.getContentPane().setLayout(new GridLayout(1, 1));
              ArenaWindow.getContentPane().add(Battlefield);
              ArenaWindow.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
              ArenaWindow.pack();
              ArenaWindow.setVisible(true);
    }This compiles fine, but generates a NullPointerException during runtime. I'm almost certain it's because I'm using the wrong syntax to paint the image. Can anyone lend a hand and show me where I'm going wrong?

    Get Graphics will return null as it has not yet been displayed to a screen.
    Plus you have put the drawing of the image in the paint(Graphics) of the JPanel, else it will not redraw when the window is hidden.
    Finally, placing images in the jdk bin folder is not recomemened, place it in the same folder as the .class file, and use this.getClass().getResource("pictureName.pic");
    import java.io.*;
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    public class Arena
      static JFrame ArenaWindow;
      static JPanel Battlefield = new JPanel() {
      public void paint(Graphics g) {
         g.drawImage(image1,0,0,Battlefield);
      static Toolkit toolkit = Toolkit.getDefaultToolkit();
      static Image image1 = toolkit.getImage("C:\\j2sdk1.4.1\\bin\\coll.jpg");
      public static void main(String[] args)
        ArenaWindow = new JFrame("Arena - The Game!");
        if(Battlefield.getGraphics() == null)
           System.out.println("See, getGraphics returns null.");
        ArenaWindow.getContentPane().setLayout(new GridLayout(1, 1));
        ArenaWindow.getContentPane().add(Battlefield);
        ArenaWindow.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        ArenaWindow.pack();
        ArenaWindow.setVisible(true);
    }

  • Some urgent help needed with MobileMe suddenly saying my password is wrong

    Hi
    First of all I want to say sorry if this is in the wrong forum, but I needed some urgent help and I couldn't find a forum other than this that might relate to this issue.
    The issue that I am having is with my MobileMe Account. I was on my Mac, when when my MobileMe Account suddenly dropped its connection and told me that I had entered the wrong username or password (I know I hadn't) I tried to re-enter them but every time I try I just get a message that says I have entered the wrong username or password. I no longer have access to my Mail, I can not sing-in to MobileMe to access my online account and it wont let me change the password because it keeps saying that safari can not open the page.
    I can not sign-in to my MobileMe folders on my Mac and it wont sync. I was signed in perfectly fine before this happened so I know its nothing to-do with my password or user name.
    I am now locked out of MobileMe and need some help as to what might have went wrong
    Can someone please give me some quick help as this is really worrying me as I am afraid my MobileMe account might of been hacked (that is the kind of behaviour that I am seeing - saying that my username and password are wrong, when they are not, and not letting me sign in to change them)
    Huge thanks

    Ughhh,
    it seems my panic was for nothing. I just ran apple 24 hour support and they put it right for me it cost me but I'd rather be safe and pay then loose all the information I have on MobileMe. This has taught me a lesson anyway, I need to keep a backup of everything and not just rely on time machine

  • Some basic help in Threads

    Hi all,
    I have some basic problem regarding use of thread.I have a class A (with main method )which creates 5 instance of class B say b1,b2,b3,b4,b5.This class B extends thread.
    Now within main of A i spawn 5 thread by calling b1.start(),b2.start(),b3.start(), b4.start(),b5.start().
    Now contraint is at any time A can spawn only 5 threads.For this there is another class C that has private variable count and 3 synchronised method one which increments count , second one decrements count,third one returns count and same instance of this class is pass to each of the thread.
    Before terminating each thread calls decrement method of this object .
    After spawning 5 thread main thread sleeps for some defined time and whenever it wakes up it checks if count is less than 5 if yes then it spawns new thread and call increment method.
    Now i want to avoid the logic of main thread sleeping for some defined time than waking up checking value of count and rather want a logic in which main thread sleeps and wakes up only when one of the thread terminates.Thus unnecessary checking of value of count is avoided.
    There must be way for this because this is very common problem which many of you might have faced.I have simplified by problem because this is one of the concept on which design of my application depends.If any one has found some tutorial or code example which describes similar problem then kindly let me know.
    Regards,
    beginner83.

    Hi all,
    I have some basic problem regarding use of thread.I
    have a class A (with main method )which creates 5
    instance of class B say b1,b2,b3,b4,b5.This class B
    extends thread.Well, that's not a good start. It's generally not a good idea to extend Thread, instead the class with the Thread's execution run method should implement Runnable and be attatched to a Thread object when the Thread object is created.
    Now within main of A i spawn 5 thread by calling
    b1.start(),b2.start(),b3.start(),
    b4.start(),b5.start().
    Now contraint is at any time A can spawn only 5
    threads.For this there is another class C that has
    private variable count and 3 synchronised method one
    which increments count , second one decrements
    count,third one returns countSo how about a method to the class which causes the calling thread to wait while the thread count is five or more. Then your main method can include this in it's thread-starting loop.
    See Object.wait and Object.notifyAll().

  • Really basic help needed

    I've never done any web work other than look at it. (and buy too much stuff) Now I'd like to set up a family web site (pictures and announcements) on the "free" site available through my provider. I have no idea how to do it; no concept of how a web page or information source is created. Can someone direct me to a rudimentary education source?
    My provider recommends Fetch, Anarchie, or Transit. Would one of these have enough instructions to get me started?
    Thanks
    Geoff Kloster

    Geoff K wrote:
    My provider recommends Fetch, Anarchie, or Transit. Would one of these have enough instructions to get me started?
    Geoff ~ Transmit has a Transmit+iWeb tutorial. Fetch has an _Uploading Webpages_ and _Using Fetch with iWeb_ tutorial.
    Can someone direct me to a rudimentary education source?
    Apple has some basic _iWeb video tutorials_ and here's a _tutorial based on iWeb '06_.

  • What are some basic but need to know terminal commands?

    just want to know some basic commands

    You can't find out for yourself? Search Google. This is not a site for Unix tutorials.

  • Complete Novice Needs Some Basic Help

    Hi!
    I'm sorry to clutter up the discussion with such basic questions, but what I want to do is get something from a cassette tape to my iPod. I'm told I can do this through GarageBand, and I have an audio cable that the guy in the Apple store said I would need. I'm not even sure where to plug this cable in. So any help in where I plug this in, or what I do next would be tremendously appreciated. If someone could even tell me where to look for help that would be great (when I look in GarageBand help its saying something about MIDIs and I don't even know what that is). Eternal gratitude for any help....

    Oh man, this is frustrating and I might give up soon!
    So in System Preferences, Sound I have 2 things,
    Internal Microphone (port is Built-in) and Line In
    (port is Audio line-in port). I can't seem to
    select one or the other, they're just there.
    Yeah, there is no "apply" or "OK" or anything like that. Just click on the Line-In so that it is highlighted and close the system preferences. That takes care of that. My PB G4 automatically detects when I plug in my line-in now that it is set up.
    Then in GB preferences, I only have the option of
    Built-in Audio, there is no other option.
    Built-In audio is correct in GB prefs.
    I also couldn't find where you were saying to
    double-click...what's the track header? I've clicked
    everything and can't find a monitor drop down menu
    option.
    The track header is the left-hand side of the track where there is a small speaker or instrument. For what you are doing, you need to create a new basic track. (Under "Track" in the menu bar, click "New Basic Track") You should have a new blue track that is labeled "No Effects." Double click on the speaker image and a dialog box will appear. Right in the middle of this box there are options for Input, Volume, and Monitor. You can turn on and off monitor abilities here.
    On the plus side, the connector I have seems to
    work...its male/male 1/8".
    Perfect.
    Thanks again and if you want to bail out, I
    completely understand!
    Hang in there. We were once all newbies to this digital recording stuff too.

  • I'm a newbie and need some basic help...

    I'm a newb trying to teach myself Director. I'm trying to
    make a menu and I'm having some problems....
    I have 3 main buttons. When you click one of the main
    buttons, 3 sub buttons pop up next to the button pressed. When one
    of those sub buttons is pressed, a box pops up to the right of the
    sub buttons and has a list inside containing links to movies. When
    one of the links is pressed i want the movie to take the place of
    the links in the box. When the movie is done playing it will
    disappear and show the links again.
    I uploaded what I have done here...
    http://www.lohrmandesign.com/uploads/Template.dir
    If you look at it, could you tell me what I've done
    correctly, and how I should go about implementing the rest of the
    menu? I imagine you have to use director movies within the main
    director movie, but I haven't figured out how to implement that. Or
    possibly use the .visible command? Thanks for any help...Online
    resources and examples are scarce for Director it seems.
    And I'm not sure if i have to upload all the pics for you to
    view my movie correctly, If I do, just let me know...

    quote:
    Originally posted by:
    Newsgroup User
    I haven't looked at your Director file, but what you want to
    do sounds
    pretty simple. First of all, though, can you clarify what you
    mean by
    "movie," because Director's terminology makes it kind of
    confusing. Are
    you speaking of a Director movie, or digital video?
    If you want to jump to a different Director movie, simply do
    something
    like this:
    on mouseUp me
    go to frame "StartMovie" of movie "Option1"
    end
    To get back to your menu, just use an exitFrame command at
    the end of
    the Director movie that takes you back there.
    If you're referring to starting a digital video, just put
    your video
    somewhere in the same Director file your menu is in, label it
    with a
    marker, and simply jump to that marker. Like this:
    on mouseUp me
    go to frame "Video1"
    end
    To get back to your menu at the end of the video do something
    like this:
    on exitFrame me
    if sprite(5).movieRate = 1 then
    go to the frame
    else
    go to frame "Menu"
    end if
    end
    Hope that helps.
    Sorry, I should have clarified...When you click on a sub
    category button, a Quicktime video will play, not a Director
    "movie"...Thanks for the help! using the method you described, that
    would make the menu disappear when the video is played, and reload
    the menu when the movie is done, right? I want the menu to stay
    visible while the movie is playing...

  • Started with a networks project,needed some basic help.. (Newbie)

    Hi all,
    Im planning on writing an app that will communicate with my server and a telecom gateway... Which will send and recieve data...
    Im a beginner to java itself and have taken this up as a project.
    I would like to know what needs to be learnt(Im familiar with OO concept and have done a bit on java for now, but not this extent.)
    Primarily I will be dealing with mulit-threading and so on.
    Could you please point me out to some details...
    If this info is not sufficient ,I'll provide more.
    Regards

    You will find that google is very useful if you are getting started.
    [http://www.google.co.uk/search?q=java+tutorial+networking]
    [http://www.google.co.uk/search?q=java+examples+networking]
    [http://www.google.co.uk/search?q=java+tutorial+threading]
    [http://www.google.co.uk/search?q=java+examples+threading]
    If you have question, try searching for it as the question will have been asked before.

  • Need some basic help with applets

    Hey all, I've never made an applet before and I'm having a small problem. Basically, when I load my applet, the GUI comes up on a separate window (doesn't load within the applet window). Here's my code:
    Here's the GUI class.
    import java.awt.BorderLayout;
    import java.io.File;
    import java.util.Vector;
    import javax.swing.DefaultComboBoxModel;
    import javax.swing.DefaultListModel;
    import javax.swing.JButton;
    import javax.swing.JFileChooser;
    import javax.swing.JList;
    import javax.swing.JScrollPane;
    import javax.swing.JTextField;
    import javax.swing.JTextPane;
    import javax.swing.ListModel;
    import javax.swing.WindowConstants;
    import javax.swing.SwingUtilities;
    * This code was edited or generated using CloudGarden's Jigloo
    * SWT/Swing GUI Builder, which is free for non-commercial
    * use. If Jigloo is being used commercially (ie, by a corporation,
    * company or business for any purpose whatever) then you
    * should purchase a license for each developer using Jigloo.
    * Please visit www.cloudgarden.com for details.
    * Use of Jigloo implies acceptance of these licensing terms.
    * A COMMERCIAL LICENSE HAS NOT BEEN PURCHASED FOR
    * THIS MACHINE, SO JIGLOO OR THIS CODE CANNOT BE USED
    * LEGALLY FOR ANY CORPORATE OR COMMERCIAL PURPOSE.
    public class GUI extends javax.swing.JFrame {
              //Set Look & Feel
              try {
                   javax.swing.UIManager.setLookAndFeel("com.sun.java.swing.plaf.windows.WindowsLookAndFeel");
              } catch(Exception e) {
                   e.printStackTrace();
         private JButton openB;
         private JButton oddsB;
         private JScrollPane jScrollPane1;
         private JList jList1;
         private JTextField fileText;
         private Vector<String> jList1Objects;
         * Auto-generated main method to display this JFrame
         /*public static void main(String[] args) {
              SwingUtilities.invokeLater(new Runnable() {
                   public void run() {
                        GUI inst = new GUI();
                        inst.setLocationRelativeTo(null);
                        inst.setVisible(true);
         public GUI() {
              super();
              initGUI();
         private void initGUI() {
              try {
                   setDefaultCloseOperation(WindowConstants.DISPOSE_ON_CLOSE);
                   getContentPane().setLayout(null);
                        //Text field for file entry
                        fileText = new JTextField();
                        getContentPane().add(fileText);
                        fileText.setBounds(0, 0, 279, 25);
                        //Scroll Pane and jList1
                        jScrollPane1 = new JScrollPane();
                        getContentPane().add(jScrollPane1);
                        jScrollPane1.setBounds(0, 25, 150, 328);
                             jList1Objects = new Vector<String>();
                             jList1 = new JList(jList1Objects);
                             jScrollPane1.setViewportView(jList1);
                        //Open button and Odds button
                        openB = new JButton();
                        oddsB = new JButton();
                        getContentPane().add(oddsB);
                        getContentPane().add(openB);
                        oddsB.setText("Calculate Odds");
                        oddsB.setBounds(679, 109, 105, 353);
                        openB.setText("Open File");
                        openB.setBounds(279, 0, 99, 25);
                        //Open Button action
                        openB.addActionListener(new java.awt.event.ActionListener() {
                             public void actionPerformed(java.awt.event.ActionEvent evt) {
                                  //Opens up hand history file to be read in
                                  JFileChooser fc = new JFileChooser();
                                  fc.setCurrentDirectory(new File("C:\\Program Files\\Full Tilt Poker\\HandHistory"));
                                  int returnVal = fc.showOpenDialog(getContentPane());     
                                  if(returnVal == JFileChooser.APPROVE_OPTION) {
                                       //Display file in text box
                                       fileText.setText(fc.getSelectedFile().toString());
                                       //TODO: Write function to read in file and add all Hands to jList1
                                       //Recompile jList1
                                       jList1Objects = new Vector<String>();
                                       jList1Objects.add(fc.getSelectedFile().toString());
                                       jList1 = new JList(jList1Objects);
                                       jScrollPane1.setViewportView(jList1);
                   pack();
                   setSize(800, 800);
              } catch (Exception e) {
                   e.printStackTrace();
    }Here's the class my HTML file calls:
    import java.applet.Applet;
    import javax.swing.JFrame;
    public class Main extends Applet{
         //Mainframe
         //JFrame f = new JFrame();
         public void init() {
              GUI inst = new GUI();
              inst.setLocationRelativeTo(null);
              inst.setVisible(true);
              //f.setContentPane(inst.getContentPane());
         public void start() {
            System.out.println("Starting...");
      public void stop() {
            System.out.println("Stopping...");
    }

    // <applet code='Main' width='400' height='200' ></applet>
    import javax.swing.*;
    public class Main extends JApplet{
        public void init() {
            GUI inst = new GUI();
            getContentPane().add(inst.getContentPane());
            validate();
        public void start() {
            System.out.println("Starting...");
        public void stop() {
            System.out.println("Stopping...");
    }Other notes:
    - You try to set the PLAF to Windows. which will not work on Linux and Mac (and if it did, the users would be screaming at you).
    - setLayout(null)/setBounds(int,int,int,int) is rubbish GUI development, it is fragile and will cause problems (especially if changing PLAFs)
    - Why did you not code this as a hybrid application/app?
    - The call to the JFileChooser will require a trusted applet, and it is pointing to the wrong place in seeking out the 'Program Files' directory, better to put configuration data/history data in a sub-dir or user.home.
    - This app. is much better suited to being deployed using Java Web Start. Forget the applet and use the frame, persistence can be obtained through the PersistenceService and that will side step both the application needing 'trust' and trying to find a suitable path for storing results of past games. JWS can launch the app. directly off the net, and provides auto-update and many other slick features.

  • Need some basic help with Acrobat and LiveCycle

    This is my first time using Acrobat and LiveCycle to design a form. Basically all I need is a title that is uneditable and underneath that I want to insert a text box so people can type in the box then print off the whole page with their comments. I can do all of that except the problem is when I insert the text box, the cursor is left justified but appears in the middle of the textbox. So when people start typing, there is a huge gap between the title and what they've typed. I want their typing to appear directly under the title. What am I doing wrong? See attached for a visual explanation. Thanks.

    You can have the text in the field top jusitied. This is controlled on the Font palette. Turn on the Font palette under the window menu. It usually will appear in the bottom right corner of the screen. Now highlight the field you want to adjust. Make usre the paragraph tab is slected. Click on the small dropdown arrow indictaed in yellow in the screen shot and select "Edit Value". Now click the top justification as indicated by the arroe in the csreen shot.
    Paul

  • Need some basic help -- my iTunes no longer plays all songs in my playlist

    I've created a holiday playlist, and for some reason iTunes will only play one song and then the music stops. I must manually press play to get the next song to play. The music also stops when I try to fast forward to the next song or back up and play the previous song. In either case, I can get the music going again by pressing play, but again iTunes will only play that one song.
    I've got checks next to every song in the list. I've been toggling repeat and shuffle on and off with no luck.
    FYI...I'm having no trouble with my other playlists. This is especially frustrating since my parents aren't interested in listening to my other music -- only the holiday tunes.
    Would appreciate anyone's suggestions for how to resolve.

    Solved it. Hold down option (alt) while launching iTunes, and it asks to locate the iTunes library. Point it at the file called "iTunes library". All is back where it belongs. Apparently pointing to it in the Advanced tab wasn't enough.

  • I need some basic help with Email setup

    Hello, I ve just been connected to infinity and I m trying to setup a few email addresses but the BT yahoo system is confusing me.
    I managed to create a new email (sub account) for my wife but I m struggling with finding a way to have a couple more for myself. Do I really need to make a sub account for each email?
    The default email has my name and surname in it which is not something I generally use for that purpose, I would only use that one for close friends and family, I would like to setup another one for general use and one for when there is a likelyhood it ll get a lot of spam.
    The way to add extra emails is usually very simple (with previous isps) , login to "manage my account" and choose username and password then enter the details in outlook express.
    With BT I m having to deal with the Yahoo thingy, which does a lot of more than just emails but at this time I have interest in it at all.
    1 - I would simply like to setup a few emails to use with outlook express, what is the best way to achieve that ?
    2 - The yahoo email seems to be part of a network like facebook, as I  don t intend to use that side of it I would prefer not to have my personal details associated with a profile that I do not  need . It seems to be for public viewing by default.
    Can I set up and use my emails without having an online profile for yahoo?
    How do i keep my details offline (not publicly viewable in yahoo)?
    thanks.

    yes!
    you get one prime email address. the one you agreed to and the one to set up your bt mail, it was in letter confirming bt set up. (order ref)
    for more for yourself, or anybody else,  its got to be sub. up to ten for INF2
    I have set up 4 sub accounts with different names, etc. but use the same password for all 5 .
    I then had them set up with outlook express, there is a bt prog to do this. look on site.
    Then I use incredimail as my final mail client, this also has a prog to set up from outlook express.
    so all my mail to and from me ends up in incredimail with my 4 sub accounts, using one as my prime.
    my bt prime I do not use, as it is my full name.
    so far so good, just a bit slow finding its way, like you my previous ISP (tesco) was less complicated, but slow copper wire.
    good luck
    Ronin22
    In the end we will all be star dust.
    Then start all over again.

  • Adobe Lightroom 4 - Some Questions / Help Needed

    Hi everyone.
    After advice from several experts, I've just purchased Adobe Lightroom 4. I've already got Photoshop CS5, but I was looking for something proper to organise my photos, plus I found Lightroom easier to do the sort of editing I am wanting to do. Now, I only really use photoshop for things like colour pops, or really in-depth editing. Anyway, I'm loving Lightroom so far, but there is some stuff I'm not very sure of, so I'd appreciate some help
    1. Organising
    Firstly, I'm not really sure how to organise. At the moment, I've just got lots of folders with random events in My Pictures on W7, so I might have a folder called April 11, which contains photos from that month but that might have been a wedding or an easter holiday or both. So it doesn't really work. \
    I understand in Lightroom what catalogs are. But I know enough to know that I don't want to group mine into those, its getting too complicated. What I don't know though is the difference between a collection and a folder. Basically, I'm wanting to reimport and reorganise all my photos, so I want to put them into "events" as such like you can do on iPhoto on a mac, so I would have "France Summer Holiday 11" for example, or "Mia's Wedding". I'm not really sure on the best way to do this ...?
    2. Editing
    I've played around quite a bit so far, and I really like what I've seen. On a lot of photos, I've made a lot of changes. But from what I can see, these changes are stored merely in Lightroom itself. For example, at the moment I'm importing photos from my external disk into Lightroom, which then saves them in C://My Pictures/Lightroom/Pictures . When I go look at these photos in windows explorer which I know I have edited, it doesn't show any of the changes or editing I've done on them. Now I realise this is me being stupid, but why doesn't it? Supposing I then want to email that photo to a friend that I have edited? How would I do that? I don't want to have to open lightroom and export every single photo I edit? There must be a simpler way?
    Likewise for backing up, because all my files are in subfolders within C:// My pictures / Lightroom / Pictures, to back up I was simply going to set up windows to copy that latter folder onto my external HDD everytime I plugged it in. This would be pointless however if it isn't physically overwriting the original photo with my edited version?
    3. Editing 2
    Something else I like to do is make lots of different edits to the same photo. For example, at the moment I'm editing a photo of a pier at night. I spent ages adjusting colours and lighting and so on, and now it looks great. But I would also like to save a copy of that photo with the "old age photo" effect preset on. Is this possible? and how do I do it? Other than obviously importing a duplicate?
    4. & 5. & 6 - Misc:
    4. Simple question - how do I add tags, keywords or comments if I haven't done it on import?
    5. My camera doesn't have built in GPS. Is it possible for me to manually geotag photos (in a batch, say for a Summer Holiday to NY), could I manually add a geotag for all these photos?
    6. I also forgot to add copyright information on import for some, is it possible to do this after import and how?
    7. I normally shoot in JPEG. I probably shoot shoot in RAW as everyone tells me to do so. Are there any significant advantages in terms of quality, and for editing with?
    Thanks for any help given. I appreciate this is a lot of questions, but I could really use the advice.

    Hi William,
    1. Organising
    Firstly, I'm not really sure how to organise. At the moment, I've just got lots of folders with random events in My Pictures on W7, so I might have a folder called April 11, which contains photos from that month but that might have been a wedding or an easter holiday or both. So it doesn't really work. \
    I understand in Lightroom what catalogs are. But I know enough to know that I don't want to group mine into those, its getting too complicated. What I don't know though is the difference between a collection and a folder. Basically, I'm wanting to reimport and reorganise all my photos, so I want to put them into "events" as such like you can do on iPhoto on a mac, so I would have "France Summer Holiday 11" for example, or "Mia's Wedding". I'm not really sure on the best way to do this ...?
    I am not so sure if you understand *catalogs*.
    You need a catalog, exactly 1 in my opinion. A catalog is a database. The Lightroom database, where records about your images are stored, including the pointers to your images, which are not inside a catalog! LR backups just does the backup of the catalog (i.e. a file ending .lrcat). You need to take care separately that your real images are backed up !
    Inside your LR database the best way to organize is via collections - this will give you what you want with "France summer holiday 11" etc.
    Folders are relatively unimportant, just storage buckets. They should be *handy portions*, I would prefer them with below 3000 images each, as there currently some bugs to those bigger ones.
    Before you start with LR, you can organize your pictures in Mac Finder / WindowsExplorer.
    Or you could do it with the help of LR, by copying your images over during import into the destination folders (and deleting today's folders afterwards after having verified that everything is fine).
    A simple date-based structure will do, I'd recommend  a root parent folder like "LR images", underneath one folder per year (\2010\, \2011\, \2012\...) and underneath them either
    just one folder per month (LR can auto-create them for you)
    or you create the folders in import dialog as e.g. "YYYY-MM-DD description of shoot", to have a mini-diary overview also in your OS.
    Apart from that you create collections, either *dumb ones*, where you drag images into, or smart ones, where you specify criteria according to which they get auto-filled.
    2. Editing
    I've played around quite a bit so far, and I really like what I've seen. On a lot of photos, I've made a lot of changes. But from what I can see, these changes are stored merely in Lightroom itself. For example, at the moment I'm importing photos from my external disk into Lightroom, which then saves them in C://My Pictures/Lightroom/Pictures . When I go look at these photos in windows explorer which I know I have edited, it doesn't show any of the changes or editing I've done on them. Now I realise this is me being stupid, but why doesn't it? Supposing I then want to email that photo to a friend that I have edited? How would I do that? I don't want to have to open lightroom and export every single photo I edit? There must be a simpler way?
    Likewise for backing up, because all my files are in subfolders within C:// My pictures / Lightroom / Pictures, to back up I was simply going to set up windows to copy that latter folder onto my external HDD everytime I plugged it in. This would be pointless however if it isn't physically overwriting the original photo with my edited version?
    LR will never overwrite your original photos.
    You can save most of the catalog content into the xmp-part of the original photo, which is either a sidecar-file (.xmp) or part of the file format, like for DNG, TIFF, PSD, JPG. To do so you select the image in LR and hit <ctrl> s. Or you set it up for continuous update, which creates a lot of operations while you play back and forth in develop.
    I do that on my own, typically twice per file: once I am done with develop, once I am done with keywording and other metadata update.
    LR contains records about your images, i.e. a set of instructions how they are to be interpreted. That is all.
    So of course you need LR to export the result of these instructions, which is actually pretty quick.
    To backup your images you need to do that just once, plus you backup your LR catalog. Or if you save xmp to the files, you can do another backup once xmp is ready.
    I would not consider this pointless. You just have to think that there are 2 places with data for your images: the images themselves and a database with interpretation instructions.
    3. Editing 2
    Something else I like to do is make lots of different edits to the same photo. For example, at the moment I'm editing a photo of a pier at night. I spent ages adjusting colours and lighting and so on, and now it looks great. But I would also like to save a copy of that photo with the "old age photo" effect preset on. Is this possible? and how do I do it? Other than obviously importing a duplicate?
    Yes, this is one of LR's beauties: you create a so-called *virtual copy*, which is just a 2nd record for the same original image file with different interpretation settings, like black-and-white, a different crop size, different development etc. You can have as many virtual copies as you like, and you'll see them as additional thumbnails.
    Virtual copies are not saveable into xmp, though. There is another concept which is saveable into xmp: snapshots. but these are different states in develop history, and you do not see outside develop module that you have several.
    If you export virtual copies e.g. to jpg one file per virutal copy will be created.
    4. & 5. & 6 - Misc:
    4. Simple question - how do I add tags, keywords or comments if I haven't done it on import?
    5. My camera doesn't have built in GPS. Is it possible for me to manually geotag photos (in a batch, say for a Summer Holiday to NY), could I manually add a geotag for all these photos?
    6. I also forgot to add copyright information on import for some, is it possible to do this after import and how?
    7. I normally shoot in JPEG. I probably shoot shoot in RAW as everyone tells me to do so. Are there any significant advantages in terms of quality, and for editing with?
    Thanks for any help given. I appreciate this is a lot of questions, but I could really use the advice.
    ad 4: you use the library module, metadata panel to enter.
    ad 5: you use the map module. Either you manually drop your images on a map, or you have a separate GPS track to load and have LR assign via matching time-stamps.
    ad 6: like 4
    ad 7: You don't need JPG from your camera, you can achieve better results viy LR from RAW. Yes, there are significant advantages as to editing headroom.
    Overall, may I suggest my favorite learning material for LR? First watch Julieanne's Tutorial Videos.
    Then go play and use Victoria Bampton's eBook or paper copy of her "Missing FAQs to LR4": http://www.lightroomqueen.com/books/adobe-lightroom-4-missing-faq/
    Have fun,
    Cornelia

  • Basic help needed very much

    Hi,
           I have an Epson 3800 printer and Adobe Elements 7 (Epson advised me that I should buy some version of Photoshop to take full advantage of the printers capabilities).....Problem is need basic info on how to set all the buttons to make a decent print. There are many,many choices on various drop down tabs all through the process of making a print. Also, It seems that all my pictures are 72 ppi ...is this a default setting ? Or, did I do something wrong when I downloaded them from my camera ?  PLEASE help !   If at all possible someone could guide me through the process step by step I would be very, very grateful.  I need guidance from the download, through the myriad of buttons (ie: color management, size selections (why do I have to tell both Elements and the printer the size of my paper?!!$#@) what's up with 72ppi on all my pics, if i change to 300 ppi wont pics get worse ? )
    I called Epson and asked them to walk me through a print but they wouldnt because  they said  I'm going through Elements first and that is not their responsibility!  BUT THEY ADVISED ME TO GET ELEMENTS IN THE FIRST PLACE !!!
    Please help...I am an artist (painter) ...my website is www.theeastcoastartist.com I will send a free 8 X 10 signed print of a painting to anyone that can help me get a decent print or just tell me which settings to make each step of the way.
    Thanks,
    Frank

    Frank, here's a couple links to tutorials that may help. They use Photoshop but the print settings in Elements are similar enough.
    http://www.wonderhowto.com/how-to/video/how-to-print-from-photoshop-to-the-epson-stylus-pr o-3800-260408/
    http://people.csail.mit.edu/ericchan/dp/Epson3800/printworkflow.html
    As far as the resolution, stated in pixels per inch (ppi), the images from your camera have a fixed number of pixels, so resolution is determined by the size of the print...the larger the print, the larger the pixels, the lower the resolution. 300 ppi is considered optimum for printing...higher won't hurt, lower than 250 ppi may start to be noticable.

Maybe you are looking for

  • Help with "layer options" + frame fitting

    I don't really understand how layer options work in conjunction with frame fitting options. Sometimes I will have a number of illustrations embedded within the same illustrator file and rejig the layer visibilities in order to separate each one but I

  • Ipod Touch Stops Syncing

    Okay so after making a backup and restoring my Ipod touch, I was working on getting the backup back into it. It goes on smoothly until it runs into one song and then stops completely, freezing Itunes and after a while my computer until the error that

  • Some mail stuck in drafts after being sent.  Unchecking "keep drafts on server" doesn't stay unchecked

    Some of emails get stuck in drafts, even if they've been sent.  When I go to the preferences page and uncheck "keep drafts on server", then save it and exit, when I go back to it, it's checked again!  What am I missing?

  • Problems to get Jtable's data

    Hi I have has probles when I tried to get dato of my table, my table has 3 JComboBox, this is my code jTable1.setModel(new DefaultTableModel( new Object [][] {null, null, null, null}, new String [] "Columna", "Operador", "Valor", "L\u00f3gico" TableC

  • Argentina official document number range (Changing of XBLNR)

    Hi All, Working on a typical requirement. As some of you are aware, the official document number (XBLNR) is getting generated by system based on branch, document type, document class and print character. Is there any posibility to change this value b