|
Hi everyone.
I have a windows server with suspended processes. However, even with administrator privileges, I can't kill them. Everybody knows some idea without restart the server?
I used command taskkill but it doesn't work.
|
|
|
|
|
Try
taskkill /pid pid /t /f
|
|
|
|
|
It didn't work. Give me access denied.
|
|
|
|
|
Who owns the process? If it's SYSTEM, you're not going to be able to kill it.
|
|
|
|
|
It doesn't a system process, but it's a application process.
Btw, can a app when give a "exception" suspend a running process?
|
|
|
|
|
That's strange, because you can kill any process you own, even if it's suspended.
I didn't ask if is was a system process. I asked what account the process was running under. Go the Task Manager, Details tab, find the process that's suspended, and look under the "User name" column for the account that owns the process. If it shows your username, you can kill it.
|
|
|
|
|
Please provide me instruction to get free source code
|
|
|
|
|
How to send multiple message with SMTP
|
|
|
|
|
You send one message, then you send another message, and so on.
Your question makes no sense.
"These people looked deep within my soul and assigned me a number based on the order in which I joined."
- Homer
|
|
|
|
|
Já exportei a pasta do meu website Joomla no gerenciador de arquivos no cpanel, mais sempre que tento acessar o website com o endereço na net. Vem sempre uma informação "Erro" não sei o porque.
|
|
|
|
|
Por Favor, use o inglês ao postar neste site
|
|
|
|
|
the below is the code.
<!DOCTYPE html>
<html>
<head>
<title>My First PHP Website</title>
</head>
<body>
<h2>Registration Page</h2>
<a href="index.php">Click Here to go Back</a><br/><br/>
<form action="register.php" method="post">
Enter Username: <input type="text" name="username" required="required"/> <br/>
Enter Password: <input type="password" name="password" required="required"/><br/>
<input type="Submit" value="register"/>
</form>
</body>
</html>
<?php
if($_SERVER["REQUEST METHOD"] == "POST"){ //line 19
$username = mysql_real_escape_string($_POST['username']);
$password = mysql_real_escape_string($_POST['password']);
echo "Username entered is: ". $username . "<br />";
echo "Password entered is: ". $password;
}
?>
however the error i get on a browser is as below.
Warning: Undefined array key "REQUEST METHOD" in C:\xampp\htdocs\MyFirstWebsite\register.php on line 19
|
|
|
|
|
Member 15064261 wrote:
$_SERVER["REQUEST METHOD"] The correct key is REQUEST_METHOD . You need an underscore between the words, not a space.
"These people looked deep within my soul and assigned me a number based on the order in which I joined."
- Homer
|
|
|
|
|
You need to put a underscore in the name "REQUEST_METHOD". Space is the real cause.
|
|
|
|
|
Why are you telling me what I already told the OP back in February?
"These people looked deep within my soul and assigned me a number based on the order in which I joined."
- Homer
|
|
|
|
|
Member 15064261 wrote:
$password = mysql_real_escape_string($_POST['password']); That line tells me two things:
1) You're planning to write code which is potentially vulnerable to SQL Injection[^]. NEVER use string concatenation / interpolation to build a SQL query. ALWAYS use a parameterized query.
PHP: SQL Injection - Manual[^]
2) You're planning to store your users' passwords in plain text. Don't do that! Use PHP's built-in methods to store the passwords securely.
PHP: password_hash[^]
PHP: password_verify[^]
"These people looked deep within my soul and assigned me a number based on the order in which I joined."
- Homer
|
|
|
|
|
I have installed a service in one of my new test server which is used for download or upload files from ftp server by calling an exe file, which will internally call cuteftp tool. Here my issue is when I am starting the windows service it not working the service is not even connecting to ftp server, and the service is logged on with local adminid.
when I am opening the exe file manually by clicking "run as different" user with the local admin the service is working perfectly and the upload/download is happening.
Please advice if any configuration changes in windows level is required or not
|
|
|
|
|
Check the credentials for your service. It sounds like it needs administrative privilege.
|
|
|
|
|
Hi Richard,
Credentials are correct and having local admin right for the userid, cross verified
|
|
|
|
|
Well you will need to gather much more information. It is impossible for anyone here to guess what is happening.
|
|
|
|
|
Have you checked that the service has permission to write to the log file?
Check the permissions for the directory, go to log folder - Properties and the Security tab.
Services are usually run without write access to the Windows file system.
|
|
|
|
|
Hi all, I have a domain xxx.com supplied by ionos.co.uk which I've pointed to a Linode VM I rent from Linode.com , I have email accounts under this domain which can no longer receive email ( presumably because they are being sent to my ip address on Linode.com and not the mail server on ionos.co.uk ) what can I do to configure the domain ( either on ionos.co.uk or on the Linode.com server ) to be able receive email - I hope this makes sense I'm not that au fait with this sort of thing
"We can't stop here - this is bat country" - Hunter S Thompson - RIP
modified 16-May-20 13:20pm.
|
|
|
|
|
Looks like you need to talk to ionos. DNS routing is different for http/s etc (A, AAAA records) and mail (MX records). If you can find someone there that recognises those terms, they'll be able to sort you out. Worst case, if you do a DNS lookup ("whois") on ionos, it'll give you admin contacts.
Of course, looking up your own domain could give you some clues. (I'm not game to do a lookup on xxx.com! )
HTH
Peter
Software rusts. Simon Stephenson, ca 1994. So does this signature. me, 2012
|
|
|
|
|
Hi Pete so you think the problem lies with ionos ? the thing is I had to change so many things on both Linode.com and ionos.com I really don't know what is doing what.
Let me try and explain
I obtained my domain mywebsite.com by purchasing an email package from ionos.com
I can have up to 25 email addresses
My email worked
Later on I setup an account with Linode.com and purchased a VM which came with a public ip address.
I then added my purchased domain name to my VM ( purely for ease of access ) - you do that by setting your domain to use Linode nameservers ( this is where I glaze over )
My email stopped working ( I can send but not receive )
I hope this makes things clearer
Thanks again
"We can't stop here - this is bat country" - Hunter S Thompson - RIP
|
|
|
|
|
Hi,
I looked up your DNS entry and it is missing the A record.
Best Wishes,
-David Delaune
|
|
|
|