<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/">
	<channel>
		<title><![CDATA[WA Forums - Portal]]></title>
		<link>https://webassist-pro.com/WAforum/</link>
		<description><![CDATA[WA Forums - https://webassist-pro.com/WAforum]]></description>
		<pubDate>Wed, 13 May 2026 13:01:43 +0000</pubDate>
		<generator>MyBB</generator>
		<item>
			<title><![CDATA[Reply to Bill Hobbs re PHP 8.2 Upgrade]]></title>
			<link>https://webassist-pro.com/WAforum/showthread.php?tid=38</link>
			<pubDate>Mon, 22 Sep 2025 09:34:08 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://webassist-pro.com/WAforum/member.php?action=profile&uid=3">Mags</a>]]></dc:creator>
			<guid isPermaLink="false">https://webassist-pro.com/WAforum/showthread.php?tid=38</guid>
			<description><![CDATA[Hi Bill, I was unable to post a reply on the WA Forum, so until that's fixed I hope you see this!<br />
<br />
The error:<br />
<br />
Fatal error: Uncaught Error: Call to undefined function mysqli_init()<br />
<br />
means that PHP can't find the mysqli_init() function, which only exists if the MySQLi extension is installed and enabled in your PHP environment.<br />
<br />
Check if the MySQLi extension is installed - download the attached phpinfo.php file and upload it to your server. Access the page in the browser, then search the page for "mysqli".<br />
<br />
If you don’t see it, the extension is not installed or not enabled.<br />
<br />
You may need to ask your server supplier to enable it, or let me know if you need help. Once activated, check the phpinfo page again.<br />
<br />
You should remove the phpinfo.php file once you've finished with it for security purposes.<br />
<br />
<!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://webassist-pro.com/WAforum/images/attachtypes/php.png" title="PHP File" border="0" alt=".php" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=6" target="_blank" title="">phpinfo.php</a> (Size: 22 bytes / Downloads: 0)
<!-- end: postbit_attachments_attachment -->]]></description>
			<content:encoded><![CDATA[Hi Bill, I was unable to post a reply on the WA Forum, so until that's fixed I hope you see this!<br />
<br />
The error:<br />
<br />
Fatal error: Uncaught Error: Call to undefined function mysqli_init()<br />
<br />
means that PHP can't find the mysqli_init() function, which only exists if the MySQLi extension is installed and enabled in your PHP environment.<br />
<br />
Check if the MySQLi extension is installed - download the attached phpinfo.php file and upload it to your server. Access the page in the browser, then search the page for "mysqli".<br />
<br />
If you don’t see it, the extension is not installed or not enabled.<br />
<br />
You may need to ask your server supplier to enable it, or let me know if you need help. Once activated, check the phpinfo page again.<br />
<br />
You should remove the phpinfo.php file once you've finished with it for security purposes.<br />
<br />
<!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://webassist-pro.com/WAforum/images/attachtypes/php.png" title="PHP File" border="0" alt=".php" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=6" target="_blank" title="">phpinfo.php</a> (Size: 22 bytes / Downloads: 0)
<!-- end: postbit_attachments_attachment -->]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[not seeing database error]]></title>
			<link>https://webassist-pro.com/WAforum/showthread.php?tid=37</link>
			<pubDate>Tue, 26 Aug 2025 17:18:26 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://webassist-pro.com/WAforum/member.php?action=profile&uid=1">bizpat (Patrice)</a>]]></dc:creator>
			<guid isPermaLink="false">https://webassist-pro.com/WAforum/showthread.php?tid=37</guid>
			<description><![CDATA[I found a solution when setting up a site and WA can't see the tables; this was php chat engineer suggestion.<br />
<br />
My server was set to 8.1. Chat says WA was written for 7.4. I reset this domain to 7.4, made the connection file, then changed domain back to 8.1]]></description>
			<content:encoded><![CDATA[I found a solution when setting up a site and WA can't see the tables; this was php chat engineer suggestion.<br />
<br />
My server was set to 8.1. Chat says WA was written for 7.4. I reset this domain to 7.4, made the connection file, then changed domain back to 8.1]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Latest version of Chrome throwing errors for PVii js files]]></title>
			<link>https://webassist-pro.com/WAforum/showthread.php?tid=31</link>
			<pubDate>Fri, 07 Feb 2025 15:33:21 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://webassist-pro.com/WAforum/member.php?action=profile&uid=8">David Buchholz</a>]]></dc:creator>
			<guid isPermaLink="false">https://webassist-pro.com/WAforum/showthread.php?tid=31</guid>
			<description><![CDATA[The latest version of Chrome has deprecated the unload event, see <a href="https://developer.chrome.com/docs/web-platform/deprecating-unload" target="_blank" rel="noopener" class="mycode_url">https://developer.chrome.com/docs/web-pl...ing-unload</a>, this is causing issues with a lot of PVII's scripts. In my case on the site I am working on both AMM and MBX are affected.<br />
<br />
The fix is to change the unload event to before unload like so:<br />
<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>function P7_MBXaddLoad(){<br />
var ie = P7_MBXgetIEver();<br />
if (!document.getElementById || (ie &gt; 0 &amp;&amp; ie &lt; 6)) {<br />
return;<br />
}<br />
if (window.addEventListener) {<br />
document.addEventListener("DOMContentLoaded", P7_MBXinit, false);<br />
window.addEventListener("load", P7_MBXinit, false);<br />
//window.addEventListener("unload", P7_MBXbb, false);<br />
window.addEventListener("beforeunload", P7_MBXbb, false); // Changed from unload to beforeunload<br />
document.addEventListener("keydown", P7_MBXkey, false);<br />
window.addEventListener("resize", P7_MBXrsz, false);<br />
} else if (window.attachEvent) {<br />
document.write("&lt;script id=p7ie_mbx defer src=&#92;"//:&#92;"&gt;&lt;&#92;/script&gt;");<br />
document.getElementById("p7ie_mbx").onreadystatechange = function(){<br />
if (this.readyState == "complete") {<br />
if (p7MBX.ctl.length &gt; 0) {<br />
P7_MBXinit();<br />
}<br />
}<br />
};<br />
window.attachEvent("onload", P7_MBXinit);<br />
window.attachEvent("onunload", P7_MBXbb);<br />
document.attachEvent("onkeydown", P7_MBXkey);<br />
window.attachEvent("onresize", P7_MBXrsz);<br />
}<br />
}</code></div></div><br />
<br />
Hope that helps]]></description>
			<content:encoded><![CDATA[The latest version of Chrome has deprecated the unload event, see <a href="https://developer.chrome.com/docs/web-platform/deprecating-unload" target="_blank" rel="noopener" class="mycode_url">https://developer.chrome.com/docs/web-pl...ing-unload</a>, this is causing issues with a lot of PVII's scripts. In my case on the site I am working on both AMM and MBX are affected.<br />
<br />
The fix is to change the unload event to before unload like so:<br />
<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>function P7_MBXaddLoad(){<br />
var ie = P7_MBXgetIEver();<br />
if (!document.getElementById || (ie &gt; 0 &amp;&amp; ie &lt; 6)) {<br />
return;<br />
}<br />
if (window.addEventListener) {<br />
document.addEventListener("DOMContentLoaded", P7_MBXinit, false);<br />
window.addEventListener("load", P7_MBXinit, false);<br />
//window.addEventListener("unload", P7_MBXbb, false);<br />
window.addEventListener("beforeunload", P7_MBXbb, false); // Changed from unload to beforeunload<br />
document.addEventListener("keydown", P7_MBXkey, false);<br />
window.addEventListener("resize", P7_MBXrsz, false);<br />
} else if (window.attachEvent) {<br />
document.write("&lt;script id=p7ie_mbx defer src=&#92;"//:&#92;"&gt;&lt;&#92;/script&gt;");<br />
document.getElementById("p7ie_mbx").onreadystatechange = function(){<br />
if (this.readyState == "complete") {<br />
if (p7MBX.ctl.length &gt; 0) {<br />
P7_MBXinit();<br />
}<br />
}<br />
};<br />
window.attachEvent("onload", P7_MBXinit);<br />
window.attachEvent("onunload", P7_MBXbb);<br />
document.attachEvent("onkeydown", P7_MBXkey);<br />
window.attachEvent("onresize", P7_MBXrsz);<br />
}<br />
}</code></div></div><br />
<br />
Hope that helps]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[A new server threat: AI bots]]></title>
			<link>https://webassist-pro.com/WAforum/showthread.php?tid=30</link>
			<pubDate>Wed, 22 Jan 2025 21:38:50 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://webassist-pro.com/WAforum/member.php?action=profile&uid=1">bizpat (Patrice)</a>]]></dc:creator>
			<guid isPermaLink="false">https://webassist-pro.com/WAforum/showthread.php?tid=30</guid>
			<description><![CDATA[I have my clients on a dedicated server and it was brought to its knees by bots.  Amazon and AI bots.<br />
<br />
Solution was to create a robots.txt file with this inside:<br />
<br />
User-agent: GPTBot<br />
Disallow: /<br />
<br />
User-agent: Amazonbot<br />
Disallow: / <br />
<br />
<br />
HTH someone else.]]></description>
			<content:encoded><![CDATA[I have my clients on a dedicated server and it was brought to its knees by bots.  Amazon and AI bots.<br />
<br />
Solution was to create a robots.txt file with this inside:<br />
<br />
User-agent: GPTBot<br />
Disallow: /<br />
<br />
User-agent: Amazonbot<br />
Disallow: / <br />
<br />
<br />
HTH someone else.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Extension Manager]]></title>
			<link>https://webassist-pro.com/WAforum/showthread.php?tid=29</link>
			<pubDate>Sun, 19 Jan 2025 00:57:33 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://webassist-pro.com/WAforum/member.php?action=profile&uid=1">bizpat (Patrice)</a>]]></dc:creator>
			<guid isPermaLink="false">https://webassist-pro.com/WAforum/showthread.php?tid=29</guid>
			<description><![CDATA[A missing post on WA forum:<br />
<br />
I encountered this a few weeks ago with a non-WA extension (P7). I received this information. <br />
<br />
Gerry wrote:<br />
<br />
The latest Adobe Creative Cloud update has introduced a file corruption issue in the Dreamweaver menus.xml and insertbar.xml files. This will cause extensions to not show in the Dreamweaver Insert menu and the Insert Panel. Hopefully Adobe will fix this soon.<br />
<br />
You have a corruption in the underlying Dreamweaver files that now needs to be fixed.<br />
<br />
1. Do NOT use the Anastasiy’s Extension Manager!<br />
<br />
2. ONLY use the DMXzone Extension Manager.<br />
<br />
3. Follow the instructions on the page link I sent. The Dreamweaver configuration folder is corrupt and needs to be replaced with a default configuration. The instructions here are very important, follow each step:<br />
<br />
<a href="https://www.projectseven.com/products/ex-man/info.htm#cc-issue" target="_blank" rel="noopener" class="mycode_url">https://www.projectseven.com/products/ex...m#cc-issue</a>  (this is no longer an active link)<br />
<br />
<br />
First, be sure that you have re-started Dreamweaver after you renamed the configuration folder. Then shut Dreamweaver down.<br />
<br />
In the DMXzone Extension Manager, if your extensions are listed as installed then you must first un-install each. Just click the X to the right of each extension. This will clear the extension database. Now you can install each one, one at a time.<br />
<br />
Be sure that Dreamweaver is shut down during this operation.<br />
<br />
~~HTH~~~<br />
<br />
more notes<br />
<br />
The missing link says to first shut down DW. Rename the config folder. Restart DW. Shut down DW. UNINSTALL all ext., then reinstall all extensions. Then restart DW.]]></description>
			<content:encoded><![CDATA[A missing post on WA forum:<br />
<br />
I encountered this a few weeks ago with a non-WA extension (P7). I received this information. <br />
<br />
Gerry wrote:<br />
<br />
The latest Adobe Creative Cloud update has introduced a file corruption issue in the Dreamweaver menus.xml and insertbar.xml files. This will cause extensions to not show in the Dreamweaver Insert menu and the Insert Panel. Hopefully Adobe will fix this soon.<br />
<br />
You have a corruption in the underlying Dreamweaver files that now needs to be fixed.<br />
<br />
1. Do NOT use the Anastasiy’s Extension Manager!<br />
<br />
2. ONLY use the DMXzone Extension Manager.<br />
<br />
3. Follow the instructions on the page link I sent. The Dreamweaver configuration folder is corrupt and needs to be replaced with a default configuration. The instructions here are very important, follow each step:<br />
<br />
<a href="https://www.projectseven.com/products/ex-man/info.htm#cc-issue" target="_blank" rel="noopener" class="mycode_url">https://www.projectseven.com/products/ex...m#cc-issue</a>  (this is no longer an active link)<br />
<br />
<br />
First, be sure that you have re-started Dreamweaver after you renamed the configuration folder. Then shut Dreamweaver down.<br />
<br />
In the DMXzone Extension Manager, if your extensions are listed as installed then you must first un-install each. Just click the X to the right of each extension. This will clear the extension database. Now you can install each one, one at a time.<br />
<br />
Be sure that Dreamweaver is shut down during this operation.<br />
<br />
~~HTH~~~<br />
<br />
more notes<br />
<br />
The missing link says to first shut down DW. Rename the config folder. Restart DW. Shut down DW. UNINSTALL all ext., then reinstall all extensions. Then restart DW.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[P7 IGM Image Gallery Magic]]></title>
			<link>https://webassist-pro.com/WAforum/showthread.php?tid=27</link>
			<pubDate>Fri, 10 Jan 2025 17:54:24 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://webassist-pro.com/WAforum/member.php?action=profile&uid=28">LanaB</a>]]></dc:creator>
			<guid isPermaLink="false">https://webassist-pro.com/WAforum/showthread.php?tid=27</guid>
			<description><![CDATA[I have a slideshow using P7 IGM Image Gallery Magic. My client wants to have audio added to it. How do I add audio to IGM or do I use an alternate procedure?<br />
LINK: <a href="http://www.dreambuildersofthefloridakeys.com/gallery-custom-homes-builders-dream.html" target="_blank" rel="noopener" class="mycode_url">http://www.dreambuildersofthefloridakeys...dream.html</a><br />
I appreciate direction!<br />
Thanks,<br />
Lana]]></description>
			<content:encoded><![CDATA[I have a slideshow using P7 IGM Image Gallery Magic. My client wants to have audio added to it. How do I add audio to IGM or do I use an alternate procedure?<br />
LINK: <a href="http://www.dreambuildersofthefloridakeys.com/gallery-custom-homes-builders-dream.html" target="_blank" rel="noopener" class="mycode_url">http://www.dreambuildersofthefloridakeys...dream.html</a><br />
I appreciate direction!<br />
Thanks,<br />
Lana]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[To link to Omni Panel and open it]]></title>
			<link>https://webassist-pro.com/WAforum/showthread.php?tid=26</link>
			<pubDate>Sat, 04 Jan 2025 18:57:31 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://webassist-pro.com/WAforum/member.php?action=profile&uid=1">bizpat (Patrice)</a>]]></dc:creator>
			<guid isPermaLink="false">https://webassist-pro.com/WAforum/showthread.php?tid=26</guid>
			<description><![CDATA[Example: This will open this page with 3rd panel open and scrolled down to the OPM location:  <br />
 <a href="https://www.shorehavenbhi.com/mental-health-programs.php?opm=1_3#p7OPM_1" target="_blank" rel="noopener" class="mycode_url">https://www.shorehavenbhi.com/mental-hea..._3#p7OPM_1</a><br />
<br />
so, after the page name, add<br />
?opm<br />
the panel name (third panel)<br />
1_3#<br />
and the name of the OPM<br />
<br />
another example:<br />
<a href="https://www.shorehavenbhi.com/mental-health-programs.php?opm=1_5#p7OPM_1" target="_blank" rel="noopener" class="mycode_url">https://www.shorehavenbhi.com/mental-hea..._5#p7OPM_1</a><br />
<br />
opens the 5th panel  <br />
<br />
<br />
<br />
(if there were 2 OPMs on the page the second one would be called <br />
OPM_2)]]></description>
			<content:encoded><![CDATA[Example: This will open this page with 3rd panel open and scrolled down to the OPM location:  <br />
 <a href="https://www.shorehavenbhi.com/mental-health-programs.php?opm=1_3#p7OPM_1" target="_blank" rel="noopener" class="mycode_url">https://www.shorehavenbhi.com/mental-hea..._3#p7OPM_1</a><br />
<br />
so, after the page name, add<br />
?opm<br />
the panel name (third panel)<br />
1_3#<br />
and the name of the OPM<br />
<br />
another example:<br />
<a href="https://www.shorehavenbhi.com/mental-health-programs.php?opm=1_5#p7OPM_1" target="_blank" rel="noopener" class="mycode_url">https://www.shorehavenbhi.com/mental-hea..._5#p7OPM_1</a><br />
<br />
opens the 5th panel  <br />
<br />
<br />
<br />
(if there were 2 OPMs on the page the second one would be called <br />
OPM_2)]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[FX Zoom Fix]]></title>
			<link>https://webassist-pro.com/WAforum/showthread.php?tid=25</link>
			<pubDate>Sat, 04 Jan 2025 18:51:32 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://webassist-pro.com/WAforum/member.php?action=profile&uid=1">bizpat (Patrice)</a>]]></dc:creator>
			<guid isPermaLink="false">https://webassist-pro.com/WAforum/showthread.php?tid=25</guid>
			<description><![CDATA[to keep zoomed images on top of others use this<br />
<br />
<br />
/*<br />
****************************<br />
PVII Image Effects Magic<br />
by Project Seven Development<br />
<a href="http://www.projectseven.com" target="_blank" rel="noopener" class="mycode_url">www.projectseven.com</a><br />
CSS Styles<br />
*****************************<br />
*/<br />
<br />
img.p7IFX {<br />
position: relative;<br />
}<br />
img.ifx-on {<br />
z-index: 999;<br />
}]]></description>
			<content:encoded><![CDATA[to keep zoomed images on top of others use this<br />
<br />
<br />
/*<br />
****************************<br />
PVII Image Effects Magic<br />
by Project Seven Development<br />
<a href="http://www.projectseven.com" target="_blank" rel="noopener" class="mycode_url">www.projectseven.com</a><br />
CSS Styles<br />
*****************************<br />
*/<br />
<br />
img.p7IFX {<br />
position: relative;<br />
}<br />
img.ifx-on {<br />
z-index: 999;<br />
}]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Close panels on OMNI]]></title>
			<link>https://webassist-pro.com/WAforum/showthread.php?tid=24</link>
			<pubDate>Sat, 04 Jan 2025 18:48:51 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://webassist-pro.com/WAforum/member.php?action=profile&uid=1">bizpat (Patrice)</a>]]></dc:creator>
			<guid isPermaLink="false">https://webassist-pro.com/WAforum/showthread.php?tid=24</guid>
			<description><![CDATA[Create a button called CLOSE<br />
<br />
Add to core.css<br />
<br />
&lt;!--custom --&gt;<br />
.opm-panel {position:absolute;left:-9000px;top:-9000px;overflow:hidden;visibility:hidden;width:100%;}<br />
.opm-panel-wrapper {position:relative;overflow:hidden;}<br />
.opm-panel-layout {position: relative;width: 100%;height: auto;}<br />
<br />
<br />
and then on the page, depending on which panel will be the close, this is inline<br />
this must be specific to the panels<br />
<br />
example (to have panel 7 closed)<br />
<br />
<br />
<br />
&lt;style type="text/css"&gt;<br />
#p7OPMpn_1_7,<br />
#p7OPMpn_1_7 *<br />
{<br />
padding: 0;<br />
}<br />
#p7OPMpn_1_7 .opm-panel-content {<br />
height: 0px;<br />
}<br />
&lt;/style&gt;]]></description>
			<content:encoded><![CDATA[Create a button called CLOSE<br />
<br />
Add to core.css<br />
<br />
&lt;!--custom --&gt;<br />
.opm-panel {position:absolute;left:-9000px;top:-9000px;overflow:hidden;visibility:hidden;width:100%;}<br />
.opm-panel-wrapper {position:relative;overflow:hidden;}<br />
.opm-panel-layout {position: relative;width: 100%;height: auto;}<br />
<br />
<br />
and then on the page, depending on which panel will be the close, this is inline<br />
this must be specific to the panels<br />
<br />
example (to have panel 7 closed)<br />
<br />
<br />
<br />
&lt;style type="text/css"&gt;<br />
#p7OPMpn_1_7,<br />
#p7OPMpn_1_7 *<br />
{<br />
padding: 0;<br />
}<br />
#p7OPMpn_1_7 .opm-panel-content {<br />
height: 0px;<br />
}<br />
&lt;/style&gt;]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Centering P7 Menus]]></title>
			<link>https://webassist-pro.com/WAforum/showthread.php?tid=23</link>
			<pubDate>Sat, 04 Jan 2025 18:46:02 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://webassist-pro.com/WAforum/member.php?action=profile&uid=1">bizpat (Patrice)</a>]]></dc:creator>
			<guid isPermaLink="false">https://webassist-pro.com/WAforum/showthread.php?tid=23</guid>
			<description><![CDATA[change this:<br />
<br />
p7 centermenu<br />
.p7AMM.amm-responsive li {<br />
text-align: left !important;<br />
display: block;<br />
max-height: 700777px;<br />
}<br />
<br />
to this:<br />
<br />
<br />
<br />
.p7AMM.amm-responsive li {<br />
text-align: center !important;<br />
display: block;<br />
max-height: 700777px;<br />
}]]></description>
			<content:encoded><![CDATA[change this:<br />
<br />
p7 centermenu<br />
.p7AMM.amm-responsive li {<br />
text-align: left !important;<br />
display: block;<br />
max-height: 700777px;<br />
}<br />
<br />
to this:<br />
<br />
<br />
<br />
.p7AMM.amm-responsive li {<br />
text-align: center !important;<br />
display: block;<br />
max-height: 700777px;<br />
}]]></content:encoded>
		</item>
	</channel>
</rss>