Column count doesn't match value count at row 1SMTP Error: Could not connect to SMTP host - smtp

I have this error message and dont know what is the problem, help me please!
SMTP Error: Could not connect to SMTP host.
Ooops (saveEmpleado): Column count doesn't match value count at row 1
SMTP Error: Could not connect to SMTP host.
Warning: Cannot modify header information - headers already sent by (output started at
/home/ajuares/public_html/php/functions/PHPMailer/class.phpmailer.php:586) in
/home/ajuares/public_html/php/action/inscribir.php on line 344

Related

How can I send stanza from ejabberd server to user?

I am new on ejabberd. I followed this link Ejabberd return message to sender hook / message receipts to send a message from server to user which is 6 years old. My ejabberd server crash with the given error:
**exception error: no function clause matching
xmpp:set_from_to({xmlelement,"message",[{"type","serverreceipt"},{"from","67456efc-be57-4cbd-a176-527de2dce19d"},{"to","e5d6d83c-ea77-4d10-aaac-4e0e38899ac2"},{"id","mty321"}],[{xmlelement,"body",[],[{xmlcdata,[]}]}]},{jid,<<"67456efc-be57-4cbd-a176-527de2dce19d">>,<<"faiqkhan-virtualbox">>,<<>>,<<"67456efc-be57-4cbd-a176-527de2dce19d">>,<<"faiqkhan-virtualbox">>,<<>>},{jid,<<"e5d6d83c-ea77-4d10-aaac-4e0e38899ac2">>,<<"faiqkhan-virtualbox">>,<<"4008526814005163385914">>,<<"e5d6d83c-ea77-4d10-aaac-4e0e38899ac2">>,<<"faiqkhan-virtualbox">>,<<"4008526814005163385914">>})
(src/xmpp.erl, line 263)
in function ejabberd_router:route/3
(src/ejabberd_router.erl, line 111)
in call from
mod_stanza_ack:on_user_send_packet/1
(/home/faiqkhan/ejabberd-20.07/mod_stanza_ack.erl, line 30)**
Is this method depreciated? or I am doing someting wrong? I am trying to do is when user A send a message to user B, when the server get the message server send an acknowledgement to user A that the server get the message.

radius accept all, but refusing client?

I have set up a radius I need for some authentication testing. However, it needs to just accept any and all requests so I have put a "DEFAULT Auth-Type := Accept" to fix that.
However, when I then test I get this from the log:
Error: Ignoring request to authentication address * port 1812 from
unknown client port 42159
So I googled it and found that even though its set to allow all it still needs the IP in the clients.conf? So treid that, but now im getting:
Error: rlm_sql_getvpdata: database query error Error: [sql] SQL query
error; rejecting user
Is there not any way I can accept everything without adding them as clients first?
If not how do I fix the SQL issue? I followed a guide so everything should be right.
You can add a client that covers the entire ipv4 range with:
client all {
ipaddr = 0.0.0.0/0
secret = <secret>
}
Please post the output of radiusd -X around the SQL error, as it's not possible to tell what's going on from that single log line.

How to interpret this particular SMTP response by AOL?

Connect to AOL's mail server:
telnet mailin-01.mx.aol.com 25
You receive:
554- (RTR:DU) https://postmaster.aol.com/error-codes#554rtrdu
554 Connecting IP: 82.xxx.xxx.xxx
Connection to host lost.
Interestingly, the line breaks after the first two lines are <CR><CR><LF>. This is not visible in the telnet output. I determined this using a C# program that prints the bytes.
This appears to be invalid SMTP behavior. Is it? How to deal with that when writing an SMTP client?
(I understand the reason for the error code. The question is not about that but about the apparent protocol violation.)

how to resolve error 17836, Severity: 20, State: 14?

Length specified in network packet payload did not match number of bytes read; the connection has been closed. Please contact the vendor of the client library.
Error: 17836, Severity: 20, State: 14. I am getting this error 5 times at the same time almost and want to know the reason for its occurrence.
See the solution here:
Since the SQL Server has Event ID 17836 logged, the SQL port is open.
It is more like authentication issue. Based on this articles
(Configuration for querying SQL database remotely –
http://www.howtonetworking.com/others/testsqlconnect2.htm ), we may
have 3 fixes:
creating SQL login ID (recommended)
join the computer to the domain
allow anonymous connections to SQL Server 2000 or to SQL Server 2005 (don’t recommend)
And this MSDN forum
Perform a nslookup of the CLIENT IP Address that is listed in the
error message and find out what computer it is that is connecting.
Then you need to check that machine and determine what specifically is
connecting to the SQL Server. You might get more infromation from
doing a SQL Trace for the Errors and Warnings Event Class and have the
ClientProcessID column in the trace data. When the error spikes, you
might get the PID for the process that is connecting from that
10.26.32.96 machine, and then you can find that process in Task Manager on that machine by adding the PID to the data displayed (View
-> Select Columns).
In my case, these events coincided with me doing telnet connectivity tests to our SQL Servers. We would see one entry in the Windows Event Log for each instance we successfully did a telnet to.

Connection not allowed to Mysql server via IISExpress [duplicate]

This question already has answers here:
Host 'xxx.xx.xxx.xxx' is not allowed to connect to this MySQL server
(29 answers)
Closed 8 years ago.
When connecting to the mysql server on my localhost via an iisexpress server I get the following error:
iisexpress.exe Error: 0 : Host 'MyPcName' is not allowed to connect to
this MySQL server
But the problem is it only happens to certain connections and there is no real difference between the connection or/and task.
Is this a problem of mysql or of iisexpress? And how do I know what it is and fix it?
I'm using MySQL Connector Net 6.7.4 ,Visual Studio 2013 and XAMPP 1.8.2.
Taken from the reference manual:
f the following error occurs when you try to connect from a host other
than the one on which the MySQL server is running, it means that there
is no row in the user table with a Host value that matches the client
host:
Host ... is not allowed to connect to this MySQL server
You can fix this by setting up an account for the combination of
client host name and user name that you are using when trying to
connect.
If you do not know the IP address or host name of the machine from
which you are connecting, you should put a row with '%' as the Host
column value in the user table. After trying to connect from the
client machine, use a SELECT USER() query to see how you really did
connect. Then change the '%' in the user table row to the actual host
name that shows up in the log. Otherwise, your system is left insecure
because it permits connections from any host for the given user name.