|
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
|
|
|
|
|
Read this site a lot.
Then ask logical questions that are "logical" to a beginner (if you are a beginner), then get flamed by self-delusional idiots (that have vast amounts of points on this site) that tell you how stupid that they think you are, then occationally get an incredibly useful answer from a few of the old-timers here. Some try to verbally kick you. Some try to gently guide you. Wading through the idiots to get to the useful is like finding gold.
Or, you could search duckduckgo.com (which is kind of Bing blindfolded) for +"Active" +"eCommerce" +"Flutter App" .
Maybe I will buy this company and delete the accounts of the self-engrossed bullies.
|
|
|
|
|
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
|
|
|
|
|
You make a list of the messages that you intend to send and then you send them one at a time.
Your question makes perfect sense.
Start here: SMPP protocol with c at DuckDuckGo[^]
And then read a lot.
SMTP, I guess as you might be attempting to do, is just sending email. Not what I have done recently, but this is how I would approach it.
Thank you for asking.
|
|
|
|
|
Member 15078716 wrote: Your question makes perfect sense. This is in a servers forum and the title says SMTP server, which suggests to those understanding context, he would want to talk about the server side of things. Rather the question is about the SMTP protocol itself and presumably from a client application no less.
I also think most folks would've received this question better if he attempted to explain the derailment from the topic of the forum.
Jeremy Falcon
|
|
|
|
|
Also, note that SMPP and SMTP are not the same thing.
Jeremy Falcon
|
|
|
|
|
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
|
|
|
|
|
Pergunta:
Estou com problemas em hospedar meu site joomla no Pin inmotionhosting.
Já exportei a pasta do meu site da Joomla no gerenciador de arquivos no painel, mais sempre que tento acessar o site com o endereço na internet. Há sempre uma informação de "erro", não sei por quê.
Responder:
Use esta página :
https://duckduckgo.com/?q=Pin+inmotionhosting&t=h_&ia=web
Também:
https://duckduckgo.com/?q=what+language+is+this+translator&t=h_&ia=web
então escolheu português (Brasil) como entrada e inglês como a saída das duas caixas próximas ao topo da página. Em seguida, envie a tradução que estaria em inglês para o seu provedor de hospedagem e peça-lhes ajuda. Eles provavelmente responderão em inglês. Use este tradutor ou outro tradutor online para ir do inglês ao português (Brasil) e obter sua resposta. Trabalhe o seu caminho através da configuração desta maneira e você pode fazê-lo funcionar.
Obrigado por perguntar.
|
|
|
|
|
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.
|
|
|
|
|
1) Click the Start button in the lower left corner of your screen, type “troubleshoot” and click Troubleshooting in the result.
2) Click Fix problems with Windows Update.
3) Follow the on-screen instructions to complete the troubleshooting process.
Regards,
Will
|
|
|
|
|
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
|
|
|
|