Sorry, it is not supported.
Also, Webshop Plus for WWB development and support has stopped. It is provided "as is"
Search found 879 matches
- Fri Nov 30, 2018 11:42 pm
- Forum: Shopping Carts
- Topic: Webshop Plus! v.3.2 for WWB8
- Replies: 276
- Views: 438297
- Tue Aug 07, 2018 6:10 am
- Forum: Login Tools Questions
- Topic: User Name and Password questions
- Replies: 6
- Views: 10431
Re: User Name and Password questions
I suggest that you use the built in scripts as they are. As soon as you start modifying / adding code etc you must be prepared to face issues which you can only solve if you have some scripting knowledge. Just to answer your question, yes, there are lots of snippets that allow you to check a passwor...
- Mon Aug 06, 2018 11:21 pm
- Forum: Login Tools Questions
- Topic: User Name and Password questions
- Replies: 6
- Views: 10431
Re: User Name and Password questions
In the past I have used a 5000 users flat file database without any significant delay. However, in that case, my flat file was saving the entire archive as a PHP array (rather than a coma or other symbol separated file), as this was allowing me to have also fast search. Once the username was found i...
- Mon Jun 25, 2018 4:37 am
- Forum: Shopping Carts
- Topic: Webshop Plus! v.3.2 for WWB8
- Replies: 276
- Views: 438297
Re: Webshop Plus! v.3.2 for WWB8
You most probably have removed something else too, or something less. You must ONLY delete the (ENTIRE) line echo "DBTS Username string length =".strlen($dbts_username)."<br>"; Alternativelly, use the code as it were, adding // infront of that line: //echo "DBTS Username string length =".strlen($dbt...
- Sun Jun 24, 2018 8:51 pm
- Forum: Shopping Carts
- Topic: Webshop Plus! v.3.2 for WWB8
- Replies: 276
- Views: 438297
Re: Webshop Plus! v.3.2 for WWB8
Please remove the line
echo "DBTS Username string length =".strlen($dbts_username)."<br>";
from the file code.
echo "DBTS Username string length =".strlen($dbts_username)."<br>";
from the file code.
- Sun Jun 24, 2018 7:44 pm
- Forum: Shopping Carts
- Topic: Webshop Plus! v.3.2 for WWB8
- Replies: 276
- Views: 438297
Re: Webshop Plus! v.3.2 for WWB8
I don't think that this issue has something to do with the SSL.
I'd rather say that you have a code issue, as this is diagnostic message which should not appear.
Please open in Notepad the file "set_pass.php" and post the code in here so I can check it and advise.
I'd rather say that you have a code issue, as this is diagnostic message which should not appear.
Please open in Notepad the file "set_pass.php" and post the code in here so I can check it and advise.
- Sun Apr 29, 2018 8:33 pm
- Forum: Forms
- Topic: php form processor for wysiwyg version 12.5.1
- Replies: 7
- Views: 21905
Re: php form processor for wysiwyg version 12.5.1
Did you set the page to be .php instead of .html ?
- Sat Apr 07, 2018 5:05 am
- Forum: Share self-made extensions with other users of WYSIWYG Web Builder
- Topic: ***UPDATED*** DB Technosystems Form Processor 02/09/2011
- Replies: 764
- Views: 674096
Re: ***UPDATED*** DB Technosystems Form Processor 02/09/2011
I have not tried it but, knowing how the script structure is, I think there should be no issues. It will simply work independently from the DBTS Form Processor.
- Fri Mar 09, 2018 8:01 pm
- Forum: Login Tools Questions
- Topic: How to protect a download ?
- Replies: 40
- Views: 149227
Re: How to protect a download ?
They are correct in saying that they use the /tmp directory and SHOULD work fine.
However, not always this is true.
Please test as I suggested and see if you can stay logged in a protected page (without the script), just to make sure that sessions work ok.
However, not always this is true.
Please test as I suggested and see if you can stay logged in a protected page (without the script), just to make sure that sessions work ok.
- Tue Mar 06, 2018 10:46 pm
- Forum: Login Tools Questions
- Topic: How to protect a download ?
- Replies: 40
- Views: 149227
Re: How to protect a download ?
Most probably it is a server issue with the "session_save_path". Often hosting companies make PHP updates and they change the default settings. To verify if this is the case, try loging in and visiting a protected page (which does NOT contain the script). If you can't visit that either, most probabl...
- Fri Feb 23, 2018 5:44 am
- Forum: Forms
- Topic: DBTS form processor on WWB 12.4.0
- Replies: 2
- Views: 1868
Re: DBTS form processor on WWB 12.4.0
1. Have you set the "Functioning Mode" property to be "to be "Working Mode" ?
2. Actually it is section "N. CSV Data Storage".
2. Actually it is section "N. CSV Data Storage".
- Thu Feb 01, 2018 8:46 pm
- Forum: Forms
- Topic: Forms queery
- Replies: 4
- Views: 2113
Re: Forms queery
To receive a form like format, you need to use a processor that can send HTML template based emails.
Have a look at viewtopic.php?f=42&t=20732&hilit=dbts+form+processor
Have a look at viewtopic.php?f=42&t=20732&hilit=dbts+form+processor
- Tue Jan 23, 2018 3:26 pm
- Forum: Forms
- Topic: Using WB 12.3.1 Form and PHP processor
- Replies: 9
- Views: 2676
Re: Using WB 12.3.1 Form and PHP processor
You will have to create the necessary code yourself, create a .php file and save it on the server. Then you will need to "call" it through the "Custom processing" section of the DBTS Form Processor properties with a simple
include(filename.php);
command.
include(filename.php);
command.
- Mon Jan 22, 2018 8:22 pm
- Forum: Forms
- Topic: Using WB 12.3.1 Form and PHP processor
- Replies: 9
- Views: 2676
Re: Using WB 12.3.1 Form and PHP processor
No, you need to create custom code to perform the operations I described and then include it in the DBTS Form Processor.
- Mon Jan 22, 2018 7:46 pm
- Forum: Forms
- Topic: Form CSV files
- Replies: 19
- Views: 5816
Re: Form CSV files
Yes, the CSV file stores the data submitted from ALL submissions (unless you do what I suggested above). Yes, you can compress the file on the server (using PHP) but NO, there is no way to password protect the zipped file before emailing it. This would require an executable on the server which is no...