Most Stable Version

All WYSIWYG Web Builder support issues that are not covered in the forums below.
Forum rules
IMPORTANT NOTE!!

DO YOU HAVE A QUESTION OR PROBLEM AND WANT QUICK HELP?
THEN PLEASE SHARE A "DEMO" PROJECT.



PLEASE READ THE FORUM RULES BEFORE YOU POST:
http://www.wysiwygwebbuilder.com/forum/viewtopic.php?f=12&t=1901

MUST READ:
http://www.wysiwygwebbuilder.com/getting_started.html
WYSIWYG Web Builder FAQ
Post Reply
User avatar
dnlyko
 
 
Posts: 134
Joined: Tue Mar 05, 2019 12:55 pm
Location: Toronto - Canada

Most Stable Version

Post by dnlyko »

What is the most stable version for Windows?
User avatar
BaconFries
 
 
Posts: 5324
Joined: Thu Aug 16, 2007 7:32 pm

Re: Most Stable Version

Post by BaconFries »

For what 7, 8,10? You can download the latest build at the following: https://www.wysiwygwebbuilder.com/download.html
User avatar
dnlyko
 
 
Posts: 134
Joined: Tue Mar 05, 2019 12:55 pm
Location: Toronto - Canada

Re: Most Stable Version

Post by dnlyko »

For Windows 10
User avatar
Pablo
 
Posts: 21569
Joined: Sun Mar 28, 2004 12:00 pm
Location: Europe
Contact:

Re: Most Stable Version

Post by Pablo »

Version 15.0.7 has currently no known issues.
User avatar
dnlyko
 
 
Posts: 134
Joined: Tue Mar 05, 2019 12:55 pm
Location: Toronto - Canada

Re: Most Stable Version

Post 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
User avatar
Pablo
 
Posts: 21569
Joined: Sun Mar 28, 2004 12:00 pm
Location: Europe
Contact:

Re: Most Stable Version

Post 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.
User avatar
dnlyko
 
 
Posts: 134
Joined: Tue Mar 05, 2019 12:55 pm
Location: Toronto - Canada

Re: Most Stable Version

Post 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
User avatar
BaconFries
 
 
Posts: 5324
Joined: Thu Aug 16, 2007 7:32 pm

Re: Most Stable Version

Post 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.
User avatar
dnlyko
 
 
Posts: 134
Joined: Tue Mar 05, 2019 12:55 pm
Location: Toronto - Canada

Re: Most Stable Version

Post by dnlyko »

Thanks, I had uncheck the form in the object manager and changed the page back to html.
Post Reply