Need Help! major newbie question

I'm trying to place cgi scripts onto the host server and the
folder is there but i can't find a way to place the scripts into
that folder without changing the main website folder, and when i do
it says i don't have access to that folder

Some ftp favorites:
WS_ftp
http://www.wsftp.com/
Cute FTP
http://www.globalscape.com/products/ftp_clients.aspx
File-zilla
http://filezilla-project.org/
(free open source)
--Nancy O.
Alt-Web Design & Publishing
www.alt-web.com
"timoteo06" <[email protected]> wrote in
message
news:ftof2t$mmi$[email protected]..
> alright, the folder where they're supposed to go is
called.
/var/www/cgi/bin, and any suggestions on another ftp client
>
>

Similar Messages

  • HT5621 Need help for security question. I forgot passwrd rescuee email. How to reset rescuee email?

    Need help for security question. I forgot passwrd rescuee email. How to reset rescuee email?

    How to reset your Apple ID security questions.
    Go to appleid.apple.com, click on the blue button that says 'Manage Your Apple ID'.
    Log in with your Apple ID and password. (If you have forgotten your Apple ID password, go to iforgot.apple.com first to reset your password with a password recovery email)
    Go to the Password & Security section on the left side, and click on the link underneath the security questions that says 'Forgot your answers? Send reset security info email to [email]'.  This will generate an automated e-mail that will allow you to reset your security questions.
    If that doesn't work, or  there is no rescue email link available, then click on 'Temporary Support PIN' that is in the bottom left side, and generate a 4-digit PIN for the Apple Account Security Advisor you will be contacting later.
    Next, go to https://getsupport.apple.com
    (If you see a message that says 'There are no products registered to this Apple ID, simply click on 'See all products and services')
    Choose 'More Products & Services', then 'Apple ID'.
    A new page will open.
    Choose 'Other Apple ID Topics', then 'Forgotten Apple ID Security Questions'.
    Click the blue 'Continue' button.
    Select the contact option that suits your needs best.

  • This is the same question I've asked 3x in 24 hours, but it doesn't appear in the listing. Maybe I need help in phrasing questions?:)Q. why can I play some DVDs on my MacBook Pro but not on desk top Apple (they're both -1 year olds

    Hi
    This'll be my third attempt in 24 hrs to ask the same question. maybe I need guidance on phrasing questions?:)
    Q. Why can I always play DVDs on my MacBook Pro but not always on my desk top Apple. They're both less than  year old. The desk top sometimes displays a message that says I have to change regions (from Australia to South America...doh...)

    Region Code 4:
    Mexico, Central and South America, and the South Pacific.
    Includes Antigua and Barbuda, Argentina, Aruba, Australia, Bahamas, Barbados, Belize, Bolivia, Brazil, British Virgin Islands, Chile, Colombia, Costa Rica, Cuba, Dominica, Dominican Republic, Ecuador, El Salvador, Falkland Islands, French Guiana, Grenada, Guatemala, Guyana, Haiti, Honduras, Jamaica, New Guinea, New Zealand, Nicaragua, Panama, Paraguay, Peru, Suriname, Trinidad and Tobago, Uruguay, Venezuela
    Apparently my first response was off in left field.  The DVD player has its own code.  My recommendation is to change the code when it asks.  It is possible that the disks that play correctly are region-free and the ones that don't have a region code.  If this does not work, you still have four more changes available; you won't be stuck with the new code.

  • Please, help a newbie:  Question about animating expanding containers

    Hi All,
    Short Version of my Question:
    I'm making a media player that needs to have an animation for panels sliding up and down and left and right, and the method I've been using to do this performs far slower than the speed I believe is possible, and required. What is a fast way to make a high performance animation for such an application?
    Details:
    So far, to do the animation, I've been using JSplitPanes and changing the position of the divider in a loop and calling paintImmediately or paintDirtyRegion like so:
    public void animateDividerLocation( JSplitPane j, int to, int direction) {
    for(int i=j.getDividerLocation(); i>=to; i-=JUMP_SIZE) {
    j.setDividerLocation(i);
    j.validate();
    j.paintImmediately(0, 0, j.getWidth(), j.getHeight());
    The validate and paintImmediately calls have been necessary to see any changes while the loop is going. I.e., if those calls are left out, the components appear to just skip right to where they were supposed to animate to, without having been animated at all.
    The animation requirement is pretty simple. Basically, the application looks like it has 3 panels. One on the right, one on the left, and a toolbar at the bottom. The animation just needs to make the panels expand and contract.
    Currenly, the animation only gets about, say, 4 frames a second on the 800 MHz Transmeta Crusoe processor, 114 MB Ram, Windows 2000 machine I must use (to approximate the performance of the processor I'll be using, which will run embedded Linux), even though I've taken most of the visible components out of the JPanels during the animation. I don't think this has to do with RAM reaching capacity, as the harddrive light does not light up often. Even if this were the case, the animation goes also goes slow (about 13 frames a second) on my 3 GHz P4 Windows XP if I keeps some JButtons, images etc., inside the JPanels. I get about 50 frames/sec on my 3 GHz P4, if I take most of the JButtons out, as I do for the 800 MHz processor. This is sufficient to animate the panels 400 pixels across the screen at 20 pixels per jump, but it isn't fast or smooth enough to animate across 400 pixels moving at 4 pixel jumps. I know 50 frames/sec is generally considered fast, but in this case, there is hardly anything changing on the screen (hardly any dirty pixels per new frame) and so I'd expect there to be some way to make the animation go much faster and smoother, since I've seen games and other application do much more much faster and much smoother.
    I'm hoping someone can suggest a different, faster way to do the animation I require. Perhaps using the JSplitPane trick is not a good idea in terms of performance. Perhaps there are some tricks I can apply to my JSplitPane trick?
    I haven't been using any fancy tricks - no double buffering, volatile images, canvas or other animation speed techniques. I haven't ever used any of those things as I'm fairly new to Swing and the 2D API. Actually I've read somewhere that Swing does double buffering without being told to, if I understood what I read. Is doing double buffering explicitly still required? And, if I do need to use double buffering or canvas or volatile images or anything else, I'm not sure how I would apply those techiniques to my problem, since I'm not animating a static image around the screen, but rather a set of containers (JSplitPanes and JPanels, mostly) and components (mostly JButtons) that often get re-adjusted or expanded as they are being animated. Do I need to get the Graphics object of the top container (would that contain the graphics objects for all the contained components?) and then double buffer, volatile image it, do the animation on a canvas, or something like that? Or what?
    Thanks you SO much for any help!
    Cortar
    Related Issues(?) (Secondary concerns):
    Although there are only three main panels, the actual number of GUI components I'm using, during the time of animation, is about 20 JPanels/JSplitPanes and 10 JButtons. Among the JPanels and the JSplitPanes, only a few JPanels are set to visible. I, for one, don't think this higher number of components is what is slowing me down, as I've tried taking out some components on my 3GHz machine and it didn't seem to affect performance much, if any. Am I wrong? Will minimizing components be among the necessary steps towards better performance?
    Anyhow, the total number of JContainers that the application creates (mostly JPanels) is perhaps less than 100, and the total number of JComponents created (mostly JButtons and ImageIcons) is less than 200. The application somehow manages to use up 50 MBs RAM. Why? Without looking at the code, can anyone offer a FAQ type of answer to this?

    You can comment out the lines that add buttons to the panels to see the behavior with empty panels.
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import javax.swing.Timer;
    public class DancingPanels
        static GridBagLayout gridbag = new GridBagLayout();
        static Timer timer;
        static int delay = 40;
        static int weightInc = 50;
        static boolean goLeft = false;
        public static void main(String[] args)
            final GridBagConstraints gbc = new GridBagConstraints();
            gbc.weightx = 1.0;
            gbc.weighty = 1.0;
            gbc.fill = gbc.HORIZONTAL;
            final JPanel leftPanel = new JPanel(gridbag);
            leftPanel.setBackground(Color.blue);
            gbc.insets = new Insets(0,30,0,30);
            leftPanel.add(new JButton("1"), gbc);
            leftPanel.add(new JButton("2"), gbc);
            final JPanel rightPanel = new JPanel(gridbag);
            rightPanel.setBackground(Color.yellow);
            gbc.insets = new Insets(30,50,30,50);
            gbc.gridwidth = gbc.REMAINDER;
            rightPanel.add(new JButton("3"), gbc);
            rightPanel.add(new JButton("4"), gbc);
            final JPanel panel = new JPanel(gridbag);
            gbc.fill = gbc.BOTH;
            gbc.insets = new Insets(0,0,0,0);
            gbc.gridwidth = gbc.RELATIVE;
            panel.add(leftPanel, gbc);
            gbc.gridwidth = gbc.REMAINDER;
            panel.add(rightPanel, gbc);
            timer = new Timer(delay, new ActionListener()
                    gbc.fill = gbc.BOTH;
                    gbc.gridwidth = 1;
                public void actionPerformed(ActionEvent e)
                    double[] w = cycleWeights();
                    gbc.weightx = w[0];
                    gridbag.setConstraints(leftPanel, gbc);
                    gbc.weightx = w[1];
                    gridbag.setConstraints(rightPanel, gbc);
                    panel.revalidate();
                    panel.repaint();
            JFrame f = new JFrame("Dancing Panels");
            f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            f.getContentPane().add(panel);
            f.setSize(400,300);
            f.setLocation(200,200);
            f.setVisible(true);
            timer.start();
        private static double[] cycleWeights()
            if(goLeft)
                weightInc--;
            else
                weightInc++;
            if(weightInc > 100)
                weightInc = 100;
                goLeft = true;
            if(weightInc < 0)
                weightInc = 0;
                goLeft = false;
            double wLeft = weightInc/ 100.0;
            double wRight = (100 - weightInc)/100.0;
            return new double[]{wLeft, wRight};
    }

  • Help STP newbie question!

    i selected a clip from FCP to send to STP. However i forgot to check off the "send only referenced media" check box. As a result the entire source clip ( may minutes long) shows up in STP and it is very cumbersome to find just the 10 seconds i need to de-noise in STP window. I am unable to find any way to change the save preferences so that i only send the referenced media. Have spent 2 hours on this .. There has to be a way to do this? any help would be majorly appreciated! i have a deadline for school project tommorow.
    Thanks much

    Quote
    Originally posted by nRosko
    Is there any place i can read about raid configarations not sure wether to bother or not.
    If you believe Storage Review, AnandTech and MaximumPC, don't bother with RAID 0 for single user setups if you are looking for performance.
    http://faq.storagereview.com/tiki-index.php?page=SingleDriveVsRaid0
    RAID 1 is mirroring, which means everything in drive A is backed up into drive B. If drive A suffers a hardware failure, you still have everything in drive B. However, if you deleted a file (intentionally or otherwise) from drive A, it's gone from both drives.
    Tom's Hardware has some articles introducing the various RAID modes.

  • Need help reinstalling Yosemite/Question about external hard drive

    I have an early MacBook Pro and I have to reinstall Yosemite because I've been getting nothing but spinning beach balls, slow loading, lag in type showing up, and wi-fi issues.  I took the laptop to the Genius Bar at the Apple store last week and they ran diagnostics on everything and all was perfectly OK.  No hardware issues, no memory issue and he said my laptop was very clean.  He saw the spinning beach ball many times while he was working on my laptop and suggested that I turn off File Vault as that could be causing the slowdown.  He said if that didn't work (it didn't) to buy an external hard drive (which I received today) and to back up everything through Time Machine then reinstall Yosemite.  I specifically bought an external HD that says "for Mac" and as soon as I connected it Time Machine opened and did the backup.
    Now these are my questions.  Are all my photos on iPhoto, and my Word for Mac documents backed up so that when I reinstall Yosemite, everything is going to be right where I left it?  Will I lose Word for Mac and have to reinstall it?  Isn't Word for Mac a one time use/install and will I have trouble and have to call Microsoft to input my authentication key in again and will they let me? I know silly questions but I'm really worried about losing stuff.
    Also step-by-step detailed instruction on how to reinstall Yosemite would really be appreciated.  Thank you!

    YoJoLo wrote:
    Are all my photos on iPhoto, and my Word for Mac documents backed up so that when I reinstall Yosemite, everything is going to be right where I left it? 
    If you have taken the backup using the Time machine then there is nothing to worry as all your photos from iPhotos and Word for mac documents are backup safely by your time machine.
    Only keep one thing in mind that the external HDD which you use for the time machine backup should have the capacity size of about 3-4 times that of your backup data size. Or else, the time machine external drive will start deleting the files if the external drive is about to be full.
    YoJoLo wrote:
    Will I lose Word for Mac and have to reinstall it?  Isn't Word for Mac a one time use/install and will I have trouble and have to call Microsoft to input my authentication key in again and will they let me?
    You absolutely don’t have to reinstall the Word for mac if its install in the first place because Time machine will backup the system installed files of your MS Word which you had installed.
    Word for mac is a one time install and you don’t have to call Microsoft for any authentication key after you have restored your Word backup files from the time machine drive. As I said before the time machine will backup your Word system installed files leaving you no chance to reinstall it again.
    YoJoLo wrote:
    Also step-by-step detailed instruction on how to reinstall Yosemite would really be appreciated.  Thank you!
    Here, Yosemite reinstall procedure......
    Important:    To reinstall OS X, you must be connected to the Internet. Make sure your power adapter is plugged in. Reinstall OS X using the built-in recovery disk.
    In the menu bar, choose Apple menu > Restart. Once your Mac restarts (and the gray screen appears), hold down the Command and R keys.
    Select Disk Utility, then click Continue.
    Select your startup disk on the left, then click the Erase tab.
    Choose Mac OS Extended (Journaled) from the Format menu, enter a name, then click Erase.
    Important:    Erasing the disk removes all the information from the disk. Be sure to back up the information you want to keep to an external device. 
    After the disk is erased, choose Disk Utility > Quit Disk Utility.
    Select Reinstall OS X, click Continue, then follow the onscreen instructions.
    Hope this helps.....

  • NEED HELP! Processor Question!

    Hey there! I just recently bought a mac pro and it comes with 2 dual-core xeon processors(still being shipped). I was wondering if I could upgrade to a quad-core i5. Some people say that I cannot. I need advice.

    It sounds like you have a 2006 Mac Pro 1,1. You can upgrade it to dual quad cores with any of the following Intel CPU's: E5345 (2.0 GHz), X5355 (2.66 GHz) or X5365 (3.0 GHz). Forget about the i5 - it won't even fit the socket. I did the upgrade from the dual core Xeon 5150 (2.66 GHz) to the quad core X5355. The actual time required to switch the cpu's is about an hour to an hour and a half. But before I started I spent about a month reading and rereading other people's postings about their experiences doing the upgrade. I'm retired and in my 70's so I have lots of time. A major complication that a number of people reported was that they were not able to remove two of the four screws holding the memory cage in place. These are the two screws at the front of the memory cage and are pointed down. So before I ordered my cpu's I made sure that I could remove these two screws. I would advise you to do the same. Remove the side panel and pull out both memory trays. Then see if you can remove the two screws at the front edge of the memory cage. If you can't you may want to quit. It is still possible to make the cpu switch with those screws in place but it is harder and it increases the chance of your breaking the catches on the heat sink cover. You'll need a Eklind 3 mm wrench (Amazon.com) and a small tube of Arctic Silver 5 (Amazon.com). These were about $6 each. I bought a pair of used X5355's on e-bay for $278 each. My Geekbench score went from 5200 to 9200. Handbrake times were decreased by a factor of 0.56.

  • I need help with some questions

    I seen where it said if something happens to your computer that you will loose the music you bought and downloaded . Will you also loose the information about your itunes gift card ?How do you run a diagnostic before you buy ? Is there a phone number to contat someone in this case , or could it be sent to my E-Mail address ? Also I would like to thank the people that helped me with my first question .

    It has always been very basic to always maintain a backup copy of your computer, so if somethign happens to your computer, you lose nothing, as you have a backup copy.
    "Will you also loose the information about your itunes gift card ?"
    When you redeem a gift card the balance is on your account.  It is accessible from anycomputer with itune, when you sign into your account.  This would not be affected by lodd of your computer.  Again, you should ALWAYS have a backup copy of your computer.
    "How do you run a diagnostic before you buy ? "
    Runa diagnostic of what before you buy what?
    "Is there a phone number to contat someone in this case , or could it be sent to my E-Mail address ?"
    Again,  in what case?  Could what be sent to your e-mail?

  • Need help! (Simple question regarding Soundblaster Wireless Music)(I ho

    Hey everyone, this might be a bit of a dumb n00b question but I'm having a problem with my soundblaster wireless music.
    The problem is that it won't shuffle any tracks.
    I have createdplaylists, populated them all very easily, but it will only play one track from each one. I have to select every single track it I want it to play manually on the remote. Using the 'Mode' button on the remote about all I can get it to do is repeat the same track over and over again.
    The only way i've been able to get it to shuffle is by loading a bunch of tracks into the "Now Playing" secton of the console but that seems a little tedius and kind of what i created the playlists for in the firstplace.
    Is this the way the software is supposed to function or am I missing something so simple that it will make me look dumb...

    When trying to play your play list with the remote are you going into the playlist before hitting play? You need to hit play at the playlist list level, not once you'e gone into a given playlist where the songs of the playlist are listed.
    W3

  • I Need Help for 2 questions please!

    Earlier I asked a question about how I can get notifications in the "Notification Center" on my MAC. Someone suggested that I reset the "App Store" by doing the following steps: PLEASE SEE THE PICTURE BELOW
    I did this. Now I cannot get the "Debug" off the screen each time I launch the "App Store". My first question is: How can I fix this?
    My second question pertains to my original question of not receiving ANY notifications of updates from the App Store in "Notifications". I have ALL the settings under "Software Update" in System Preferences set correctly to my knowledge (the first 3 boxes are selected). I don't know if the reset of the App Store worked or not as I have yet to get any notifications and there have been no new updates in the last hour since I did this. I did read this however http://support.apple.com/kb/PH11502 and I'm wondering if that could be my problem. If it is, how can I fix this? I have never disabled Spotlight on my "startup volume". I don't even know what that is. Can ANYONE please help?

    I don't know if you have Spotlight enabled or disabled at this point. Read the following article. Although it refers to Lion, the same commands to enable/disable Spotlight are available on Mountain Lion.
    The following may help clarify Spotlight for you.
    OS X Mountain Lion: What is Spotlight?
    Mac Basics: Spotlight.
    OS X Mountain Lion: Spotlight preferences
    Spotlight: How to re-index folders or volumes
    OS X Mountain Lion: Keywords to use in Spotlight searches
    OS X Mountain Lion: Shortcuts for searching with Spotlight

  • Need help fast :a question about jcomponent and jscrollpane

    I draw a graphic on a jcomponent like this :
    class drawrecttree extends JComponent {
    public void paint( Graphics g) {
    and I add this to jscrollpane:
    drawrecttree www=new drawrecttree();
    www.k_choose=k_valuenow;
    www.node=currentNode;
    www.setAutoscrolls(true);
    jScrollPane2.setViewportView(www);
    but I hope the jscrollpane can autoscroll,that means jscrollpane's size is 400*400,if the Jcomponent's size is 200*300, just add jcomponent;if jcomponent is bigger than 400*400,the jscrollpane can autoscroll,how can I do that?
    Edited by: hcgerard on Jan 8, 2008 2:18 AM
    Edited by: hcgerard on Jan 8, 2008 2:22 AM
    Edited by: hcgerard on Jan 8, 2008 2:52 AM

    Below is a small non-compilable unit (you need to add a few things of course) - but at any rate, here is some code that, if you get it working, you will see that the scrollbars do the right thing.
    public class TestScrollPane  extends JFrame {
      private Container     container;
      private JPanel        panel;
      private JLabel        label;
      private JScrollPane   scroller;
      public TestScrollPane() {
        container = getContentPane();
        panel     = new JPanel();
        panel.setLayout(new BorderLayout());
        /* Get you images here ...                */
        /* I will call them imageOne and imageTwo */
        label     = new JLabel(new ImageIcon(imageOne));
        panel.add(label);
        scroller  = new JScrollPane(panel);
        scroller.setPreferredSize(new Dimension(100, 100));
        container.add(scroller);
        pack();
        /* Rest of JFrame stuff */
      public static void main(String[] argv)  throws InterruptedException {
        TestScrollPane tsp = new TestScrollPane();
        Thread.sleep(5000);
        tsp.label.setIcon(new ImageIcon(tsp.imageTwo));
        Thread.sleep(5000);
        tsp.label.setIcon(new ImageIcon(tsp.imageOne));
    }

  • NEED HELP WITH A QUESTION ABOUT PURCHASING A NEW IPOD AFTER GIVING MY OLD

    IPOD TO MY SON. IT WAS FILLED WITH 3600 SONGS AND I STILL HAVE THOSE SONGS IN MY ITUNES LIBRARY. MY QUESTION IS CAN I BUY A NEW IPOD AND LOAD IT ON COMPUTER USING MY ITUNES LIBRARY--I MEAN WILL ITUNES AND MY COMPUTER RECOGNIZE THE NEW ONE. IF NOT, WHAT CAN I DO? JEFF

    You should be fine, just make sure the new one has the current firmware, dock it to the computer, & away you go.
    Please kill the "caps lock" key when posting, it's considered to be shouting & it's rude. Thanks.

  • Need help.. Question about connectivity of PS2 with Creative A2ZS Video Edit

    Hi everyone, i have question regarding creative A2ZS video editor.. please forgive me for my innocent question since im new here..
    I own a Play Station 2.. can this video editor allow me to connect my PS2 and show the display on the monitor so that i can play my PS2 game on the monitor? it's like functioning like a VGA box.. thanks!Message Edited by nicholas_23 on 05-9-200709:46 AM

    If you hook the standard analog video outputs of the PS2 (the ones that would go to the TV) into the Video Editor and get into the VidCap applet (free download from the Creative Website), drag the Preview window so its full screen, then you can use your laptop or desktop as a "TV".
    -Chrisi

  • Need Help with Linking Question

    Not quite sure how to do this.
    I have a gallery page of thumbnails that I want to reference
    a different layout page for the individual image.
    What I want to happen is, when you click the thumbnail on the
    thumbnail gallery page, a new layout page opens in the same browser
    window with that thumbnails larger image. I know how to link the
    new .html page , or the larger image, But I don't know how to link
    them both so they both open?
    I have many images and pages of thumbnails that I have to do
    this with.
    Thanks for any help

    > a new layout page opens in the same browser window
    You want the new page to replace the current page in the
    browser viewport?
    > But I don't know how to link them both so they both
    open?
    I guess I don't understand what "both" is?
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "Orr 4" <[email protected]> wrote in message
    news:eb26ps$mlp$[email protected]..
    > Not quite sure how to do this.
    > I have a gallery page of thumbnails that I want to
    reference a different
    > layout page for the individual image.
    > What I want to happen is, when you click the thumbnail
    on the thumbnail
    > gallery page, a new layout page opens in the same
    browser window with that
    > thumbnails larger image. I know how to link the new
    .html page , or the
    > larger
    > image, But I don't know how to link them both so they
    both open?
    > I have many images and pages of thumbnails that I have
    to do this with.
    >
    > Thanks for any help
    >

  • Need Help - Majorly Frustrated!!!!

    Everytime I go into iTunes and do something- like attempt to buy a song, or redeem a gift card it says Error 9808. And that theres a problem with the iTunes store. Well this has been happening for about a week or so. I am so frustrated!! It used to work- now it doesn't! I have uploaded iTunes like twice- deleted it and re did it. And nothing- the same dang thing! I have talked to one support person who couldn't really help. I did everything she said and nothing. I am tempted to leave iTunes but don't know where else you can download songs to your iPods!!! And not to mention I have a 25 dollar gift card! ugg!
    Any help would be great appreciated!!!!

    Try This out.
    http://discussions.apple.com/message.jspa?messageID=5915110

Maybe you are looking for

  • TrueCrypt 6.2 system drive encryption hangs system sometimes a day

    Hi, I use truecrypt for years with xp and vista - last with Vista and T500, a few weeks ago I installed windows 7 x64 rtm. Every thing works fine and so I checked step by step my usual installed apps and tools. I see win7 is not supported by truecryp

  • How do I Sync iPod/T to iTunes when iPhone is 'Master'?

    The Situation... I have a new iPhone 4S synced to iTunes on my Mac. I have an old iPod Touch which was synced to a PC on its own iTunes some years ago but I have not synced it for years to anything. The iPhone is synced under one identity, the old iP

  • Purchase Oder open item list query

    Hi experts, i will like to have a query for open item list for  purchase order which will show the following;      1. the details of any particular order from a Vendor in terms of:      a.     How much of it has been delivered      b.     How much of

  • How do I stop the Welcome to Firefox tab from opening every time I open Firefox?

    I have read two ways to try and stop this in the help but they either did not apply or I could not do what they suggest. Every time I open Firefox of late the Welcome to fire fox tab opens along with my home page. It is only a small annoyance to turn

  • Web service control manager

    Hi, I have created a Gateway in WebService Control manager. I have registered a service with the gateway. Now when I am testing with test page..it is throwing error "Failed to read WSDL from http://192.168.44.85:8888/TestGateway/services/SID0003002?w