why
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
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
- davehappen
-
- Posts: 239
- Joined: Mon Apr 06, 2020 5:20 am
why
Why sometimes do i get this
https://ibb.co/hMSGWQX
when I'm already running the latest version?????
and i'm trying to run a simple form in xampp, i get the success page but no email?????
Can xampp deal with php files or do i need to publish to the net?????
https://1drv.ms/u/s!Ar_qzWsihagxge0jTkD ... g?e=LiR01e
https://ibb.co/hMSGWQX
when I'm already running the latest version?????
and i'm trying to run a simple form in xampp, i get the success page but no email?????
Can xampp deal with php files or do i need to publish to the net?????
https://1drv.ms/u/s!Ar_qzWsihagxge0jTkD ... g?e=LiR01e
Re: why
You may get this message when one or more extensions are missing.
The project you have shared opens without any issues for me.
I cannot help you with the configuration of xampp. This is beyond the scope of this forum.
The project you have shared opens without any issues for me.
I cannot help you with the configuration of xampp. This is beyond the scope of this forum.
- davehappen
-
- Posts: 239
- Joined: Mon Apr 06, 2020 5:20 am
Re: why
many thanks your reply, did the form look correct????
Re: why
Yes, the form looks ok.
But why did you use a form in a layer?
The layer itself can also be a form. Using nested forms is not recommended.
But why did you use a form in a layer?
The layer itself can also be a form. Using nested forms is not recommended.
- davehappen
-
- Posts: 239
- Joined: Mon Apr 06, 2020 5:20 am
Re: why
ok, im still trying to get my head around layers, what you can and cant do with them.
many thanks your reply
many thanks your reply
Re: why
In the [mail function] section of the php.ini file (in C:\xampp\php) did you change:... and i'm trying to run a simple form in xampp, i get the success page but no email?????
;sendmail_path = "C:\xampp\mailtodisk\mailtodisk.exe"
to:
sendmail_path = "C:\xampp\mailtodisk\mailtodisk.exe"
The email output will then be found in C:\xampp\mailoutput
xampp deals with php files and (most of the time) no need to publish to the net.Can xampp deal with php files or do i need to publish to the net?????
Re: why
I never use them!!davehappen wrote: Fri Jul 17, 2020 9:16 am ok, im still trying to get my head around layers, what you can and cant do with them.
many thanks your reply

Re: why
It looks like this:
[mail function]
; For Win32 only.
; http://php.net/smtp
SMTP=localhost
; http://php.net/smtp-port
smtp_port=25
; For Win32 only.
; http://php.net/sendmail-from
;sendmail_from = me@example.com
; For Unix only. You may supply arguments as well (default: "sendmail -t -i").
; http://php.net/sendmail-path
sendmail_path = "C:\xampp\mailtodisk\mailtodisk.exe"
; Force the addition of the specified parameters to be passed as extra parameters
; to the sendmail binary. These parameters will always replace the value of
; the 5th parameter to mail().
;mail.force_extra_parameters =
; Add X-PHP-Originating-Script: that will include uid of the script followed by the filename
mail.add_x_header=Off
; The path to a log file that will log all mail() calls. Log entries include
; the full path of the script, line number, To address and headers.
;mail.log =
; Log mail to syslog (Event Log on Windows).
;mail.log = syslog
[mail function]
; For Win32 only.
; http://php.net/smtp
SMTP=localhost
; http://php.net/smtp-port
smtp_port=25
; For Win32 only.
; http://php.net/sendmail-from
;sendmail_from = me@example.com
; For Unix only. You may supply arguments as well (default: "sendmail -t -i").
; http://php.net/sendmail-path
sendmail_path = "C:\xampp\mailtodisk\mailtodisk.exe"
; Force the addition of the specified parameters to be passed as extra parameters
; to the sendmail binary. These parameters will always replace the value of
; the 5th parameter to mail().
;mail.force_extra_parameters =
; Add X-PHP-Originating-Script: that will include uid of the script followed by the filename
mail.add_x_header=Off
; The path to a log file that will log all mail() calls. Log entries include
; the full path of the script, line number, To address and headers.
;mail.log =
; Log mail to syslog (Event Log on Windows).
;mail.log = syslog
- davehappen
-
- Posts: 239
- Joined: Mon Apr 06, 2020 5:20 am
Re: why
am i looking in the right area
https://ibb.co/5nSS7Vn
https://ibb.co/5nSS7Vn
- davehappen
-
- Posts: 239
- Joined: Mon Apr 06, 2020 5:20 am
- davehappen
-
- Posts: 239
- Joined: Mon Apr 06, 2020 5:20 am
Re: why
found it, do i need the quotes mark
"C:\xampp\mailtodisk\mailtodisk.exe"
and is this correct
[mail function]
; For Win32 only.
; http://php.net/smtp
SMTP = localhost
; http://php.net/smtp-port
smtp_port = 25
; For Win32 only.
; http://php.net/sendmail-from
;sendmail_from = davehappen@hotmail.com
; For Unix only. You may supply arguments as well (default: "sendmail -t -i").
; http://php.net/sendmail-path
;sendmail_path = "C:\xampp\mailtodisk\mailtodisk.exe"
; Force the addition of the specified parameters to be passed as extra parameters
; to the sendmail binary. These parameters will always replace the value of
; the 5th parameter to mail().
;mail.force_extra_parameters =
"C:\xampp\mailtodisk\mailtodisk.exe"
and is this correct
[mail function]
; For Win32 only.
; http://php.net/smtp
SMTP = localhost
; http://php.net/smtp-port
smtp_port = 25
; For Win32 only.
; http://php.net/sendmail-from
;sendmail_from = davehappen@hotmail.com
; For Unix only. You may supply arguments as well (default: "sendmail -t -i").
; http://php.net/sendmail-path
;sendmail_path = "C:\xampp\mailtodisk\mailtodisk.exe"
; Force the addition of the specified parameters to be passed as extra parameters
; to the sendmail binary. These parameters will always replace the value of
; the 5th parameter to mail().
;mail.force_extra_parameters =
- davehappen
-
- Posts: 239
- Joined: Mon Apr 06, 2020 5:20 am
Re: why
WWBman your a star thanks for your patience.



