ProFocus
Forum Replies Created
-
Forum: Plugins
In reply to: [Add Local Avatar] [Plugin: Add Local Avatar] Broken uploadSo if I just wanted to hardcode the path to my avatar folder, can I do this? How?
Forum: Plugins
In reply to: [Add Local Avatar] [Plugin: Add Local Avatar] Broken uploadIt is broken for certain server configuration like mine http://www.inthesouthsound.com
My server is configured where my domain is a folder relative to /home/site_root/public_html. So it rests at:
/home/site_root/public_html/inthesouthsound
The problem is that when I set the User Uploads path to “/avatars”, the images are uploaded to /home/site_root/public_html/avatars, BUT the plugin is looking for the image at /home/site_root/public_html/inthesouthsound/avatars
So it’s mismatched.
Forum: Fixing WordPress
In reply to: Settings Discussion Screen is missingFrom what I can tell, it’s the Disable Comments plugin when selecting the Everywhere option.
I’m marking it resolved even though it’s not fixed.
Forum: Fixing WordPress
In reply to: Add Transparent SWF to single page onlyHmm, this is more difficult than I thought it would be. On my static page, I create an apDIV in the <Head>, the place the actual swf embed code contained in the apDIV down in the <Body>. Works great.
I was hoping that I could put the apDIV declaration and parameters in the <Head> of the Header.php file of my theme and the actual container with the embed code in the <Body> of the Header.php or the Footer.php. I don’t get any errors, but nothing is working. I look at the page source to make sure that the code is there after updating the php and it is, just like It should be, but the file isn’t loading.
Does this make sense? Any ideas about this approach? I’m okay with basic HTML, but I’m not a web programmer.
Here are the two sections of code I’m using in the working static pages.
Head
<style type="text/css"> #apDiv1 { position: fixed; width: 640px; height: 360px; z-index: 100; left: 0px; bottom: 0px; } </style>Body
<div id="apDiv1"> <object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="640" height="360" id="VBC_Abner_Email_360" align="middle"> <param name="movie" value="http://www.profocusmedia.com/Flash/DemoOverlay/VBC_Abner_Email_360.swf" /> <param name="quality" value="high" /> <param name="bgcolor" value="#666666" /> <param name="play" value="true" /> <param name="loop" value="false" /> <param name="wmode" value="transparent" /> <param name="scale" value="showall" /> <param name="menu" value="true" /> <param name="devicefont" value="false" /> <param name="salign" value="" /> <param name="allowScriptAccess" value="sameDomain" /> <!--[if !IE]>--> <object type="application/x-shockwave-flash" data="VBC_Abner_Email_360.swf" width="640" height="360"> <param name="movie" value="http://www.profocusmedia.com/Flash/DemoOverlay/VBC_Abner_Email_360.swf" /> <param name="quality" value="high" /> <param name="bgcolor" value="#666666" /> <param name="play" value="true" /> <param name="loop" value="false" /> <param name="wmode" value="transparent" /> <param name="scale" value="showall" /> <param name="menu" value="true" /> <param name="devicefont" value="false" /> <param name="salign" value="" /> <param name="allowScriptAccess" value="sameDomain" /> <!--<![endif]--> <a href="http://www.adobe.com/go/getflash"> <img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" /> </a> <!--[if !IE]>--> </object> <!--<![endif]--> </object> </div>Forum: Fixing WordPress
In reply to: Add Transparent SWF to single page onlyThat would solve part of it. Thanks for the help!