|
I have noticed that some time wordpress asks for FTP password during automatic upgradee? I have 2 blogs and I get this prompt for one blog and not for the other. Why is that?
Answer Snippets (Read the full thread at superuser):
If it is not, it will ask for a FTP password so it can save files on the server..
For wordpress (I think chmod 755 is), it will just create the files .
|
|
I have a script( dobrt ) which upon executing asks for a password.How can i write a script which executes dobrt and automatically supplies the password it asks for.
when i execute ./dobrt -p file.txt , the system asks for a password. I want the password...
Started by Abhijeet on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
If the password_HOME="/home/abhijeet/code/testcases....
Then you will be able to pass this passowrd to dobrt just as you do it like "-p file.txt" in the command line (through a script) .
It to parse an extra argument that accepts the password.
|
|
I am trying to open an ADOConnection component. The database is in MDB format. I use JET to access it. Whenever I use AdoConnection.Open in my code the window pops up and asks for userid and pass. I enter "Admin" for userid and leave password empty, and...
Started by Tofig Hasanov on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Set the LoginPrompt on the connection object to FALSE
Try:
AdoConnection.LoginPrompt := False .
|
Ask your Facebook Friends
|
Hi
I am trying to copy files from my mac to a network drive. When copying the files, an empty file is created at the destination and I get a prompt saying I might have to enter an administrator password to change the file named "whatever my file name ...
Started by lostInTransit on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
How are you copying the files? Are you using NSFileManager , or an AppleScript that talks to the Finder, or what?
Is the file actually created, or is Finder just displaying an icon for it? What kind of machine is the network drive (another Mac, a Windows... .
|
|
I would like a batch file that can register a user into itself. something like:
@echo off echo Choose an option: echo 1:Register echo 2:Login Set option= set /p option=Your option: if %option%==1 goto reg if %option%==2 goto login ... :reg --The registration...
Started by YourComputerHelpZ on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
If you want usrname= set /p usrname=Username: Set passw= set /p passw=Password: echo %usrname%>> & goto :begin) :passwo set pass= set /p pass....
Rem Check password and succeed/fail )
During testing or debugging, make sure echo is on.
|
|
I have an Apache server with password-protected web directory. That directory has a sub-directory, which requires another password, but anyone who can access the sub-directory should have access to the parent directory as well. That is:
/stuff - users...
Started by Evgeny on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at serverfault):
I haven't tried it, but would it work to change them both to require valid-user and point the admin .htaccess to a group .htpasswd file which was the admin subset and the base directory .htaccess to a .htpasswd file with the larger superset?
I believe... .
|
|
After updating computer where exchange server runs, some users on domain now have a problem. They say, outlook keeps asking for user name, password and domain. I make some of them to try their passwords but they say it does not work.
I have been using...
Started by kulakli on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at serverfault):
Typically, this happens in scenarios where the user isn't logged-on to the cleient computer with a user account that is a member of a domain... .
Outlook prompts for credentials when "integrated" authentication to Exchange fails (I'm glossing over this a bit) .
|
|
The only time the Mac OS X Terminal seems to ask for my identity file’s password, is when I restart. I’m fairly paranoid, and this seems insecure; how can I ensure it asks for the password every time I attempt to use the key?
Started by elliottcable on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at superuser):
Personally, I'd check the Keychain first as I've a fealing it's probably a safer bet on a GUI centric machine... .
If it's only asking you when you log in, then it's being stored in one of two places : in the ssh-agent via ssh-add or via the OSx keychain.
|
|
This is new behaviour in OS X 10.6: when I get keychain dialog boxes asking me for my password or to approve use of my keychain, the Character Viewer appears over top.
I don't want to disable the Character Viewer completely because I use it; I just don...
Started by Luke Andrews on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at superuser):
Did you change your language settings?
UPDATE:
I was able to replicate the... .
Although it is odd that you are getting this behaviour .
With the Character Viewer open, on the lower left click the settings and select "Minimize Viewer on Application Switch" .
|
Mac OS X: My wifi asks me for a password if I change networks in mid session, but not at login time?
Hello - just a slightly irritating problem:
I have two wifi networks in my home, and both have their WPA keys stored in the keychain. However if I am connected to one, but need to change to the other in mid-session, it asks me for the WPA key. Irritating...
Started by Thomas Browne on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at superuser):
Prompting for an administrator password is a preference (but I guess that's not what you see when button Advanced See the option "Require administrator password to: Change networks"
As you commented that you already have that option disabled....
|