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

Username
  

Password
  





Search Forums

(Advanced Search)

Forum Statistics
» Members: 21
» Latest member: Seernagoggito
» Forum threads: 26
» Forum posts: 41

Full Statistics

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

Latest Threads
A new server threat: AI b...
Forum: General coding information
Last Post: bizpat (Patrice)
01-22-2025, 09:38 PM
» Replies: 0
» Views: 3
Extension Manager
Forum: Project Seven
Last Post: bizpat (Patrice)
01-21-2025, 11:38 PM
» Replies: 4
» Views: 96
P7 IGM Image Gallery Magi...
Forum: Project Seven
Last Post: bizpat (Patrice)
01-17-2025, 09:38 PM
» Replies: 3
» Views: 105
Availability
Forum: General coding information
Last Post: bizpat (Patrice)
01-09-2025, 10:35 PM
» Replies: 1
» Views: 104
To link to Omni Panel and...
Forum: Project Seven
Last Post: bizpat (Patrice)
01-04-2025, 06:57 PM
» Replies: 0
» Views: 42
FX Zoom Fix
Forum: Project Seven
Last Post: bizpat (Patrice)
01-04-2025, 06:51 PM
» Replies: 0
» Views: 43
Close panels on OMNI
Forum: Project Seven
Last Post: bizpat (Patrice)
01-04-2025, 06:48 PM
» Replies: 0
» Views: 41
Centering P7 Menus
Forum: Project Seven
Last Post: bizpat (Patrice)
01-04-2025, 06:46 PM
» Replies: 0
» Views: 40
Set Height of Slide Out P...
Forum: Project Seven
Last Post: I-CRE8
01-02-2025, 03:29 PM
» Replies: 0
» Views: 45
Flex Grid Magic (FGM) Col...
Forum: Project Seven
Last Post: I-CRE8
01-02-2025, 03:27 PM
» Replies: 0
» Views: 48

 
  A new server threat: AI bots
Posted by: bizpat (Patrice) - 01-22-2025, 09:38 PM - Forum: General coding information - No Replies

I have my clients on a dedicated server and it was brought to its knees by bots.  Amazon and AI bots.

Solution was to create a robots.txt file with this inside:

User-agent: GPTBot
Disallow: /

User-agent: Amazonbot
Disallow: / 


HTH someone else.

Print this item

  Extension Manager
Posted by: bizpat (Patrice) - 01-19-2025, 12:57 AM - Forum: Project Seven - Replies (4)

A missing post on WA forum:

I encountered this a few weeks ago with a non-WA extension (P7). I received this information.

Gerry wrote:

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.

You have a corruption in the underlying Dreamweaver files that now needs to be fixed.

1. Do NOT use the Anastasiy’s Extension Manager!

2. ONLY use the DMXzone Extension Manager.

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:

https://www.projectseven.com/products/ex...m#cc-issue  (this is no longer an active link)


First, be sure that you have re-started Dreamweaver after you renamed the configuration folder. Then shut Dreamweaver down.

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.

Be sure that Dreamweaver is shut down during this operation.

~~HTH~~~

more notes

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.

Print this item

  P7 IGM Image Gallery Magic
Posted by: LanaB - 01-10-2025, 05:54 PM - Forum: Project Seven - Replies (3)

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?
LINK: http://www.dreambuildersofthefloridakeys...dream.html
I appreciate direction!
Thanks,
Lana

Print this item

  To link to Omni Panel and open it
Posted by: bizpat (Patrice) - 01-04-2025, 06:57 PM - Forum: Project Seven - No Replies

Example: This will open this page with 3rd panel open and scrolled down to the OPM location:  
https://www.shorehavenbhi.com/mental-hea..._3#p7OPM_1

so, after the page name, add
?opm
the panel name (third panel)
1_3#
and the name of the OPM

another example:
https://www.shorehavenbhi.com/mental-hea..._5#p7OPM_1

opens the 5th panel  



(if there were 2 OPMs on the page the second one would be called 
OPM_2)

Print this item

  FX Zoom Fix
Posted by: bizpat (Patrice) - 01-04-2025, 06:51 PM - Forum: Project Seven - No Replies

to keep zoomed images on top of others use this


/*
****************************
PVII Image Effects Magic
by Project Seven Development
www.projectseven.com
CSS Styles
*****************************
*/

img.p7IFX {
position: relative;
}
img.ifx-on {
z-index: 999;
}

Print this item

  Close panels on OMNI
Posted by: bizpat (Patrice) - 01-04-2025, 06:48 PM - Forum: Project Seven - No Replies

Create a button called CLOSE

Add to core.css

<!--custom -->
.opm-panel {position:absolute;left:-9000px;top:-9000px;overflow:hidden;visibility:hidden;width:100%;}
.opm-panel-wrapper {position:relative;overflow:hidden;}
.opm-panel-layout {position: relative;width: 100%;height: auto;}


and then on the page, depending on which panel will be the close, this is inline
this must be specific to the panels

example (to have panel 7 closed)



<style type="text/css">
#p7OPMpn_1_7,
#p7OPMpn_1_7 *
{
padding: 0;
}
#p7OPMpn_1_7 .opm-panel-content {
height: 0px;
}
</style>

Print this item

  Centering P7 Menus
Posted by: bizpat (Patrice) - 01-04-2025, 06:46 PM - Forum: Project Seven - No Replies

change this:

p7 centermenu
.p7AMM.amm-responsive li {
text-align: left !important;
display: block;
max-height: 700777px;
}

to this:



.p7AMM.amm-responsive li {
text-align: center !important;
display: block;
max-height: 700777px;
}

Print this item

  Set Height of Slide Out Panel (SOP)
Posted by: I-CRE8 - 01-02-2025, 03:29 PM - Forum: Project Seven - No Replies

The default height of the SOP panel is 100% of the browser window. You can over-ride this by setting a different height that is less than 100%. Add this style rule to the SOP style sheet. It uses the SOP id so that it over-rides the default width:
#p7SOP_1 {
height: 70%;
}
The height of the SOP will now be 70% of the browser window.
You can also add a top position to this rule if you want the (now shortend) SOP to be centered vertically. Just set the top position to 15% (one half of 30%) so the rule now looks like this:
#p7SOP_1 {
height: 70%;
top: 15%;
}

Note that you cannot, and should not, set the height greater than the height of the browser window. This will prevent full access to all of the overflowed content.

Print this item

  Flex Grid Magic (FGM) Column Widths
Posted by: I-CRE8 - 01-02-2025, 03:27 PM - Forum: Project Seven - No Replies

47% = 2 per column max
30% = 3 per column max
22% = 4 per column max
17% = 5 per column max

Print this item

  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