Welcome, Guest
You have to register before you can post on our site.

Username
  

Password
  





Search Forums

(Advanced Search)

Forum Statistics
» Members: 11
» Latest member: Webalert
» Forum threads: 16
» Forum posts: 22

Full Statistics

Online Users
There are currently 10 online users.
» 0 Member(s) | 9 Guest(s)
Google

Latest Threads
P7 - links to help files
Forum: Project Seven
Last Post: bizpat (Patrice)
6 hours ago
» Replies: 0
» Views: 4
Availability
Forum: General coding information
Last Post: I-CRE8
12-05-2024, 04:24 PM
» Replies: 0
» Views: 27
helperphp.php is not comp...
Forum: SecurityAssist
Last Post: sl-webmaster
11-08-2024, 03:57 PM
» Replies: 3
» Views: 291
HTML text from database n...
Forum: PHP/MySQLi General
Last Post: bizpat (Patrice)
09-02-2024, 09:50 PM
» Replies: 3
» Views: 454
DW Password Cheat
Forum: General coding information
Last Post: bizpat (Patrice)
08-29-2024, 08:41 PM
» Replies: 0
» Views: 128
PowerCMS - newer version
Forum: PowerCMS
Last Post: Mags
08-29-2024, 03:57 PM
» Replies: 0
» Views: 119
Emails stopped sending fr...
Forum: Universal Email
Last Post: Mags
08-29-2024, 03:44 PM
» Replies: 0
» Views: 117
Show password on Login pa...
Forum: General coding information
Last Post: Mags
08-29-2024, 03:31 PM
» Replies: 0
» Views: 131
"An unidentified error ha...
Forum: PHP/MySQLi General
Last Post: Mags
08-29-2024, 02:57 PM
» Replies: 0
» Views: 129
Updated to PHP 8.0 and I ...
Forum: PHP/MySQLi General
Last Post: Mags
08-29-2024, 02:52 PM
» Replies: 0
» Views: 136

 
  P7 - links to help files
Posted by: bizpat (Patrice) - 6 hours ago - Forum: Project Seven - No Replies

As of Nov 2024, Gerry from P7 hasn't been answering emails and p7 site is down. This new thread is for anyone who uses P7 and seeks peer-to-peer help.

Courtesy of denniscallan on Adobe Community forum

https://community.adobe.com/t5/dreamweav.../2#M229689

https://onedrive.live.com/?authkey=%21AL...2AC9BBAD5B

Print this item

  Availability
Posted by: I-CRE8 - 12-05-2024, 04:24 PM - Forum: General coding information - No Replies

Please delete if not allowed but the contract I have been working on for the last 6 years is finishing in January so I will be available for new projects for the first time in a while if anyone needs help with WebAssist or any other PHP based projects.

Thanks,

Dave Buchholz.
I-CRE8

Print this item

  DW Password Cheat
Posted by: bizpat (Patrice) - 08-29-2024, 08:41 PM - Forum: General coding information - No Replies

If you've lost your site user password, here's a cheat to use.

https://webassist.com/forums/posts.php?id=47028

Summary: To find the password within the ste file

open ste file, find password ## then enter it on this page

https://apptools.com/password.php

It is a long number ... enter the number on this site and the password is converted for your use.

Print this item

  PowerCMS - newer version
Posted by: Mags - 08-29-2024, 03:57 PM - Forum: PowerCMS - No Replies

https://webassist.com/PowerCMS.zip is the link for the latest version of Power CMS, prior to Ray's sad passing. This works on PHP8.3 - sometimes you might run into an issue, but ask on this forum. WebAssist extended community is trying to help out where we can!

Print this item

  Emails stopped sending from contact form?
Posted by: Mags - 08-29-2024, 03:44 PM - Forum: Universal Email - No Replies

If you have a contact form on a website that has stopped sending emails, check that you're not sending the email from the person completing the form using the dynamic binding, for example

PHP Code:
<<?php echo((isset($_POST["Email"]))?$_POST["Email"]:""?>

Most servers nowadays will not deliver mail if it comes from a domain not hosted on the website's server to prevent spoofing. 

I generally set the "From" field to, for example, noreply@mydomain.com and then bind the email address of the actual sender within the body of the email. It just means that when the email arrives you can't hit Reply, you need to copy & paste the sender's email address into the To field manually. As long as the email comes from an address that uses the domain of the hosted website (it doesn't even have to be a functioning email address), there shouldn't be any issues.

Print this item

  Show password on Login pages
Posted by: Mags - 08-29-2024, 03:31 PM - Forum: General coding information - No Replies

If you want to let users show/hide the password instead of the dots in the password field, you can do it like this:

<input id="password" name="password" type="password" value="" confirm="" required="true">

<input id="showpassword" type="checkbox" onclick="showPW()">

<label for="showpassword">Show password</label>

<script>
function showPW() {
var x = document.getElementById("password");
if (x.type === "password") {
x.type = "text";
} else {
x.type = "password";
}
}
</script>

This works by displaying the login info that the user has stored in their browser, it can't pull info from the database.

Print this item

  helperphp.php is not compatible with php 8.1 and 8.2
Posted by: Mags - 08-29-2024, 03:08 PM - Forum: SecurityAssist - Replies (3)

Information and updated file is available here: https://www.webassist.com/forums/posts.php?id=47184

Print this item

  "An unidentified error has occurred" when attempting to connect db using Dynamic MySq
Posted by: Mags - 08-29-2024, 02:57 PM - Forum: PHP/MySQLi General - No Replies

A thread on this error is available here: https://www.webassist.com/forums/posts.php?id=47226

Print this item

  Updated to PHP 8.0 and I receive this error: Fatal error: Array and string offset acc
Posted by: Mags - 08-29-2024, 02:52 PM - Forum: PHP/MySQLi General - No Replies

Useful thread on this error is here: https://www.webassist.com/forums/posts.php?id=47035

Print this item

  Email scripts not sending emails
Posted by: Mags - 08-29-2024, 02:50 PM - Forum: Universal Email - No Replies

Things to check are detailed in this thread - there's every chance it isn't script-related!

Print this item