Thursday, September 22, 2011

Outlook 2002 with 2 Contacts folders? Help!?

I transferred my contacts folder and email folders to another laptop, both using Outlook 2002. However, I have 2 Contacts folders. One has my contacts inside. The other is empty. BOTH are named ';Contacts';. How can I find and rename the empty one so I can remove it properly from Outlook%26gt; Tools%26gt; Address Book ?



In other words, what's the usual Windows pathname where Outlook's Contact folder is stored, and what's the extension.





In Tools %26gt; Email Accounts %26gt; Directory%26gt; Email Accounts%26gt; Change, there are 2 identical-looking Address Books, both named ';Contacts: Personal Folders';.

My problem is one has my contacts and I DON';T want to delete that one... the other's empty.

Where ELSE (in the main directory tree) can I look for these two folders and rename one? Is it buried in the outlook.pst file (which I can find, btw) or squirreled away someplace else?



Thanks.Outlook 2002 with 2 Contacts folders? Help!?
To delete an empty contact folder,

1. go to outlook menu, view, folder list

2. click the plus sign of contacts folder, locate the folder you want to delete,

3. click on the folder to confirm it's empty, no outlook items on the right, right click on that folder in folder list choose delete ';%26lt;folder name%26gt;';

4. right click on the ';%26lt;folder name%26gt;'; under Deleted items and choose delete ';%26lt;folder name%26gt;'; to permanently remove it.

Hope this helps.

Please need help with Unix/Linux homework?

1) Suppose you've created a shell script named /usr/bin/myscript. How can you prevent a user from executing this script? Should you remove the executable permission from the script file?



2) If the shell variable x has the value 5, and your reassign it with x=';expr $x + 10';, what is the new value of x? What would have been the value if single quotes were used instead? What is the most likely mistake in the above?



3) A script named test containing the df and du commands displays nothing (not even an error message) when executed. Why might that happen? State two ways of making this script behave properly.



4) Write a script that accepts one or more filenames as arguments, and displays the filenames in uppercase like this:

$ upcase file1 readme README

FILE1 README README

[Hint: Use tr and positional parameters.]



5) If the command set $(cat foo) generates the error unknown option, what could be the reason assuming that foo is a small readable text file?



6) Write a script which accepts one filename as an argument, and displays the last modification time if the file exists and a suitable error message if it doesn檛.

[Hints: It is acceptable to display the whole output of ls -l file. Remember the file argument is accessed by using a positional parameter. Use the test command in an if statement to see if a file exists.]

To extract just a file's modification time from the ls -l output, you can set LC_TIME environment variable to POSIX; then the modification time is in the 6th, 7th, and 8th fields of the output. You can extract that by resetting the positional parameters from the output of the ls -l, using set and command substitution. (There are easier ways but they require knowledge of awk or other advanced filter commands.)



7) Why won檛 the exit command terminate the script, when placed in a shell script like this:

( statements; exit ) How would you fix this, so the script exits after running the statements?



8) You have a small script called cd2man containing these lines:

#!/bin/sh -

x=$(find $HOME -name $1 -print)

cd $x The script has correct permissions and PATH is set correctly so the script can be found. When you run cd2man man1 you find that the current directory hasn檛 changed even though the directory man1 exists somewhere in your home directory tree. No error messages appeared either. Why did that happen, and what should you do to make cd2man change the current working directory?



9) You have to run a script foo and need to have both the output and error messages saved in the single file named foo.out. How should you run the script?



10) Write a shell script for rm called saferm which uses the interactive mode only if you use it with more than three filenames. [Hint: use an appropriate if statement that runs rm -i ';$@'; when the number of command line arguments is greater than three. ]Please need help with Unix/Linux homework?
Most of these you can answer yourself very quickly by just typing the examples into a terminal window on your *nix system.



One important point to note though is that you do not seem to have specified what shell you are supposed to be using. I'm guess it's bash or maybe just sh ?Please need help with Unix/Linux homework?
can you give me that a kinder grade level please

Report Abuse

Apache rewrite rule help?

The only directory structure to change is browse to parts. How do I apply a rule in apache to successfully redirect.



Old

site.com/browse/games/en1873

New

site.com/parts/games/en1873



Apache rewrite rule help?
Quite simple. Just use:



RewriteRule ^/?old_directory/([a-z0-9/.]+)$ new_directory/$1 [R=301,L]





So in your case the following will work good:



RewriteRule ^/?browse/games/([a-z0-9/.]+)$ parts/games/$1 [R=301,L]





Apache rewrite rule help?
Go to http://www.addedbytes.com/ and look for the cheat sheets. There's a great cheat sheet for Apache rewrite that will help you with that.
go to wikipedia and read mod rewrite section



then follow the external link
  • follow the advise of
  • myspace graphics
  • Why does submission of a site in Yahoo Directory never seem to work?

    Ok, I have tried 5 times to submit a site into the Yahoo Directory. I have gone into the category that I want the site to appear (society and culture/ relationships/ dating) and clicked on the 'Suggest a Site' link but it keeps then taking me to a page which says ';you are suggesting a site to the following category: Business and Economy';. Business and economy? It's not even close! There is no option on this page to change the category either! How on earth are you supposed to do this?Why does submission of a site in Yahoo Directory never seem to work?
    Good question..I can't figure it out either.

    Can find this directory in reg?

    Here are the instructions I was given:

    1) Install and run the application.



    2) Run regedit (or regedit32 for Windows 2000, in the system32 directory).



    3) Locate the KCOH (or similar, running from memory here) directory under Software/Cryptic



    4) Change the Locale value to 0



    5) Now modify the security permission for the KCOH directory and remove or deny all permissions except ';Read';



    Now run the app and it should run in English





    Help! How do I do this? I can't find the ';Cryptic'; directory anywhere under ';software';!Can find this directory in reg?
    Do you use windows 2000 or a later version? if you use other version than windows 2000 the instructions may be different.

    How do you code php on menu to go up a folder back to the root directory?

    I have a web site with about 7 different folders that when I change the main menu on the index I have to drag the menu to each folder. I am looking for the code to put on the menu that goes in the seperate folders so that it will go up a folder and read the main menu on the index(root directory .. to cut down on all the dragging over in ftp client. HELP!!!

    Thanks BruceHow do you code php on menu to go up a folder back to the root directory?
    put the menu in the main directory as something like 'menu.html'



    and then in the php section of each of your other pages, use this code:



    %26lt;?php

    readfile(';../menu.html';);

    ?%26gt;



    The readfile command reads some HTML or PHP text and includes it directly in the page. The two periods indicate the parent directory, so this program will go find the menu.html code snippet in the parent directory, and print it in the current page.How do you code php on menu to go up a folder back to the root directory?
    The other answer is ok, but if your menu is a PHP page, you might consider the following:



    %26lt;?php

    include('menu.php');

    ?%26gt;



    BUT....the path of the include is relevant to the php file being used at the time. In order to get around this, you should use.



    %26lt;?php include($_SERVER['DOCUMENT_ROOT'] . 'menu.php'; ?%26gt;



    Might look scary, but this just refers to your root folder. Change this if your menu is in a different folder. (You may also need to add a trailing slash(/) before the menu, depending on your server config.



    You do not want to copy the menu into each folder as it will be a nightmare to update if the menu changes. This way you have one menu in one place that will be used on all files, and using this solution eliminates the need to prefix with '../' or '../../' when working out directory structure.

    Linux directory help?

    i am a noob to linux (installed yesterday) i am wondering what a directory is and how to change to a different one in the terminal because i im trying to install flash for linux and i need to open a file that is in the desktop so how would i do this?Linux directory help?
    You use the cd command mostly like you would under Windows:

    examples:

    $%26gt; cd /tmp

    $%26gt; cd /usr/bin



    Note that under Linux the directories are separated by a forward slash (/), not a backwards slash (\) as with Windows.Linux directory help?
    A directory is the same as a folder. To change to another directory in the terminal type ';cd (directory address here). cd stands for Change Directory.

    A directory address should look like this : /home/bob/Desktop

    How do you make it so the owner of a file or folder can't change the permissions in Windows 2000 Server?

    I want to create a directory share for Windows 2000 Server that any user can write to. However, I want it so when users add or create files, they can't view or modify others' data. This works out fine, but how do you make it so the owner of a folder can't change the permissions, while still leaving them as the owner? Otherwise users could deny Admins permissions to that file, and then admins would have to reset the permissions for that file which can be time-consuming. Any ideas?How do you make it so the owner of a file or folder can't change the permissions in Windows 2000 Server?
    Sorry but you can't. If they created the folder/file, then they have the rights to modify it as well. This is the problem for administrators everywhere. The one things is, that as an admin you can take ownership of that file and fix any rights issues after the user screws them up. You may have to log into the server as the local admin to do it if they removed the domain admin rights however.

    How do you delete a name that still shows as part of your handle in the directory?

    I still see in the directory my girlfriend's name connected to mine but I had already change my profile with just my first name. But when you go on the directory and browse through a particular interest I still see it as my first name and her first name under my yahoo handle. How can I delete her first name so it will never be shown as connected to my handle and profile or even in the directory? Again I already up-dated my profile with just my first name only. Thanks!How do you delete a name that still shows as part of your handle in the directory?
    In options on the mail page enter account info. Travel to profile and listing on the right side. Open and change.
  • how to flirt with girl
  • web server hosting
  • How do you delete a name that still shows as part of your handle in the directory?

    I still see in the directory my girlfriend's name connected to mine but I had already change my profile with just my first name. But when you go on the directory and browse through a particular interest I still see it as my first name and her first name under my yahoo handle. How can I delete her first name so it will never be shown as connected to my handle and profile or even in the directory? Again I already up-dated my profile with just my first name only. Thanks!How do you delete a name that still shows as part of your handle in the directory?
    Create / Edit My ListingHow do you delete a name that still shows as part of your handle in the directory?
    Click on My Account, and edit the information there.
    In options on the mail page enter account info. Enter edit listing and enter edit name and location. Save and exit. It takes 2 to 3 days to process.
    I HAVE TO AGREE WITH ALL THREE OF THEM.
    Dubyah

    UNIX scripting problem?

    Hi, i can't get the hand of it, so I turn to you friends. Can you give me example, how could I find every file in the directory and then change one letter to another in everyone of them (if they have the particular letter). Specifically i have a problem of how to manage a list of all files so that i can edit them one by one. Please help.UNIX scripting problem?
    Look, it's been too long since I've used sed. But that is what it looks like this is a job for. I'll link to one short tutorial (which doesn't exactly answer your question) but look around and play with it and I'm sure you'll be able to figure it out:



    http://www.linuxhowtos.org/System/sed_tuUNIX scripting problem?
    Huh?



    Your question is a bit convoluted.



    See http://linuxcommand.org/learning_the_she

    To change this page, upload your website into the public_html directory....?HOW DO U DO THAT?

    solveTo change this page, upload your website into the public_html directory....?HOW DO U DO THAT?
    You have to get FTP software, first. Then get you login details, punch them into the FTP software and then you have access to upload to the Public_html directory (what shows up on your website home page).To change this page, upload your website into the public_html directory....?HOW DO U DO THAT?
    nothing

    How can I change my windows explorer configuration?

    Every time I open it, it always opens in the same sub-directory. Besides, I personally like the ';details'; view, and I have to change it every time I use it. Is there a way to save my favorite config?How can I change my windows explorer configuration?
    click the start menu then settings/control panel/ folder options.... there you go oh yea, click the view tab and you can assign the current folder settings to all folders (when you go to folder options on the tools menu in any folder)

    How to remotely change the computer name on many Windows XP computers?

    I am about to join 1600 computers to my Active Directory domain. Their current names contain underscores, which violates the corporate naming policy. I have to change their names before I join them. These are remote machines, so I will probably use some sort of script. Before anyone suggests netdom, it only works on domain members.How to remotely change the computer name on many Windows XP computers?
    Not sure if this works for what you want but.... go to manage computer, right click computer managment %26gt; connect to another computer %26gt; change name......



    Wait , just tried it.......never mind, that will only change description and not name...



    good luck

    /hello thereHow to remotely change the computer name on many Windows XP computers?
    After you Install the Support Tools, You can use the below Command



    netdom renamecomputer machine /newname:new_computername /userd:domainname\administrato?/passwordd:* /usero:local_admin

    /passwordo:* /reboot:seconds before automatic reboot

    Report Abuse


    This might help



    http://bink.nu/forums/7478/ShowPost.aspx



    good luck
    You are dealing with large network man!... You don't really need to change computers name remotely. Delegate authority to your local administrator to do that and also right to join computer to a domain so that you can face core administrative task... Like remote server updates, user creation, remote access such as VPN.....e.t.c



    Regards

    How would I best partitian a linux OS between a solid state drive and a regular hard drive?

    I understand a SSD can only be written to a low number of times, so whatever is written to it initially shouldn't change much at all. Which directories should I put on the SSD?How would I best partitian a linux OS between a solid state drive and a regular hard drive?
    Any decent SSD is made to work for many years. It's true that you can make so many thousands of write to one cell of flash memory, wear leveling in the firmware moves data around so that under normal use a flash would take more than ten years to wear out.

    I would put root folder on the SSD so your start up and applications are fast. And put /home on the hard drive because in a Desktop environment that is most storage is needed, and also make a few GB partition for /tmp, because there is many small file writes there that can slow down a SSD.How would I best partitian a linux OS between a solid state drive and a regular hard drive?
    There are many reliable sources that deny that the number of write to a SSD is that low before SSD failure. See the links below.



    To answer your question about most used directories: /home and swap are by far the most written to directories. The other are written to when you make a configuration change or install new software.

    Good luck
    You'll probably get the best answer for a technical question like this from a linux site such as http://www.linuxquestions.org/
  • myspaces.com
  • vc
  • How can I change a name listed under ';documents and settings';?

    Ok here's the deal. I just bought a new pc off a friend. He had already turned it on and set it up so the file directory shows ';documents and settings/Bryan';. I want to change it to my name but when I choose RENAME it says it's a system directory, blah blah blah and won't let me change it.

    Any ideas how I can force the change?How can I change a name listed under ';documents and settings';?
    I would suggest make a new user as the other people wrote. If you want to use the same settings as the current Bryan user copy that profile to yours using copy profile.



    Source below on copying profile.How can I change a name listed under ';documents and settings';?
    try change account user name in control panel %26gt; account name
    Documents %26amp; Settings are associated with a User account. Click on START --%26gt; Settings --%26gt; Control Panel. In this window, double-click the ';User Accounts'; icon. This will bring up the user administration window where you can add and delete users. I suggest adding a new user. If you delete the existing user, it may affect installed programs, short-cuts, etc...

    How do I extract service pack files to a specific directory in Vista?

    It won't allow me to extract the service pack to a separate directory, it automatically extracts to a default location and I see no option to change this.How do I extract service pack files to a specific directory in Vista?
    If you go to the microsoft website and specifically search for the SP you want, it doesn't provide you with a ';download'; button?



    Example:



    This link will take you to the SP2 for Office 2007 (scroll down some to see it in the Popular Downloads section). If I click the download now, it will take me further to the SP page. Then I click the download button, and it prompts me to run or save. I could click save and then select the location I want to put it.



    http://office.microsoft.com/en-us/downlo

    Using SSH, how do I find out what directory am I in? What command do I use?

    I am trying to use GoDaddy's java client for SSH. I am having issues getting around in SSH. I need to know how to:

    1. How do I find out what directory I am currently in?

    2. How do I find what other directories are on the server?

    3. How do I change the permissions on a folder once I am in the folder?



    Thanks for your help.



    SUsing SSH, how do I find out what directory am I in? What command do I use?
    'ls' is the standard directory listing command in most Unix derivatives. 'chmod' is the command to change permissions. Try 'man chmod' and see if the client will give you some help on how to use it.

    How to view changes done in Active Direcotry?

    While working with Active Directory (2000/03), we will be making lot of changes according to the security requirements. Now how to view the last one month changes done in the active directory?How to view changes done in Active Direcotry?
    There is not really a good answer to this question. However, ..



    Depending on what type of changes that you be making and how they are stored, but it is possible to export objects from AD: http://msdn2.microsoft.com/en-us/library



    There are commercial products that do AD auditing:

    http://www.bi101.com/products/solutions/

    http://www.quest.com/intrust-for-active-



    Make sure you have a daily backup of the system state from all of your domain controllers so you could restore to a non production environment.

    I can't delete a file I downloaded with Vuze?

    I downloaded a 4.92 gb folder using Vuze. I finished the download a few days ago, so I was just seeding it. Then suddenly, an error appears saying ';incorrect file size'; so I changed the file directory. And then, in the main folder of what I downloaded, a 1.79 gb copy of the downloaded folder appeared. I tried to delete it, but it appears the file is protected.



    When I tried to access the torrent again, it just starts the download all over again, even though I already have it. How do I delete the file? I don't even care about seeding anymore, but my dad's gonna kill me with 1.79 gb useless files.I can't delete a file I downloaded with Vuze?
    Some methods.



    1: Stop Vuze running. The computer's SHARE program is running meaning that you cannot delete a file that is in use (Vuze is seeding it).



    or



    2: Restart the computer and hold down the f8 button until the screen prompts you to enter SAFE MODE.



    Once in safe mode, find your way to the folder where this 1.79GB folder is and delete it.



    or



    3: Right click on the folder containing the files and set the properties by unticking any box that says ';Read Only';. Now try to delete them.

    How to implement a simplified version of FTP running on top of TCP in Java?

    Hi, I need help on a project for my Networking class. We have to write a program that has FTP running on top of a TCP in Java. Here's the project description below.



    In this project you will implement a simplified version of FTP running on top of TCP. Between you and your partner one play the client role and the other play the server role. First, the server will start up and pick a port number, and then it prints out the IP address and the port number onto the screen.

    Second, the server sits there waiting for client檚 communication.

    Third, Client starts up asking for IP address and port number of the server, then client binds to the socket and waits for keyboard input of an FTP.



    5. You need to implement the following commands for your simplified version of FTP: pwd, ls, cd, get, put, bye.



    (1) Pwd: Prints the current directory on the remote computer;

    (2) ls: list the names of the files in the current remote directory;

    (3) cd: Changes the working directory on the remote computer;

    (4) get: Copies a remote file to the local computer using the current file transfer type

    (5) Put: transfer a file from your computer to the remote computer.

    (6) Bye: Ends the FTP session with the remote computer and exits ftp.How to implement a simplified version of FTP running on top of TCP in Java?
    The Server creates a new ServerSocket object with a specified port and then you call the accept() method on the ServerSocket object, which will block until a client connects to that socket.

    The client creates a new Socket object using the Server's IP address and port.

    See the Java API and Socket tutorial, links below, for more details.
  • blood circulation create scars
  • cassette tape cases
  • How to implement a simplified version of FTP running on top of TCP in Java?

    Hi, I need help on a project for my Networking class. We have to write a program that has FTP running on top of a TCP in Java. Here's the project description below.



    In this project you will implement a simplified version of FTP running on top of TCP. Between you and your partner one play the client role and the other play the server role. First, the server will start up and pick a port number, and then it prints out the IP address and the port number onto the screen.

    Second, the server sits there waiting for client檚 communication.

    Third, Client starts up asking for IP address and port number of the server, then client binds to the socket and waits for keyboard input of an FTP.



    5. You need to implement the following commands for your simplified version of FTP: pwd, ls, cd, get, put, bye.



    (1) Pwd: Prints the current directory on the remote computer;

    (2) ls: list the names of the files in the current remote directory;

    (3) cd: Changes the working directory on the remote computer;

    (4) get: Copies a remote file to the local computer using the current file transfer type

    (5) Put: transfer a file from your computer to the remote computer.

    (6) Bye: Ends the FTP session with the remote computer and exits ftp.How to implement a simplified version of FTP running on top of TCP in Java?
    The Server creates a new ServerSocket object with a specified port and then you call the accept() method on the ServerSocket object, which will block until a client connects to that socket.

    The client creates a new Socket object using the Server's IP address and port.

    See the Java API and Socket tutorial, links below, for more details.

    How can you change the setting of yahoo groups, from not listed in dircetory to listed in directory?

    management- under group settings click description and appearance- descritption (edit) %26lt;-- click the edit scroll down check Listed in Yahoo! Groups directory - click save changes

    How do I change my business contact information for the online business directories?

    My business is currently listed under my home address and personal cell phone. I would like to change the address to a p.o. box or outside office and different phone number for safety reasons, so when my business pops up under San Diego directories online it is not my personal information. Do I have to go through my business license and officially change it there or is there a way to update information for standard business directories.How do I change my business contact information for the online business directories?
    I'm actually going through the same problem right now, the course of action i'm takeing to fix the situation is to contact the BBB and DNB.



    They are slow to do anything but they are the primary sources you will need to have update this information.



    It's always wonderful when you start a brand new business and you start conducting business then you see a customer of yours has supplied your personal information to these companies.



    Then the BBB wants you to pay 300.00 dollars and so does DNB to even change or attempt to change your info untill recently.



    http://www.bbb.org

    http://www.dnb.com



    Hope this helps.

    How do I change my email address to show as my Yahoo address instead of hotmail in a group members directory?

    go to 'Edit Membership' at top of group page, scroll down and if you don't see the yahoo addy, you need to add it '(Add new email address) %26lt;- click. if it is there, check the box next to it, then click save changes

    How can i format the system directory on C:\?

    Hey, i have two systems, one on C:\ ';XP SP3'; and on D:\ ';XP SP2';

    i have a deadly virus on my c:\ directory and i want to format C:\ because im using XP SP2 on D:\ i don't need C:\ but the problem is the C directory is marked as (System) and the D Directory is marked as (Boot) and you cannot format a System directory thats why i need to change it to a normal directory how can i do that?How can i format the system directory on C:\?
    Firs, you have to do a system scan,to find out if, and what tipe of virus do you have. You can do this for free here:



    http://onecare.live.com/site/en-US/cente



    Then, if you have a virus, try removing it, here's a link to a great virus removal program:

    Description:

    http://www.microsoft.com/security/malwar

    Download:

    http://www.microsoft.com/downloads/detai



    If it don't do any good, you have to try formating the driver C:/, you have to try, this and if this fails, you have to format D:/, close the PC, insert the Windows SP2 CD and format C:/ from there, that is the only way to format a system drive.How can i format the system directory on C:\?
    try with Partition Magic download it from this torrent site www.mininova.org it's a good and free torrent site
    You need to go into Disk Management to do that. Go to Start | Administrative tools and open computer management.



    In there click on disk management (node under storage in the tree on the left side).



    Select C:, delete the partition, recreate it and then format it.



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

    I've done some research but so far nothing definitive yet. This may be of help since you cannot delete the partition.

    http://forums.techarena.in/windows-xp-su



    It may be best for you to try PartitionMagic to see if it works for you and if it does, then buy it. It is only $69.



    Potentially you can solve it by copying the system files from the C:\ drive to the D:\ drive (boot.ini, ntldr, etc.) and then moving them out of the C root. After you reboot the C:\ drive may no longer be classified as a system drive. But no guarantees.



    Sorry I couldn't provide more definitive help.
    You can't format the partition you boot from. If you're booting from D, you should be able to delete the Windows directory on C. If not, just boot with a Linux or GPartEd CD and format what you want. (Linux doesn't respect Windows' restrictions.)

    How do I get the images for ssl directory pages created with Yahoo Sitebuilder to show up?

    I can not seem to get the pages I have created and placed in my ssl directory to show any of the images or backgrounds. I have even placed the image files in the ssl directory; still no luck. Am I going to have to change the code manually or something; hope not. That is why I am using Sitebuilder is to keep from having to do a lot of code writing, etc....How do I get the images for ssl directory pages created with Yahoo Sitebuilder to show up?
    wish i could help you, i have the same problem
  • xp
  • i need your advice
  • How do you copy and entire directory including files and folders using ASP?

    I'm trying to copy an entire directory using ASP, and cannot find a way to do this dynamically. I do not want to change code every time I add things to this directory.How do you copy and entire directory including files and folders using ASP?
    you will have to use the filesystemobject, here's a link where you could find and example.



    if you doubt on something yes tell me



    http://www.planet-source-code.com/vb/scr

    How to find music files in temporary internet directory?

    People told me that when you listen to a mp3 music online by using Explorer, that music file will be automatically saved in your

    temporary internet file directory for a short time(I means some legally free mp3 files). But in my internet temp directory I can not see it(I even can not see a sub-directory called local settings). Do I have to change some re-setting for my Internet Explorer? Please give some help.

    Thank you very much.



    John D.How to find music files in temporary internet directory?
    This is not true. Listening to MP3 files does not save them anywhere. Only downloading will save them.How to find music files in temporary internet directory?
    just search for that file in the temporary internet files for the name of the file. For example, if you play a file named ';song2.mp3'; search for ';Song2.mp3'; in the folder.
    any search you do on your computer will search them .

    To change this page, upload your website into the public_html directory....?HOW DO U DO THAT?

    I'm trying to watch a movie on this website an it says...To change this page, upload your website into the public_html directory....?does this mean that the site is broken????help me plz.To change this page, upload your website into the public_html directory....?HOW DO U DO THAT?
    This isn't something you can fix: the person(s) who made the web site messed up. It's not an error you're ever supposed to receive --unless you're a web designer.

    As mod, I wish to change my group's status from Closed to Open so I can be in the Directory. How do I do that?

    check your preferences settings, here and email,



    and,

    http://ca.groups.yahoo.com/memwiz

    I am a group owner that wants to now make my private group visible in the yahoo directory.?

    On the ';management'; page of my group, it indicates I cannot change my group from being unlisted in the yahoo directory to being listed so that prospective members can find the group. How do I get that change accomplished?I am a group owner that wants to now make my private group visible in the yahoo directory.?
    *groups can now be changed from closed (private) to other, Yahoo has changed that setting so it's no longer irreversible.* however if you select the group to be closed, it wont list in the directory. only restricted and open memberships are in the directory.

    if you select restricted, it means you have to approve the memberships which is a better option and the only way you'll gain members since a closed group is invite only.I am a group owner that wants to now make my private group visible in the yahoo directory.?
    To the best of my knowledge you can't change it. if memory serves me correctly when you start a group you receive the warning that if you choose private you cannot change it. I do stand to be corrected oh that, it's been many years since I started a group.One suggestion if necessary start a new group with a slight change in the name i.e. dogwalkers2 instead of dogwalkers.

    In C how can i make a forked process that have the same working directory as its parent?

    I know they always start at the same directory but i want the parent to change its wd as the children does.



    (somthing like that : ... if (0==fork()) { execlp(';cd';,';...';,0 ) } else { parent with changed wd } )In C how can i make a forked process that have the same working directory as its parent?
    There's no automatic way to do what you want.



    You could do this by doing the following:



    1) Open a pipe before you fork (closing the right ends in the parent and child)

    2) Use the chdir() system call in the child

    3) Write to the pipe then the chdir() succeeds (in the child process).

    4) In the parent, read the pipe to get the new directory and use chdir().
  • Parameter.Add()
  • virtual barber shop
  • How do I read the files on the server directory?

    I have some image files (jpg, gif) on the same directory where the HTML file is, but they change from time to time. Is there a JavaScript code to read the content of the directory so I can create an Array and then change the image on the browser dynamicly?How do I read the files on the server directory?
    There are a couple of ways around this. First generate the page dynamically at load time to include an array of image URL's in the HTML source that the JavaScript can reference it. For something with a little more coolness factor, you can write a script that returns an XML file with the image URL's and send a request to the server script from your JavaScript using AJAX. The problem with any approach like this is security, making a listing available to your script also means making it available to ';alternative users,'; hackers. A listing may or may not be important to such individuals by itself, but it might help them if they compromise the server though some other means.

    How to change the listing type/membership type, if I accidentally change to closed type?

    Membership Type: Closed (only invited members can join)

    This setting cannot be changed.



    Listing Type: Not listed in Yahoo! Groups directory due to closed membership type.

    This setting cannot be changed.How to change the listing type/membership type, if I accidentally change to closed type?
    it means exactly what it says and it cant be changed. the only thing you can do is delete the group and create a new one using a variation of the group title

    Xampp/Apache http server noobie (linux)?

    hi!

    i'm currently using ubuntu 8.04 with apache 2.2.8 and i've never quite used linux before, but i'm a little better with it now i can get around a bit with terminal... anyway. sothe problem is i've installed xampp(lampp). now i'm trying to set up my own little website and i need a simple explaination of a few things, i am so very confused. I can't get my little test web page up, i've modified httpd.conf so many times and it doesn't change my page directory. so i guess my question is how do i set up httpd.conf so it'll make my http://localhost my main webpage because i really don't want anyone to access my xampp control area. other question involves .htacess. what is it and how do i make it if i need it? good luck to anyone who can answer this...Xampp/Apache http server noobie (linux)?
    https://help.ubuntu.com/community/Apache

    http://ubuntuforums.org/showthread.php?t

    Run html inside a folder Burned into a CD?

    I want to know how to run/launch my html inside multiple sub folders burned into a CD, because the file links for instance my hyperlinks will be invalid, because it will look into ';file:///C:/blah/blah///'; something like that and we know that it should change the file directory link..zzzRun html inside a folder Burned into a CD?
    Wouldn't it be simpler to change the links first?



    But are you meaning that you only want the first webpage to be launched or that you want them all to have links being launched correctly? If you want them all to launch correctly, the only option is to change the links.Run html inside a folder Burned into a CD?
    Establish a base directory, change all links accordingly excluding all parent directories.



    Say you have a website with two pages in C:\website\. Page one would be index.htm and page two would be contact.htm and you add a folder named downloads and a downloadable file.



    In index.htm, you would create a link linking to contact.htm as just contact.htm. you could then make another link for the download as just downloads/file.ext. That should work on any medium you chose to use, even if you upload it to the internet.



    Cheers.

    How do I move the Azureus Downloads folder to a new location in Windows XP?

    I have followed the directions on the Vuze website Help page but it doesn't work. In Tools %26gt; Options, I change the save directory for Torrents to a new location on a different file partition using the correct folderpath and delete the original ';Azureus Downloads'; folder in the My Documents folder in my profile folder in Documents and Settings on my C: drive. However when I re-open Vuze and download a new torrent, a new ';Azureus Downloads'; folder is created in the My Documents folder in my profile folder in Documents and Settings on my C: drive and the torrent saves to it instead of the folder I created on the D: drive.



    Can anyone help because the C: drive partition is too small, and is too full, to cope with large torrent files.



    Many thanksHow do I move the Azureus Downloads folder to a new location in Windows XP?
    ok this is how you do it:



    1) Open up Vuze

    2)Goto tools and then options

    3)On the left-side goto the ';files'; drop down box

    4)On this menu it will say select your default directory

    5)So just hit the browse button to change the location and hit apply.



    You may need to check for updates. It works fine on my computer.

    Please Help! How can i fix this wordpress blog error?

    This summary is not available. Please click here to view the post.

    Command Prompt???

    How do you change the current directory in command prompt?

    I mean, when you open the cmd prompt, you are by default in C:\documents and settings\username.

    I want to go to C:\ only. So, what do I command the prompt?

    Thanks!Command Prompt???
    Typing in ';cd ..'; takes you up one directory (so from C:\Documents and Setting\Username to C:\Documents and Settings).

    ';cd [dirname]'; takes you to that directory. To go to straight to c just type ';cd c:\';. ';dir'; will list the contents of the current directory.



    For more info on each, type in ';help cd'; or ';help dir';.Command Prompt???
    right click the command prompt and click on run as and then just click ok ... that should work
    cd is the command to change directories.



    cd c:\

    will get you to the root of the c directory.
    cd \
    use this command:



    cd C:



    cd stands for change directory and C: tells cd what directory to change to (in this case the root C:)
    you can easily access command prompt by typing ';cmd';



    to run bar
    Use the old DOS prompt



    CD\



    Good luck.
    cd \ = takes you to the root



    ex:



    C:\documents and settings\username

    cd\

    (returns) c:



    using periods takes you down one dir



    ex:



    C:\documents and settings\username

    cd..

    (returns) C:\documents and settings

    Format NTFS hard drive to FAT32?

    When I turn my computer on I get a message saying We apologize for the inconvenience, but windows did not start successfully. When I try to start Windows normally, my computer restarts itself and when I try to start in safe mode a bunch of multi(0)disk(0)rdisk(0)patron(1)\Windows messages fill up the screen. After I get those errors, a blue screen pops up for a second then the computer restarts itself. What I'm trying to do repair install windows by



    1) Boot from CD

    2) Select Start PC with CD ROM Support

    3) Change to Optical Drive A:\%26gt;D: [Enter] where D: is optical drive

    4) Change to Win98 directory (win9x for ME) D:\%26gt;CD\WIN98 [Enter]

    5) Run Setup D:\WIN98%26gt;setup [Enter]



    but after step 5 I get a message saying Cannot create a temporary directory. If you have HPFS or NTFS installed on your hard drive, you will need to create a MS-DOS boot Patron to set up Windows. I was told I would have to format my hard drive to FAT32. Is this true? How would I go about doing that in Windows 98se with DOS commands? Would I be able to do this without loosing any data on my hard drive?Format NTFS hard drive to FAT32?
    You're describing a failing hard drive. The boot sector is corrupted. You'd do better to put a new one in, install Windows on that and hook the old one up as a slave to recover the data. Formatting the drive from DOS will wipe it out.Format NTFS hard drive to FAT32?
    Windows 98 will not install on an NTFS partition. It has to have FAT32.



    After step 2 I presume you have a DOS prompt? (a:\)



    At that point you need to type fdisk which will allow you to delete the NTFS partition and create a new partition on your hard drive.



    I would disagree that this indicates a failing hard drive. Your description of the issue looks more like a corrupt operating system and I am confident that you are heading in the right direction to solve your problem.



    Hope this helps.
    Well, If you really have an NTFS HD, then 100% you will loose all all data in the drive as you need to Repartiotion your hardisk to be able to format it into Fat32.



    You could partition your HD by using FDISK first then issue format...



    and why are you still using Win98se?



    Isn't it too old. I think you should consider ubuntu linux.

    How I fix my Java for my Linux HP Mini?

    I bought an HP mini that runs on Linux and for some reason the java will work with some sites, but not with others. I went to the Java website and tried to verify the java version and it said that I do NOT have the recommended version. I download it, but can not figure out how to install it. The instructions say:



    To install the Linux RPM (self-extracting) file



    Follow these instructions:



    1. At the terminal: Type:

    su

    2. Enter the root password.

    3. Change to the directory in which you want to install. Type:

    cd

    For example, to install the software in the /usr/java/ directory, Type:

    cd /usr/java



    Note about root access: To install Java in a system-wide location such as/usr/local, you must login as the root user to gain the necessary permissions. If you do not have root access, install Java in your home directory or a subdirectory for which you have write permissions.

    4. Change the permission of the file you downloaded to be executable. Type:

    chmod a+x jre-6u%26lt;version%26gt;-linux-i586-rpm.bin

    5. Start the installation process. Type:

    ./jre-6u%26lt;version%26gt;-linux-i586-rpm.bin



    This displays a binary license agreement. Read through the agreement. Press the spacebar to display the next page. At the end, enter yes to proceed with the installation.



    I cant figure this out. How do I get to the ';terminal';? Am I installing the correct java app? If I am, How do I actually get it installed?



    The System tab says:



    HP MIE

    Release 1.0 (None)

    Kernel Linux 2.6.24-19-lpia

    GNOME 2.22.3



    Hardware

    Memory: 1001.7

    Processor 0: Intel(R) Atom(TM) CPU N270 @ 1.60GHz

    Processor 1: Intel(R) Atom(TM) CPU N270 @ 1.60GHz



    System Status:

    Available Disc Space: 1.8GiBHow I fix my Java for my Linux HP Mini?
    If you are knowledgeable enough to know how to open a terminal in linux I don't think yuo will have much success in installing java. You will always have the best success with all software that is prepared for the version of linux that you are using. If you try to use any software from another version of linux or a ';generic'; linux version of software you will son have problems with missing dependent files and conflicts between files.



    Search through the menu on your system for the add and remove programs and use that to try to find java for your version of linux. You system will operate much more smoothly.

    Here is a basic tutorial for using the terminal. The terminal is a program that open a window where yuo can type dos like commands. I would suggest that you read both websites before trying to enter the commands.

    You could also press the Ctrl and Alt and F1 keys all at the same time and you will have a new screen open where you can type your commands. Ctrl and Alt and F6 or F7 or F8 will get you back to your desktop.

    Anybody here know how to use Linux? I really need HELP !!!?

    i really need linux users to help me out on this, i am having big problem on solving these questions, i have done a few questions but i really cant figure out the answers for those questions, this is one of those questions ... i really will appreciate it if u guys can show me how to do this... thankyou very much



    1) You are now in /temp and you want to change your working directory to /etc

    2) You are now in a directory Public and you want to change to /home/user/1

    3) You are in /usr/local/src/ and you want to go to /tmp/home/joe

    4) You are in /root/Desktop and you want to go into /root/Desktop/stuff

    5) You are in /tmp and you want to go to /tmp/bash/test/5

    6) You are in /root and you want to delete the file /root/work/names.txt 7) You are in /home and you want to delete the entire directory /home/andy and all it’s sub directories

    8) You are in /root and you want to add a user “manager”Anybody here know how to use Linux? I really need HELP !!!?
    1) cd /etc

    2) cd /home/user/1

    3) cd /tmp/home/joe

    4) cd stuff

    5) cd bash/test/5

    6) rm work/names.txt

    7) rm -rf andy

    8) useradd -d /home/usr/manager -m manager

    (specify whichever home directory is required after -d)Anybody here know how to use Linux? I really need HELP !!!?
    1. cd /etc

    2. cd /home/user/1

    3. cd /tmp/home/joe

    4. cd /stuff

    5. cd /bash/test/5

    6. cd /work

    sudo rm names.txt

    sudo rm -rf /home/andy

    8. sudo useradd ';manager';
    it's realy like DOS command...

    use shell or terminal or... then type cd /tmp/home/joe

    cd [path]

    List file attributes ls -l filename

    List hidden file attributes (files beginning with ';.';) ls -al filename

    Rename a file mv oldname newname

    Delete files rm filename

    Delete directories rmdir directory_name

    Delete a directory tree rm -rf directory_name

    Delphi question .. .. ?

    Would anyone tell me how to change the default

    directory of opened files in delphi 5 ?

    Instead of the (projects) directory ,which is

    opened when you just click the (open file) icon !

    Thanks alot for all..Delphi question .. .. ?
    im guessing you mean you are using the common dialog controls??



    you need to set SaveDialog1.InitialDir := %26lt;what eva directory you want%26gt;

    Wiki: how to display already uploaded images?

    I have built a website for a group and we will be needing images to be displayed in certain pages. At present, uploading images, whilst permitted, is bringing an internal error (';The upload directory (public) is missing and could not be created by the webserver.'; whilst a PHP error is returned: ';Warning: mkdir() [function.mkdir]: Permission denied in {server root info I've deleted for security}/includes/GlobalFunctions.php on line 2012';)



    Therefore, I'd like to show a test image that is ALREADY on the server at (for example) http://www.website.co.uk/wiki/images/ima

    Using the WIki code [[File:image.jpg|thumb]] doesn't show the image, despite it supposedly being in the default wiki image directory... and changing the wiki code to [[File:http://website.co.uk/wiki/images/image.j



    So my question is this: how, exactly, can you use wiki code to display an image with an Absolute URL? (ie not relative to the wiki software)



    thanks in advanceWiki: how to display already uploaded images?
    Neither one of your links worked. If you can't upload images/files using FTP, contact your hosting support by phone. The public_html folder should have already been installed for your site.



    I'm not sure Wiki allows hotlinking to their images as it uses up their bandwidth. That is bandwidth theft.



    Displaying images on a web page uses the EXACT path to the image ONLY. Not the page it is on.



    %26lt;p%26gt;%26lt;img style=';width: XXpx; height: YYpx; border: 0;'; src=';Path to image'; alt=';Text Description';%26gt;%26lt;/p%26gt;



    You can change the ';p'; tags to div tags and style as needed.



    I didn't check Wiki's Terms of Use for their images, but if they are allowed to be used, I suggest that you upload the images to your own site.



    Ron
  • cream around eyes
  • african american hair
  • Tuesday, September 13, 2011

    Unix cd commands?

    How do I change from one directory to a second directory without having to go to the root and then typing to filepath for the second directory?Unix cd commands?
    Hi, I don't think its important to go to root unless u perform a task with administrator privileges.



    In konsole:

    cd /home : this will take u to ur home directory



    now u want to get out of it only one step back, so u type



    cd ..



    If u want to reach the default location from cd /home they type



    cd



    If u want to see the list and names of all folders and directories in the directory u have ';cd'; to then type:



    dir



    If u want full time root access without using the sudo command then type:



    su

    then your password



    in some systems u need to type



    sudo su

    then your password



    Be careful though running as root is a security risk so make sure u r not online at least so u don't expose yourself.



    Good Luck and take care!Unix cd commands?
    instead of dir try ls or ls-h to see hidden files, if you find it hard to do try downloading a copy of midnight commander, theres a version for most distros about.



    oops nearly forgot, if you do download it and install it all you do then is type mc at the prompt
    I don't fully understand what you are trying to convey.



    In all the years that I have been using Linux (Unix variant), I have never had to go to the / in order to change to other directory.



    from any directory, typing 'cd' gets you to your $HOME. you can supply it an argument which has to be an existing path.



    An absolute path begins with a '/' and relative path does not being with a '/'.
    cd /full_path_to_file



    you can run this command from anywhere... for instance if I am in the /etc directory and want to switch to the /var directory I can type



    cd /var



    or you can use relative paths ';..'; is a shortcut for the parent directory (back one directory) so to go from /var/adm to /var/spool I can use



    cd ../spool



    also I can create a variable for instance you need to get to the /opt/sfw/bin directory every few minutes you can create a variable $osb by:



    osb=/opt/sfw/bin

    cd $osb



    in some shells you can cd to the last directory you were in by using a ';-';. If you are in /etc and was just in /var/spool you can go back to /var/spool by



    cd -

    I have changed group name name but only old is showing in directory help!!?

    i changed name from sunshine circus to solar circus after incoorperating club logo but only old id is showing on directory .. how can i change this as i wont get any hits until i do .. help pleaseI have changed group name name but only old is showing in directory help!!?
    You'll have to wait until the next indexing for the search engine is done.



    It can take up to two weeks, but not that long most of the time.



    Hope that helps!

    .cshrc file help (C Shell)?

    I'm working on my .cshrc file, and I want to create an alias: cdls, that will cd to a directory, then ls the directory it changes to. Is this possible, if so, how do I do it?



    When it's all said and done, I want to be able to type :

    cdls foo

    into the terminal, and it will go into the directory foo, then list its contents..cshrc file help (C Shell)?
    try alias cdls cd\ ls\!*

    How do i make an external hard drive appear as F: drive instead of E: drive?

    i have about 10 thousand songs on my external linked to my itunes and somehow it recently changed it's directory from E to F so itunes can't locate any of the songs on it. does anyone know how to undo/reverse that?How do i make an external hard drive appear as F: drive instead of E: drive?
    Hi. Here is how MS says to change it. http://support.microsoft.com/kb/307844How do i make an external hard drive appear as F: drive instead of E: drive?
    Go into the Computer Management interface. If you tell us which OS you're using we can tell you how to get there.
    Right Click on My Computer, select manage or press Start, Control Panel, Performance %26amp; Maintenance, Administrative Tools and Computer Management (if you use Classic Style, skip Performance %26amp; Maintenance). In Computer Management select Disk Management. You will see all your drives. To change right click on F: (if it is a CD Drive, CD Drives picture will be shown) select ';Change Drive Letter and Paths';. Press Change and select another alphabet like G. You can skip this part if you don檛 have any F:\. If you want the CD to be E:, change the drive letter of the drive again, this time you will get E:.

    Then right click E: and change the drive letter just like above and this time select F: And that's it.
    go to your administrative menu / disk management.



    find the drive or logical partition that you want to change, right click on it, then select ';change drive letter';, you can change it to any letter B-Z that is not already in use.
    Yes, iTunes is a pain that way. If you're using XP, it's very easy to fix. Just plug the drive in and go to Control Panel -%26gt; Administrative Tools -%26gt; Computer Management -%26gt; Storage -%26gt; Disk Management (Local). Right-click the big rectangle that signifies the drive, and choose ';Change Drive Letter and Paths';. This will give you a list of unassigned drive letters that you can assign to the drive. The assignment will be remembered each time you attach it.

    How do i change a sudoers file entry to limit a users access to a directory?

    i had a user whose access i wanted to limit in the sudoers file on a unix sun box. currently his sudo access gives him too much access, here is what his entry in the sudoers file looks like:



    'jryan ALL=(ALL) ALL,(ALL)!/usr/bin/su, (ALL)!/usr/local/sbin/visudo'



    there were a couple of directories that i would specifically like to deny him access to. is there a way i can change his sudoers file entry to deny him access to those directories?

    thanks.How do i change a sudoers file entry to limit a users access to a directory?
    Is there any reason you are giving him root access in the first place? If he has no reason to be root, just take away his sudo ability and use privileges to keep him out of the folder.
  • software
  • fish
  • I'm a linux newbie, help me please!?

    I'm using debian linux. How do I change the default directory for apache2? I've found the configure file, but I don't have permission to change it. I could just copy drupal to the default apache2 directory, but I can't figure out how to get permission. I've tried cp in root terminal, but it says omitting directory drupal-5.2? enlighten me please.I'm a linux newbie, help me please!?
    well if you can access the root shell than you can perform copy but you haveto use -r



    ie

    cp -r source destination



    and as explained in above answer you can proceeed to change permissions using chmod.I'm a linux newbie, help me please!?
    In the root terminal, you have to use the ';chmod'; command to change the permissions of the httpd.conf file, so that you can access it. More info on how to use this command can be found here:

    http://catcode.com/teachmod/



    Here's an example:

    chmod a=rwx httpd.conf



    This usage above will make everyone able to read, write, and execute the file.

    Bit Torrent download directory?

    I downloaded some files with bit torrent, and now i don't know how to find the files. Where to look for it? I've forgotten to change the new downloaded files directory.Bit Torrent download directory?
    downloads complete.Bit Torrent download directory?
    start%26gt;

    search%26gt;

    for files or folders%26gt;

    (then search the .filename )
    In BitTorrent, check at Options%26gt;Preferences%26gt;Directories to see the location of the download folder.



    You can also right-click a torrent in BitTorrent and select ';Open Containing Folder'; to show the location.

    How do I change the local map hard drive to another directory? example is from D: to G:. Thanks in advance!?

    Right-click on My Computer and select Manage. On the left side of the window under Storage select Disk Management. Right-click on drive letter you would like to change and select Change Drive Letter and Paths.How do I change the local map hard drive to another directory? example is from D: to G:. Thanks in advance!?
    map the drive to g: a then delete the old map drive



    right click on my network places then use Map the network drive

    I need to create a site in Active directory, but I am unable to. How do I change my group membership to allow?

    Okay I'm wondering why you think you need to create a new site? First of all you can use Active Directory Sites and Services. You probably don't have permission to do so and since you don't know how to create a new site that is probably a good thing

    To change this page, upload your website into the public_html directory?

    How can I see these types of website?To change this page, upload your website into the public_html directory?
    Hi,



    Well, you get this message to upload a site via FTP, you need an FTP manager, connect with the FTP manager to the FTP server then you will see this folder, upload the content their, and go to the website, you can see the uploaded file.





    good luckTo change this page, upload your website into the public_html directory?
    How to put video on your website?

    Do you like taking home videos yourself? Have you ever thought publishing your videos in your personal home page to personalize your space, or share them with your friends in your blog and internet space? Do you have problems of uploading the video in a specific format?

    How Flash Video MX Pro is working on Flash creating?

    Today, you can find many programs out there that allow you to create Flash movies besides the original Macromedia Flash. Each one of these programs has a different focus. Some are designed to make character animation easy, some are specialized in text special effects, while some are for you to create 3D objects in the Flash format, and so on.

    How to post Flash video onto your blog?

    In order to post your favorite videos onto the website, your personal blog and BBS to share with others, you need to convert the videos into Flash format first. But by what means shall you convert the video formats such as AVI, MPEG, WMV in to a totally different format? The answer is that you need a Flash conversion tool, which can decode the common video formats and encode them in to FLV.

    How can i use a bash script to open a .pdf file ?

    i want to change to the directory, and execute foo.pdf and have it open in my default pdf reader .. thanksHow can i use a bash script to open a .pdf file ?
    i believe the acrobat reader is called ';acroread'; (i may be wrong. please check it. it is the ';executable'; that

    opens acrobat reader)



    so at the prompt, say:



    acroread dir/subdir/file.pdf



    to open file.pdf in dir/subdir using acrobat reader





    if you put that in your bash script, you'll be good

    to go.





    Mahurshi Akilla
  • how to fall in love with
  • email host
  • In Windows Vista, how can one get a text copy of a folder directory that is not on a hard drive?

    Being an old time computer user, anytime I needed a text list of a directory, I would drop into the black Command Prompt, change (CD ) to the directory I wanted and DIR *.* %26gt; file.txt While the Command Prompt is there in Vista and works this way, it does not seem to provide any way to get to Public or Computer and thus get a list.

    Using Prnt Scrn provides a graphic image of the screen and eventually we did an OCR on the image and got our list after doing some clean up of errors.

    Files does not offer the option of printing the list while in Explorer and of course Copy or Send to sends the files, not the listing.

    Is it a case that Microsoft has again decided we don't need functionality and killed it off?In Windows Vista, how can one get a text copy of a folder directory that is not on a hard drive?
    There seems to be a great explanation of how to do it here:



    http://www.vistax64.com/tutorials/146031



    I haven't tried it, but looks like it does exactly what you want.



    It either prints or outputs the directory to a text file and launches notepad to view it.



    Hope it helps, I'll probably stick it on my PC tonight.

    Anyone knowledgeable with Command Prompt?

    I asked in a previous question how to download firefow in the cmd prompt. no one could or would help me. I got answers like: Download firefox, or it is too complicated.



    However, a nice guy named jim emailed this info to me:

    Type: ftp 204.152.184.113

    User: type: anonymous

    Password: Press enter

    After successful log in type: cd pub/Mozilla.org/Mozilla/releases/mozilla?br>
    Directory successfully changed: Type: binary

    ftp type: lcd c:\ (or any folder you wish)

    fpt type: get Mozilla-win32-1.8a1-installer.exe

    After 200 port command successful wait for it to open file and then it will download in folder specified.



    This answer helped a lot and was EASY! I would like to know if there are other sites you can do this and other applications can you download? What else can be done in the command line?Anyone knowledgeable with Command Prompt?
    IF you take the trouble to LEARN how to use the DOS (the command prompt) version on your system, you can do almost everything you can do from windows, except that it is done by text rather than the GUI (Graphic user interface).



    Most people don't bother anymore since the other is faster and easier (more user friendly). ALSO, the GUI prevents you from making a boo-boo and messing up your system so that it won't run, something DOS does NOT do.



    (I still use older DOS machines for some things!!)

    How do I change my Tag names at bottom of my groups name on the groups directory (list). ?

    I find I can change the groups description by going into 'settings' but not the old tags. And I've tried in 'footers and tags' but while I can change the group description, I can't get rid (change) the tags that are there.

    ALSO: At present my group (I'm the manager) is listed under 'Books and writers', how can I add catigories to this, ie 'Humanities' etc.How do I change my Tag names at bottom of my groups name on the groups directory (list). ?
    what exactly do you mean by tag names? in the directory, I believe they list per title of the group. do you want to change the title?



    a group can only be in one category at a time.

    I have a new account on Yahoo and I am having trouble setting up a 360 page. Can you please help?

    I'm on the 360 home page. I click the button that says Get Started. I choose a Nickname and enter my email address, but when I hit Continue it says this: Sorry, this email is already being used.

    Someone is already using this email within the Yahoo! 360掳. Please go to the Member Directory and change your email address.



    How is this possible since it's my email add? How do I get to that account, if it already exsists? Or fix this?I have a new account on Yahoo and I am having trouble setting up a 360 page. Can you please help?
    See my answer here, it may help:

    http://answers.yahoo.com/question/index;I have a new account on Yahoo and I am having trouble setting up a 360 page. Can you please help?
    :) You're welcome. Thanks for voting!

    Report Abuse

    I have a new account on Yahoo and I am having trouble setting up a 360 page. Can you please help?

    I'm on the 360 home page. I click the button that says Get Started. I choose a Nickname and enter my email address, but when I hit Continue it says this: Sorry, this email is already being used.

    Someone is already using this email within the Yahoo! 360掳. Please go to the Member Directory and change your email address.



    How is this possible since it's my email add? How do I get to that account, if it already exsists? Or fix this?I have a new account on Yahoo and I am having trouble setting up a 360 page. Can you please help?
    See my answer here, it may help:

    http://answers.yahoo.com/question/index;I have a new account on Yahoo and I am having trouble setting up a 360 page. Can you please help?
    :) You're welcome. Thanks for voting!

    Report Abuse

    I open my command prompt and the directory is doc.'s and settings. How do I change it to Windows?

    I want to do a scanreg /fix but I need to be in windows command not documents and settings.I open my command prompt and the directory is doc.'s and settings. How do I change it to Windows?
    1) Input ';cd..'; without the quote. After that, press enter.

    2) Repeat step 1 until you only see C://.

    3) Input ';cd Windows'; without the quote. After that, press enter.



    After that, you should be able to run scanreg if the exe is inside Windows folder.



    Hope that helps =)I open my command prompt and the directory is doc.'s and settings. How do I change it to Windows?
    cd\Windows
    cd c:\windows
    cd\windows



    i recommend u get a dos book, for easy reference.
  • should she tell someone
  • baby name combo
  • Make an iFrame anchor jump parent page?

    I've been toying with the idea of creating a site of mine with an iFrame for my navigation links so that I only have to change it in one place (the same concept as using external CSS).



    I've run into one most important, most critical, most crucial, most exasperating problem: I can't figure out how to make the link in the inline frame to force the parent directory to change.



    I don't want anything complicated, if possible. My main concern is browser compatibility. If JavaScript is necessary, please keep it minimal.



    Also, it needs to be capable of validation for XHTML, so if the id field works over the name field, please use that.



    Thanks!Make an iFrame anchor jump parent page?
    You can't. For security reasons there are many attributes of the parent window that are inaccessible to iframes. However, you could put your *content* in an iframe. The parent window can change the window.location of a child iframe all day.

    Troubleshooting with Word template & footer?

    I found the answer to my question about how to set up an automatic footer in my word documents as posted by another user:



    ';First, the basic procedure.



    1. In the header or footer, click the Insert-%26gt;Field.

    2. Scroll down and select FileName.

    3. Check the Add Path to Filename check box.

    4. Click OK.



    Now, if you've already gone that route but want it on all future documents, do this:



    1.Close all open copies of Word.

    2.Open Word.

    3.Click on the File-%26gt;Save As menu item.

    4.In the ';File of Type'; list box, scroll down to Document Templates and select it. The directory should change and there should be a Normal.dot file in it. DON橳 SAVE THE FILE. Press Cancel instead.

    5.Click on the File-%26gt;Open menu item.

    6.Select Normal.dot. Normal.dot should become your open document.

    7.Do the previous sequence here.

    8.Save the file with File-%26gt;Save. You may get a warning message about the Global template having been changed. This is OK. Click Yes.

    9.Close Word';



    BUT... despite following these instructions carefully I'm having some problems.



    The first is that have inserted ';Author'; into the footer but it shows up as blank in the template. When I open a new document (not the template for editing) and do the same procedure of inserting ';Author'; into the footer it show up correctly with my name.



    The second is that I inserted ';file name'; into the template and it shows up as 'Normal' which is fine because that is the name of the file. But when I open a new document and save it as, say 'myfile1' the footer does not automatically update and still shows 'Normal' as the file name. If I manually go in and delete it an re-insert ';file name'; it works.



    Any suggestions for fixing these problems?

    Thanks!!Troubleshooting with Word template %26amp; footer?
    You should be able to force Word to update those fields, and any others, on new documents this way:



    1. Press CTRL/A to select the entire document.

    2. Right-click in the selection and select (if it appears) Update Field.

    3. Click in the Header and repeat the above steps.

    4. Do it again in the Footer.



    Hope that helps.

    How could i change path when i want to install my program to other directory or other drive?

    i need detail instructions on what to do. the program i want to install dont ask whether i should save to other directory or other drive. The program automically install on c: drive. if in case the program already install on c: drive and i want to transfer to other directory or other drive what should i do.How could i change path when i want to install my program to other directory or other drive?
    You should install ';custom';which let you do delete unnecessary options andchange tha path .How could i change path when i want to install my program to other directory or other drive?
    type in the directory , or browse it and click on it

    Yahoo 360 Help?

    How can i contact Yahoo 360 itself for help..I keep getting this...Sorry, this email is already being used.

    Someone is already using this email within the Yahoo! 360掳. Please go to the Member Directory and change your email address.

    ...whenever i try making a 360 off my new nicYahoo 360 Help?
    You can click this:

    http://help.yahoo.com/l/au/yahoo7/360/fo

    but I think you'll find that the answer is that you can't make two 360 pages on one Yahoo ID - you'll have to sign out of Yahoo, then make a new ID (with a new email address).

    SAN ANDREAS - MOD HELP

    how and what file do i have to access in the gta directory to change vehicle value's - mainly i want to make the police motorbike go faster



    any help would be greatly appreciated - or even a recommended modSAN ANDREAS - MOD HELP
    You need to download a modding tool. It is very simple with the use of this program. The download link is located in the sources of this answer. Enjoy modding.



    If you need some more modding tools for GTA, I've always used www.thegtaplace.com It is safe and reliable. I have never downloaded a virus from there.

    How can I recover my photos?

    I changed the Home Directory name on my MacBook (OS X 15.5) and created a new user for it etc..



    Well it worked, and everything seems to be as it was before.... Except my iPhoto library has disappeared. :/



    I already deleted the old user account and Home Directory.. Any way to get my pictures back?How can I recover my photos?
    ';YAY I figured it out.';



    Great!!!



    Now, please ';vote for a best answer';, or delete the question. Until you do, it remains an ';active question'; that others will click to read or answer, which wastes their valuable time.How can I recover my photos?
    10.5, make that.

    Report Abuse


    nope i dont think so i have a PC and i know i can but i think macs don't once it has been delete it is done
  • cat
  • How do i make a quilt
  • Why can't I set up my 360 page?

    When I try to set up my 360 page, I get this message:-



    ';Registration

    Sorry, this email is already being used.

    Someone is already using this email within the Yahoo! 360掳. Please go to the Member Directory and change your email address.';



    Wtf? How can someone else be using my email address?!Why can't I set up my 360 page?
    360 has been closing down for months now. Thousands of us have migrated to Multiply or other places...very sadly....It was suosed to be gone for good at the end of this month. They told us no one is montering it anymore to fix problems that arise. I was there for 2 years.Why can't I set up my 360 page?
    I've had that on my account I think Yahoo are having trouble with it.
    Bummer!

    Set up another email address and if it is accepted, then after set up try to change it back to the one you really want.
    Choose another email address... It is useful to have two email addresses... I think...
    set another email=)
    I don't know im trying to do it

    Hi friends, my PC is starting up and Shutting down very slowly.Which HASH KEY values have to be changed?

    how to navigate to hash Keys directory and change values so that my system starts up quicklyHi friends, my PC is starting up and Shutting down very slowly.Which HASH KEY values have to be changed?
    When my computer startup and shut down is slowed, I usually defragment all part of the Hard Disk (all partitions), and after that I usually use reg cleaner to clean my registry. It usually works. Try it!Hi friends, my PC is starting up and Shutting down very slowly.Which HASH KEY values have to be changed?
    Get support from microsoft or do some troubleshooting help. You can also use wikipedia to get the exact answer you want if you are not satisfied with this one.
    If you dont really know what you are doing then I would suggest you stay out of the system 32 which is the system registry where you go to edit the hot keys you are referring to. go to cnet.com and in the search area type in tweaknow and download this free registry cleaner. it will get rid of it all for you and you dont have to worry if you are deleting the wrong things because if you do then your system cant run right at all. the link is down below.

    How do i change my credit card number when renewing my directory listing?

    i need to renew my yahoo directory listing. it took me an hour on the phone just to find my log in info and the guy said i could easily change my credit card number. now it won't let me change the visa (it's an old visa). yahoo is certainly living up to its name in my book. it's unacceptable that it would take this long to get something like this done.



    if i don't get an answer, i'll just let it lapse, since if they don't know their heads from their butts, i'm quite sure they're not driving traffic to my site!How do i change my credit card number when renewing my directory listing?
    Everything you need is on this link other than the credit card. It's your listing and not anyone elses. Call them back at the toll free number diplayed and change it over the phone.On the second link these are all the changes you can make on the web.

    http://smallbusiness.yahoo.com/webhostin



    http://add.yahoo.com/fast/change?chLMC



    As far as getting traffic to come your way......people will be directed to your site on yahoo search as shown here but use the latter 2 for improving your sites performance.

    http://smallbusiness.yahoo.com/webhostin



    Go to Useful links on the left and get a sponsor listing. Have to spend money to make it.



    https://ecom.yahoo.com/dir/manage/orders



    This link will help in getting people to come to your site also.



    http://searchmarketing.yahoo.com/srchsb/

    Wordpress:error when changing letter ';W'; in wordpress directory into small letter?

    Hi guys, in my directory I had the title ';Wordpress'; with ';W'; in caps. I wanted to change it to ';wordpress'; with small ';w'; but when I access the blog it says error. What should I do or change guys? I really need your help. Need to change my ';Wordpress'; directory to ';wordpress'; and I think I do not know how to properly do it. Thank you...Wordpress:error when changing letter ';W'; in wordpress directory into small letter?
    Hi there,



    Your webhost is probably case sensistive, therefore Wordpress and wordpress are two different directories.



    If you want to move it to the wordpress directory you will have to install Wordpress into that directory and copy your plugins / themes / database over.



    All the best



    Jason

    Problem trying to create a new Yahaoo 360 page?

    On the Yahoo 360 Beta, How is it that when I try to log in, it says that someone else is using MY email ID?



    I am trying to create my first page on there.

    After I log in to my user ID, I try to go to the ';Create your own 360 page';. Then it says:

    Registration:

    ';Sorry, this email is already being used.

    Someone is already using this email within the Yahoo! 360掳. Please go to the Member Directory and change your email address.';

    I have gone in and changed my password to no avail. and I am not changing my email address! How can someone else be using my email addy anyways?!?Problem trying to create a new Yahaoo 360 page?
    Go to your Account details ( top of this page) and change your alternate email ,just set a different one as default then when you have set up your 360 page change it back ,it will accept that.It did the same to me when I set up my secondary 360Problem trying to create a new Yahaoo 360 page?
    Same problem here!!!! Nothing is working.

    Report Abuse


    Perhaps you are already logged in...try signing out then go into 360



    Hope this helps

    How do i get Flash 8 links to work?

    I've created a flash file (fla) with url's embedded and after publishing them to swf they do not seem to work when I upload them on the web?!



    I've changed the link directory from my hard drive to my personal url (all with in Flash) but it doesn't do anything when the link is clicked when the page is uploaded!!



    help!!!!!!!How do i get Flash 8 links to work?
    I'm wondering if something in your coding is screwy. It's kinda hard to tell without looking at it.



    Check all your coding and see if that helps.
  • layered hair
  • windows web hosting
  • Inside Windows XP COmmand prompt how do I change to a different harddrive so I can view that directory?

    My current dir is the C drive. I want to check my F drive thru command prompt. What would be the command string and options.



    ThanksInside Windows XP COmmand prompt how do I change to a different harddrive so I can view that directory?
    just type f:



    to change directory type cd *foo*



    *foo* - is the directory name you want to goInside Windows XP COmmand prompt how do I change to a different harddrive so I can view that directory?
    hi,



    type F:

    cd \



    HWH,

    http://dwikristianto.homeunix.org
    First of all to get Command prompt Programs - Run - Type 'cmd' and press enter key

    U will get Command prompt screen as follows

    C:\WINDOWS%26gt;



    To Change to other drives



    C:\WINDOWS%26gt; ' type Drive Letter followed by : Symbol AND PRESS ENTER KEY'

    Eg:

    C:WINDOWS%26gt;d:

    NOW U WILL GET PROMPT AS

    D:\%26gt;



    TO CHANGE TO DIFFERENT DIRECTORIES U HAVE 'CD' COMMAND

    CD FOLLOWED BY DIRECTORY NAME

    DIR COMMAND ALLOWS U TO VIEW THE LIST FILES AND DIRECTORIES
    for change directory

    typy F: press enter

    end type ';dir'; and press enter.

    Changing default ports on Active Directory?

    I want to change ports (389,636) on Active Directory Windows 2003, how do I do that?Changing default ports on Active Directory?
    I found this article on Active Directory Replication over Firewalls...this might help

    How to a change the default ';Save To:'; directory for files, in Internet Explorer?

    ThanksHow to a change the default ';Save To:'; directory for files, in Internet Explorer?
    Well, the problem with having a default Save to: directory is, not every file is going to fit that directory, by which I mean, game files and picture files, and different file types need to be sent to different locations, when you are saving something from the internet, when that option comes up, click on Browse, or on one of the other folders, besides the one that it's pointed to, and select where YOU want it to go.. ie, pictures into My Pictures, and even into a subdirectory in My Pictures, Games would go into Program directory or, if you are installing, just let it go into the directory that the game tells you it's going to make.

    Text files can be sent where ever you know you can find them, just make sure you remember where you send your files, otherwise, you won't be able to find them later..How to a change the default ';Save To:'; directory for files, in Internet Explorer?
    there is no ';save to'; menu item
    Internet Explorer keeps the latest directory where you save files. So you'll see the last folder where you saved something.

    Hey! How come Yahoo 360 won't let me use my own yahoo email addy when I try to register??? This stinks! -Dee

    I'm sharing the computer with others so, they signed out and I signed up as a new user with a new ID and email and I want to create my own yahoo 360 page, but everytime I go to register using my new email, it comes back and says, ';sorry, someone else is already using that email in yahoo 360. Go to Member directory to change it.'; But I want to use this one!Hey! How come Yahoo 360 won't let me use my own yahoo email addy when I try to register??? This stinks! -Dee
    Is the addy you're trying to use the one associated with the new ID you say you made? If so, then YOU must be the one with a 360 using that email addy. So, try signing IN rather than signing UP.

    When I double click on a directory icon, the default response is to open a search box. How can I change that?

    Could a clever person let me know how I can ascribe the double-click action to opening the directory I've clicked on?

    Thank you in advance.When I double click on a directory icon, the default response is to open a search box. How can I change that?
    I'm assuming you are using Win XP; although this solution may also work with Vista.

    Go here

    http://www.dougknox.com/xp/scripts_desc/



    right click on the Download link and save folder_open.vbs to your desktop or a suitable location eg My Documents.

    Double click the vbs file to install. Hopefully you should fix the problem. Some antivirus programs may detect the .vbs file as suspicious - you can safely ignore such warnings. Doug Knox is a trusted authority on Windows; see here

    http://www.microsoft.com/windowsxp/exper

    How do you launch an exe file in VB without using its full address for like files that are in the same folder?

    I want to launch an external .exe program from my Visual Basic Application, but it needs to be in the same directory, that could change multiple times. Is there anyway of the application finding out the address itself and then finding the file? like... Process.Start(';$GetDirectory$/Applicatio? except ofcourse, $GetDirectory$ being the command that makes it find the directory.How do you launch an exe file in VB without using its full address for like files that are in the same folder?
    -----

    Well it's harder to do this in VBA. In VB you could just use App.Path. That doesn't work in VBA. There's a few things you could try. If you're using Access, try CurrentProject.Path. Or if you're using Excel, try ThisWorkbook.Path. If you're using Word try ActiveDocument.Path.

    For different applications there's a different object you have to use.

    Hope this helps!

    -----



    I think I misread your question. If it's just a normal VB application, just use App.Path to get the application path. There is one trick though. If the path is ';C:'; there will be no ';\';, unlike other paths (e.g. ';C:\Program Files\';). To compensate for this, I usually create another variable (call it AppPath for instance), which I set as follows:



    Dim AppPath as String

    AppPath = App.Path

    if right(AppPath, 1) %26lt;%26gt; ';\'; then

    AppPath = AppPath %26amp; ';\';

    end if



    AppPath can then be used in place of your $GetDirectory$ for instance:

    Process.Start(AppPath %26amp; ';programname.exe';)How do you launch an exe file in VB without using its full address for like files that are in the same folder?
    Finding it somewhere on the same computer, with no restraints?



    Find all the drives. Start with the first one and walk the directory structure looking for the fgile. (There's no guarantee that the file you find is actually the one you want. Someone else may have created a file with the same name.)



    You can find directory walking code all over the internet. Karen's replicator has good code in VB6.
    use ';App.Path'; and concatenate it with the application name to run

    for example



    Process.Start( App.Path %26amp; ';Application1.exe'; )





    hope this helps.
  • favorite folk music
  • xp
  • How do I configure my PHP.INI file to allow for the ability of uploads?

    I just recently transfered over my website to a new server, and now I can not use the script that was set to upload photos with out changing the photo directories to a chmod of 777



    How do I configure my PHP.INI file to allow for the ability of uploads so that i dont have to chmod my directories to 777





    I am currently running 5.2.5How do I configure my PHP.INI file to allow for the ability of uploads?
    In my openion, you don't have to do anything with php.ini file. You just modify your script. Whenever a file is being uploaded, just change the folder parameter to 775 and then change back to 755. I am sure it will work. Never keep your directories be 777. It is a major security risk. Please read at following to know how you can change folder parameters on the fly.

    http://www.php.net/manual/en/function.ch

    Regards

    How can I change the point size of the type in the inbox directory?

    Point size of home page is fine. Also point size of mail once opened is fine. Only the listing of mail in the mail boxes is tiny and I can't seem to make it larger.How can I change the point size of the type in the inbox directory?
    Try going to View - Text size, then click on a larger one than is selected.

    Tricky java question!!: locating .class files, incorporating .class files into a browser, ect. PLEAS HELP!?

    I’ve downloaded the jdk-6u3-windows-i586-p installation program, %26amp; installed it successfully. By default it created a folder within program files called Java. With in that there are three folders: ';jdk-6u3-windows-i586-p';, ';jre1.6.0_03';, ';jre1.5.0_03';.

    In the command line I changed the directory by typing:

    “cd C:\ProgramFiles\Java\jdk1.6.0_03\bin”, %26amp; then successfully translated a ‘.java’ file to a ‘.class’ file by typing: “javac HelloWorld.java” into the command line. So at this point no errors have arisen and everything is working perfectly. I tested the program by typing “javac HelloWorld” %26amp; it worked. However there doesn’t seen to be a HelloWorld.class file in the current folder. By default where does the JDK translator place the ‘.class’ file? Also how is the ‘.class’ file integrated with a webpage page and ran when someone calls that site? I’m guessing you have to invoke a PHP script that tells the server to run the ‘.class’ file. This is all new to me, any help would be greatTricky java question!!: locating .class files, incorporating .class files into a browser, ect. PLEAS HELP!?
    Correct Procedure -%26gt;

    Firstly you should not use bin folder (where the java compiler, interpreter,... resides) to store your java files.

    You have to set environment variables called PATH to tell the OS Java Virtual Machine where your compilers, etc are.

    You have to set environment variables called CLASSPATH to tell the OS Java Virtual Machine where your classes/source code/programs reside.

    Environment variables can be set from Control Panel - System - Go to Advanced Tab - then click Environment variables.

    Append to PATH variable the location of Java installation directory bin folder. Please dont delete the existing value for these variables, just add a semicolon and then your path.

    Append to CLASSPATH variable the location of folder in which you want to store your Java Programs. Please dont delete the existing value for these variables, just add a semicolon and then your path.

    For more information, refer Java documentation or google it or sun.java.com.

    I am just giving the right direction for exploration.



    Answer to your question -%26gt;

    It seems you are storing your java programs in the java installation directory. Java compiler, by default, stores the .class files in the same folder as .java if you dont use the '-d' switch with javac command. So ideally it should be there only, Just use windows search facility to find it on your computer.

    For usage of the .class files with webpage, learn Java Applets. I cant paste an entire chapter here.

    Good day bye