Page 1 of 1

Most Stable Version

Posted: Sat Sep 14, 2019 10:26 pm
by dnlyko
What is the most stable version for Windows?

Re: Most Stable Version

Posted: Sat Sep 14, 2019 10:33 pm
by BaconFries
For what 7, 8,10? You can download the latest build at the following: https://www.wysiwygwebbuilder.com/download.html

Re: Most Stable Version

Posted: Sat Sep 14, 2019 10:44 pm
by dnlyko
For Windows 10

Re: Most Stable Version

Posted: Sun Sep 15, 2019 6:05 am
by Pablo
Version 15.0.7 has currently no known issues.

Re: Most Stable Version

Posted: Mon Sep 16, 2019 3:25 am
by dnlyko
I am using 15.0.7 and when I upload this is what the browser displays...


$(document).ready(function()
{
$(document).on('click','.ThemeableMenu1-navbar-collapse.in',function(e)
{
if ($(e.target).is('a') && ($(e.target).attr('class') != 'dropdown-toggle'))
{
$(this).collapse('hide');
}
});
});

smoothruler.com

Re: Most Stable Version

Posted: Mon Sep 16, 2019 6:14 am
by Pablo
This indicates that the server is not correctly configured.
It uses the JavaScript (index.js) as landing page instead of the HTML page (index.php).

The direct link works correct:
http://smoothruler.com/index.php
However, the server is displaying the wrong file:
http://smoothruler.com/index.js

To solve this either contact your web host to fix this or disable the option 'Generate external JS file' in Tools -> Options -> HTML.

Re: Most Stable Version

Posted: Mon Sep 16, 2019 1:20 pm
by dnlyko
Thanks Pablo, that did fix the problem.

But now when page displays it has this across the top...

"; throw new Exception($error); } $message .= $eol; $message .= "IP Address : "; $message .= $_SERVER['REMOTE_ADDR']; $message .= $eol; foreach ($_POST as $key => $value) { if (!in_array(strtolower($key), $internalfields)) { if (!is_array($value)) { $message .= ucwords(str_replace("_", " ", $key)) . " : " . $value . $eol; } else { $message .= ucwords(str_replace("_", " ", $key)) . " : " . implode(",", $value) . $eol; } } } $body = 'This is a multi-part message in MIME format.'.$eol.$eol; $body .= '--'.$boundary.$eol; $body .= 'Content-Type: text/plain; charset=ISO-8859-1'.$eol; $body .= 'Content-Transfer-Encoding: 8bit'.$eol; $body .= $eol.stripslashes($message).$eol; if (!empty($_FILES)) { foreach ($_FILES as $key => $value) { if ($_FILES[$key]['error'] == 0) { $body .= '--'.$boundary.$eol; $body .= 'Content-Type: '.$_FILES[$key]['type'].'; name='.$_FILES[$key]['name'].$eol; $body .= 'Content-Transfer-Encoding: base64'.$eol; $body .= 'Content-Disposition: attachment; filename='.$_FILES[$key]['name'].$eol; $body .= $eol.chunk_split(base64_encode(file_get_contents($_FILES[$key]['tmp_name']))).$eol; } } } $body .= '--'.$boundary.'--'.$eol; if ($mailto != '') { mail($mailto, $subject, $body, $header); } header('Location: '.$success_url); } catch (Exception $e) { $errorcode = file_get_contents($error_url); $replace = "##error##"; $errorcode = str_replace($replace, $e->getMessage(), $errorcode); echo $errorcode; } exit; } ?>

I suspect it may have something to do with the menu on breakpoint 768 because the menu style is set to transparent but displays a grey background on iPad portrait mode ???

smoothruler.com

Re: Most Stable Version

Posted: Mon Sep 16, 2019 1:28 pm
by BaconFries
The code that is being shown is related to your form. Please ensure the the page extension is set to php to fix.

Re: Most Stable Version

Posted: Mon Sep 16, 2019 2:15 pm
by dnlyko
Thanks, I had uncheck the form in the object manager and changed the page back to html.