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

Username
  

Password
  





Search Forums

(Advanced Search)

Forum Statistics
» Members: 27
» Latest member: MercyRole
» Forum threads: 27
» Forum posts: 44

Full Statistics

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

Latest Threads
Latest version of Chrome ...
Forum: Project Seven
Last Post: bizpat (Patrice)
02-09-2025, 07:43 PM
» Replies: 1
» Views: 122
A new server threat: AI b...
Forum: General coding information
Last Post: Mags
01-29-2025, 11:56 AM
» Replies: 1
» Views: 517
Extension Manager
Forum: Project Seven
Last Post: bizpat (Patrice)
01-21-2025, 11:38 PM
» Replies: 4
» Views: 325
P7 IGM Image Gallery Magi...
Forum: Project Seven
Last Post: bizpat (Patrice)
01-17-2025, 09:38 PM
» Replies: 3
» Views: 247
Availability
Forum: General coding information
Last Post: bizpat (Patrice)
01-09-2025, 10:35 PM
» Replies: 1
» Views: 196
To link to Omni Panel and...
Forum: Project Seven
Last Post: bizpat (Patrice)
01-04-2025, 06:57 PM
» Replies: 0
» Views: 87
FX Zoom Fix
Forum: Project Seven
Last Post: bizpat (Patrice)
01-04-2025, 06:51 PM
» Replies: 0
» Views: 90
Close panels on OMNI
Forum: Project Seven
Last Post: bizpat (Patrice)
01-04-2025, 06:48 PM
» Replies: 0
» Views: 83
Centering P7 Menus
Forum: Project Seven
Last Post: bizpat (Patrice)
01-04-2025, 06:46 PM
» Replies: 0
» Views: 79
Set Height of Slide Out P...
Forum: Project Seven
Last Post: I-CRE8
01-02-2025, 03:29 PM
» Replies: 0
» Views: 95

 
  Change LBM Column Order On A Mobile Device
Posted by: I-CRE8 - 01-02-2025, 03:25 PM - Forum: Project Seven - No Replies

The easiest way to change the order of the LBM floated layout is to change the layout to CSS Grid for the mobile presentation. Then you can easily change the rendered order of any of the columns.

Add this style rule to the end of your exception style sheet:

@media only screen and (min-width: 0px) and (max-width: 700px) {
.lbm-col-wrapper {
display: grid !important;
}
.lbm-column:nth-child(1) {order: 2;}
.lbm-column:nth-child(2) {order: 1;}
.lbm-column:nth-child(3) {order: 3;}
}

This switches the layout to CSS Grid spec and sets the different order.

Print this item

  P7 - links to help files
Posted by: bizpat (Patrice) - 12-23-2024, 08:37 PM - Forum: Project Seven - Replies (1)

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 - Replies (1)

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