Pixel schupser
Habe unsere Web Seiten auf dedicated IP und SSL Zertifikat umgestellt, jetzt klappt unser Fast Secure Contact form nicht mehr beim aufrufen gibt es einen 403 vom Server.... Habe auf den Seiten des Programmierers die Modifikation für Wordpress gefunden aber nichts über html.
Kann mir jemand helfen wie ich das hier:
hier einbinden kann
Vielen Dank für eure Zeit und Hilfe
Frank
Kann mir jemand helfen wie ich das hier:
PHP:
function my_action_url_ssl($form_action_url, $form_id_num) {
##################################
// control which forms you want this on
$all_forms = false; // set to true for process on all forms, or false to use settings below
$forms = array('1','2'); // one or more individual forms
##################################
if ( !in_array($form_id_num, $forms) && $all_forms != true)
return $form_action_url;
// force form action URL to be SSL
$form_action_url = preg_replace( '|http://|', 'https://', $form_action_url );
return $form_action_url;
}
//filter hook for form action URL
add_filter('si_contact_form_action_url', 'my_action_url_ssl', 1, 2);
hier einbinden kann
HTML:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Untitled Document</title>
<script type="text/javascript" src="https://www.underwatermagic.eu/contact-files/contact-form.js"></script>
</head>
<body>
<?php
$contact_form = 1; // set desired form number.
$contact_form_path = '/home/underczq/public_html/contact-files/'; // set path to /contact-files/ with slash on end.
require $contact_form_path . 'contact-form-run.php';
?>
</body>
</html>
Vielen Dank für eure Zeit und Hilfe
Frank