|
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
|
|
|
|
|
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
|
|
|
|
|
Hi there, thanks for your reply - where / how do I add the A record ?
"We can't stop here - this is bat country" - Hunter S Thompson - RIP
|
|
|
|
|
Hi,
The A record is your default ipv4 address for the domain. You can test this stuff yourself instead of posting here. Open a DOS/CMD prompt in either Windows or Linux and type nslookup
To check your mail exchanger you do:
> set type=mx
> peteandlynnekane.com
Your mail records look fine. I am getting:
peteandlynnekane.com MX preference = 10, mail exchanger = mx01.ionos.co.uk
peteandlynnekane.com MX preference = 10, mail exchanger = mx00.ionos.co.uk
To check your name servers you do:
> set type=ns
> peteandlynnekane.com
This looks fine too. I am getting:
peteandlynnekane.com nameserver = ns1103.ui-dns.org
peteandlynnekane.com nameserver = ns1094.ui-dns.com
peteandlynnekane.com nameserver = ns1047.ui-dns.de
peteandlynnekane.com nameserver = ns1070.ui-dns.biz
Here is where the problem is:
> set type=A
> peteandlynnekane.com
Your default ipv4 address is blank.
> set type=AAAA
> peteandlynnekane.com
Your AAAA (ipv6 record) is blank too. But that's probably normal.
Your web host should provide an interface for modifying your DNS records. If not then you need to contact whoever is responsible for managing the DNS records.
> set type=soa
> peteandlynnekane.com
According to your DNS entry... ns1103.ui-dns.org is the authority.
ns1103.ui-dns.org
This looks like a good place to start:
Default DNS Settings for IONOS Domains[^]
Good Luck,
-David Delaune
|
|
|
|
|
Hi,
DNS changes do not happen immediately. The changes need to propagate to other servers. It is entirely possible that your systems administrator has made changes that are not visible to other DNS servers yet.
peteandlynnekane.com
primary name server = ns1103.ui-dns.org
responsible mail addr = hostmaster.1und1.com
serial = 2017060103
refresh = 28800 (8 hours)
retry = 7200 (2 hours)
expire = 604800 (7 days)
default TTL = 600 (10 mins)
Your zone refresh is set to 8 hours. I've checked all of the major DNS providers and nobody has your A record except your ionos host.
Just give it some time. I checked their servers and they just added both your A and AAAA records.
> peteandlynnekane.com
Server: ns1103.ui-dns.org
Addresses: 2001:8d8:fe:53:0:d9a0:5367:100
217.160.83.103
|
|
|
|
|
Ok thanks a lot David - how did you check all of the major DNS providers ( last question honest )
"We can't stop here - this is bat country" - Hunter S Thompson - RIP
|
|
|
|
|
Hi,
pkfox wrote: how did you check all of the major DNS providers ( last question honest )
When you type nslookup you can query any public server. Here is how you would query the google public DNS server for your MX record.
C:\Tools>nslookup
> server 8.8.8.8
Default Server: dns.google
Address: 8.8.8.8
> set type=mx
> peteandlynnekane.com
Server: dns.google
Address: 8.8.8.8
Non-authoritative answer:
peteandlynnekane.com MX preference = 10, mail exchanger = mx00.ionos.co.uk
peteandlynnekane.com MX preference = 10, mail exchanger = mx01.ionos.co.uk
Best Wishes,
-David Delaune
|
|
|
|