Secure FTP
Unsere Server unterstützen sichere FTP Verbindungen. Damit dies funktioniert, muss explizites FTP über TLS verwendet werden.
Unsere Server unterstützen sichere FTP Verbindungen. Damit dies funktioniert, muss explizites FTP über TLS verwendet werden.
Mit unserem WordPress Toolkit stehen die wichtigsten Funktionen für die Sicherheit und Wartung komfortabel in unserem Kundenpanel zur Verfügung.
WordPress ist eines der weltweit am weitest verbreitete Content Management System. Die Absicherung gegen Hackerangriffe steht daher im Vordergrund. Mit unserem integrierten Sicherheitsoptimierungstool hat man die Sicherheit besser im Griff. Die ständige Weiterentwicklung des einfachen Tools sorgt nicht nur für eine besseres Gefühl, sondern vor allem für weniger Arbeit.
Z.B. können WordPress-Aktualisierungen automatisch installiert werden, sobald sie verfügbar werden.
Problem 1
Account postmaster@localhost is missed in MailEnable Management.
Resolution
Go to MailEnable Management > Messaging Manager > Post Offices and check whether postmaster user exists under localhost domain.If postmaster user does not exist:
Delete localhost domain from MailEnable Management.
Disable and enable option Use the mail server installed with Plesk and the default mail account created by Plesk in Plesk > Tools & Settings > External SMTP Server .
Domain postmaster@localhost will be recreated automatically in MailEnable Management.
Problem 2
According to current business logic it is not possible to use both Plesk auto responder and option „Authenticated senders must use valid sender address“ enabled. As workaround enable the option and use autoresponder of Mail Enable.
Resolution
Disable Authenticated senders must use valid sender anddress and Disalbe all catchalls in the Security settings of the SMTP Properties
Add the IP address of the mailserver to the Access controll exception.
Restart the SMTP Connector
Mit ASP.net ist es relativ einfach ein Thumb Bild zu erzeugen. ASP.net stellt dafür die Klasse „Graphics“ zur Verfügung.
Dim thumb As New Bitmap(width, height) Dim g As Graphics = Graphics.FromImage(thumb) g.InterpolationMode = Drawing2D.InterpolationMode.HighQualityBicubic g.DrawImage(bm, New Rectangle(destX, destY, width, height), New Rectangle(0, 0, bm.Width, bm.Height), GraphicsUnit.Pixel) g.Dispose() thumb.Save(strDestinationpfad, System.Drawing.Imaging.ImageFormat.Jpeg)
Download Beispielscript
Beispielscript für das versenden von E-Mails mittels ASP.
<% Const cdoSendUsingPickup = 1 'E-Mail mithilfe des SMTP Pickup Verzeichnis versenden . Const cdoSendUsingPort = 2 'E-Mail mithilfe des Netwerkes versenden. (SMTP over the network). Const cdoAnonymous = 0 'keine Authentifizierung Const cdoBasic = 1 'Klartext Authentifizierung Const cdoNTLM = 2 'NTLM Set objMessage = CreateObject("CDO.Message") objMessage.Subject = "Example CDO Message" objMessage.From = """DeinNmae"" <ww@yy.com>" objMessage.To = "dietmar@harb.at" objMessage.TextBody = "Beispieltext" & vbCRLF & "SMTP Authentifizierung." '== Nachfolgende Sektion dient zum Konfigurieren des Remote SMTP Servers. objMessage.Configuration.Fields.Item _ ("http://schemas.microsoft.com/cdo/configuration/sendusing") = 2 'Name or IP of Remote SMTP Server objMessage.Configuration.Fields.Item _ ("http://schemas.microsoft.com/cdo/configuration/smtpserver") = "domainname" 'Authentifizierungsmethode, NONE, Basic (Base64 encoded), NTLM objMessage.Configuration.Fields.Item _ ("http://schemas.microsoft.com/cdo/configuration/smtpauthenticate") = cdoBasic 'UserID des SMTP Servers, meist die E-Mailadresse objMessage.Configuration.Fields.Item _ ("http://schemas.microsoft.com/cdo/configuration/sendusername") = "ww@yy" 'Passwort des SMTP Servers objMessage.Configuration.Fields.Item _ ("http://schemas.microsoft.com/cdo/configuration/sendpassword") = "+++++" 'Server Port (normalerweise 25) objMessage.Configuration.Fields.Item _ ("http://schemas.microsoft.com/cdo/configuration/smtpserverport") = 25 'SSL verwenden? (False or True) objMessage.Configuration.Fields.Item _ ("http://schemas.microsoft.com/cdo/configuration/smtpusessl") = False 'Connection Timeout in Sekunden objMessage.Configuration.Fields.Item _ ("http://schemas.microsoft.com/cdo/configuration/smtpconnectiontimeout") = 60 objMessage.Configuration.Fields.Update '==End Konfiguration SMTP Server== objMessage.Send %>
aspSmartUpload ist eine Komponente zum Uploaden von Files via Classic ASP und IIS.
C:\Windows\SysWOW64\
regsvr32 C:\Windows\SysWOW64\aspSmartUpload.dll
Beispielcode:
<%
' Variables
' *********
Dim mySmartUpload
Dim intCount
' Object creation
' ***************
Set mySmartUpload = Server.CreateObject("aspSmartUpload.SmartUpload")
mySmartUpload.TotalMaxFileSize = 8388608
mySmartUpload.MaxFileSize = 2097152
mySmartUpload.AllowedFilesList = "jpg,jpeg,png"
mySmartUpload.DeniedFilesList = "bat,exe,com,asp"
mySmartUpload.DenyPhysicalPath = False
' Upload
' ******
mySmartUpload.Upload
' Save the files with their original names in a virtual path of the web server
' ****************************************************************************
intCount = mySmartUpload.Save("/aspSmartUpload")
' sample with a physical path
' intCount = mySmartUpload.Save("c:\temp\")
' Display the number of files uploaded
' ************************************
Response.Write(intCount & " file(s) uploaded.")
%>
aspsmartupload_v3_3
aspsmartupload_samples
M=F6chte man auf Browser Seite die IP Adresse des Cl=
ients auslesen kann das wie folgt bewerkstelligt werden.
Javascript
<script type=3D"application/javascript">
function
getIP(json)
{
document.write=
("My
public IP address is: ", json.ip);
}
</script>
<script type=3D"application/javascript"
src=3D"https://api.ipify.org?format=3Djsonp&callback=3Dg=
etIP"></script&=
gt;
JQuery
C#
VB.net
Wenn die Domain noch nicht über den neuen Server erreichbar ist, kann die hochgeladene Website trotzdem schon angesehen und getestet werden.
Dazu gibt es 2 Möglichkeiten:
Änderung der Hosts Datei. So geht es.
<?php
header(„HTTP/1.1 301 Moved Permanently“);
header(„Location: http://www.neuedomain.com/neuerordner/neueseite.htm“);
exit();
?>
<%@ Language=VBScript %>
< %
Response.Status=“301 Moved Permanently“
Response.AddHeader „Location“, „http://www.neuedomain.com/neuerordner/neueseite.asp“
Response.end
%>