Wiki iframes problems

A recent thread discussed how to get iframes to work within a wiki
http://discussions.apple.com/thread.jspa?threadID=1234126&start=0&tstart=0
I have followed the advice given there to create a file
/Library/Application Support/Apple/wikiServer/whitelist.plist
containing the plist as printed in the second from last post to the thread.
If I enter a small iframe code_segment into a page it is recognised as such by the parser and appears as text in the page.
If I enter the same code as 'raw html' the iframe appears.
However... on my system is displays two features that I find undesirable.
1) The URL that I put into the src= attribute is treated as relative to the page that is calling it and although I can "../../../" up to the group_listing page of the wiki, I cannot find a way to refer pages on an external site.
Could anyone advise on how to get www.apple.com, for example, to appear in a wiki page?
2) Once the page is created the code is impossible to edit (in the wiki, I can edit the page.html file using BBEdit but that doesn't REALLY count)
When I click on the 'edit pencil' the code does appear momentarily but is then erased - presumably by JS on my own computer.
The previously mentioned thread suggests that others have got iframes to work successfully - please could someone advise what I am doing wrong.
Thanks.

I realise that I posted this question in the wrong category, my apologies.
I have restarted it in Leopard Server ...
http://discussions.apple.com/thread.jspa?threadID=1340048&stqc=true
Please post any answers there.

Similar Messages

  • Iframe problems on Apache Server 3.1.1 Mac OS X 10.9.2

    Apache web server don't show iframes, for example Google Calendar, Facebook, etc... Any Help?, Thanks.

    From https://discussions.apple.com/message/25866041#25866041
    There is a fix to this problem --
    Instead of changing the white list file in /Library/Server/Wiki/Config you have to change the whitelist.plist.default fine in the Server.app bundle (/Applications/Server.app/Contents/ServerRoot/private/etc/collabd/whitelist.pli st.default). I did and all works well, even after restart.
    Hope that helps!
    -Matt
    PS. It seems to work after a reboot too...

  • Flash Album Exporter in iFrame problem. Greybox not working as expected

    Hello all,
    I've searched and I can't find the solution or any info on the problem elsewhere.
    I've used Flash Album Exporter for the grey box effect. This appears perfectly here
    http://web.me.com/james.veitch/BoxReviews.index.html
    However, it's aligned to the left hand side; I can't get it to centre and there's more text I want to put on. So I thought I'd put it in an iFrame. The moment I do that, things go wrong. Here
    http://web.me.com/james.veitch/KeatsinHampstead/Home2.html
    For some reason it won't load the images. What am I doing wrong? Also, is there any way to change the thumbnail images?
    Thanks in advance,
    James.

    James:
    First, I can't get your first link to work. Removing the ".index.html" from the link does get the flash to load and play.
    For some reason that particular flash presentation won't work in an iFrame/HTML snippet. Have you tried using a different FAE theme to see if you can get it to work in the iFrame. I've been able to get several to work in my demo sites: SimpleViewer and Flash Album Exporter and Flash Album Exporter Postcard and AutoViewer Slideshow Themes.
    OT

  • Wiki Access Problem in China!!

    Hey, Guys!
    I am a Chinese student in college in Shanghai. It seems that our government have deployed a way to restrict its people's access to informations outside, specifically political truth. Wiki is such a great free encyclopedia. Unfortunately, Wiki is in their black list. We, the China Mainland residents, couldn't use Wiki normally. Although, we do have access to the secure version, but the images there aren't loaded. If some of you can help me with it?! And by this, I mean, it's there any way to bypass DNS? Cause how the government implanted it is just direct www.wiki.com to a non-existing web address. Some other guys told me that they find a way to successfully bypass DNS on Windows.
    Thank you a zillion!

    I'm sorry for your plight. Unfortunately I don't think you're going to find a solution here.
    Assuming someone told you how to leverage some kind of proxy server to bypass the Great Firewall of China, doing so would likely result in this site getting blocked to people in China, which isn't going to make Apple happy.
    BTW, the problem is likely to be deeper than just DNS since if it were only down to the DNS anyone could tell you that www.wikipedia.org is at 66.230.200.100 and you could enter that into your browser without using DNS at all.

  • Dynamic Popup iFrame Problem

    Hi,
    I'm adding a dynamically created iFrame tag to my main page using javascript to function as a popup page instead of faces-config navigation rules. It dramatically furthers data/page load rendering performance. However, I've got a problem with values I want to pass to my main page since there's no dialog:popup or ReturnListener facility.
    I'm using Jdev 10g.
    Here is the javascript code to fire the iframe in my page:
    <script language="JavaScript">
    function newwindow(address) {
    var w= screen.width;
    var h = screen.height;
    var load = window.open(address,'','scrollbars=yes,menubar=no,height='+h+',width='+w+',left=0,top=0,screenX=0,screenY=0,resizable=yes,toolbar=no,location=no,status=yes');
    function openPopup (popUpUrl,popUpTitle,popUpWith,popUpHeight){
    document.getElementById("mainModalPopBg").style.display = "block";
    document.getElementById("mainModalPopBox").style.display = "block";
    var neww= screen.width;
    var newh = screen.height;
    var boxw= popUpWith;
    var boxh = popUpHeight;
    var boxleft = (neww-boxw)/2;
    var boxtop = (newh-boxh)/2;
    document.getElementById("mainModalPopBox").style.left = boxleft+"px";
    document.getElementById("mainModalPopBox").style.top = 60+"px";
    document.getElementById("modalPopBoxFrameContainer").innerHTML = "<iframe allowTransparency='true' id='popUpFrame' frameborder='0' src='" + popUpUrl + " '> </iframe>";
    document.getElementById("popupTitle").innerHTML = popUpTitle;
    document.getElementById("popUpFrame").style.width = boxw+"px";
    document.getElementById("popUpFrame").style.width = popUpWith+"px";
    document.getElementById("popUpFrame").style.height = popUpHeight+"px";
    document.body.style.overflow = "hidden";
    function closePopUp (){
    document.getElementById("mainModalPopBg").style.display = "none";
    document.getElementById("mainModalPopBox").style.display = "none";
    document.body.style.overflow = "auto";
    </script>
    Finally, the function openPopup is added to 'Onmousedown' javascript event of a commandlink in my main page.
    I would be thankful if you guys could help me out with some handy solutions in my case.

    Hi,
    Thanks for the reply. I suppose I'll encounter a problem accessing data in the popup page which is a row of a table. Could you clarify how I should reference Attribute Values/SelectedRowsData in the destination page with opener reference?
    I'm embedding a html Iframe tag in the main page when clicking on a commandLink. It adds a <div> tag containing an iFrame which fires a .jspx page that renders a viewObject's data as a readOnly table. I merely need to return some attribute values of the corresponding viewObject or SelectedRows of the table. I cannot use traditional returnListener method of my commandLink since the page is opened with javascript using an iframe tag.
    Great thankfully

  • Wiki access problem

    I have an issue accessing the wiki.  When pointing at the root page for the SL Server (https://miniserver.local/) the standard 'Mac OS X Server' page shows up in the browser.  However, when I try to enter any of the Wiki pages (e.g., https://miniserver.local/groups/), I get this error:
    Service unavailable!
    The server is temporarily unable to service your request due to maintenance downtime or capacity problems. Please try again later.
    If you think this is a server error, please contact the webmaster.
    Error 503
    Any ideas what the problem might be?
    Thank you.

    A common cause seems to be a missing wikid directory after a restore.
    sudo mkdir /Library/Logs/wikid
    sudo chown teamsserver:teamsserver /Library/Logs/wikid
    is a common solution. 10.5 version of full solution (works for 10.6)
    http://support.apple.com/kb/TS2915

  • IFrame problem

    Hi,
    I am unable to view files in my local system through Iframe in JSP application when using the OS Win XP, but in Win 2000, the file is getting displayed. But the same is shown when getting the file from some other machines in the network.
    The code for showing the file is shown below. <iFrame id = "idFrame" src = "<%=localFilePath%>" height = "455" width = "100%">
    I am specifying the path of the file in localFilePath variable. Is there any problem in showing Iframe locally in Win XP machines?
    Please help,
    Karan.

    Hi
    I checked that, the path is correct, seems the issue is some thing else.
    Thanking You,
    Karan.

  • Wiki server problem

    hi everyone
    I have a problem on my wiki server.
    When I search by Chinese, it shows ERROR.
    The error message"500: An internal error occurred trying to process your request. Sorry.".
    But it works fine when I search by English.
    How do I fix it?
    THX

    wiki's error log
    2010-09-20 09:00:09+0800 [HTTPChannel,11,127.0.0.1] Exception rendering:
    2010-09-20 09:00:09+0800 [HTTPChannel,11,127.0.0.1] Unhandled Error
    Traceback (most recent call last):
    File "/usr/share/caldavd/lib/python/twisted/internet/defer.py", line 184, in addCallbacks
    self._runCallbacks()
    File "/usr/share/caldavd/lib/python/twisted/internet/defer.py", line 326, in _runCallbacks
    self.result = callback(self.result, *args, **kw)
    File "/usr/share/caldavd/lib/python/twisted/internet/defer.py", line 287, in _continue
    self.unpause()
    File "/usr/share/caldavd/lib/python/twisted/internet/defer.py", line 283, in unpause
    self._runCallbacks()
    --- <exception caught here> ---
    File "/usr/share/caldavd/lib/python/twisted/internet/defer.py", line 326, in _runCallbacks
    self.result = callback(self.result, *args, **kw)
    File "/usr/share/caldavd/lib/python/twisted/web2/server.py", line 320, in <lambda>
    d.addCallback(lambda res, req: res.renderHTTP(req), self)
    File "/usr/share/wikid/lib/python/apple_wlt/SearchServer.py", line 75, in renderHTTP
    querystring = u'?%s' % theRequest.querystring
    exceptions.UnicodeDecodeError: 'ascii' codec can't decode byte 0xe6 in position 4: ordinal not in range(128)
    -------

  • Flash 8 iframe problem

    I've found an error with flash 8 that it didn't happen with
    flash 7. When i want to open an iframe in HTML from a menu created
    in flash 8 it doesn't open in the iframe, it opens in a blank
    window.
    in html ("web.html")
    <iframe id="cuerpo" name="iframename"></iframe>
    in flash 8
    buttonname.onRelease = function() {
    getURL("web.html","iframename");
    };

    Your right, that worked for me..why is that? Does anyone
    know? Why would it not work when its on your local hard drive, and
    then all of a sudden magically work when you upload it to a web
    server?!
    Thanks for the tip CRH-Desgin,
    -Scot

  • Iframe problem :Urgent Please

    Hello Guruz:
    I am stuck in an issue, i have two domain, e.g: domain 1
    & Domain 2. I am calling domain 2 from domain 1 by using IFrame
    in domain 1.
    I am using ASP Classic with SQL Server, and i have applied
    Dreamweaver Login User Server behaviour builtin, and restriction
    level is username,password & security.
    When ever i try to connect using my login page through IFRAME
    in domain 1, it want let me IN. i have designed a customizied error
    page, and its showing me that. When i just delete the dreamweaver
    user restriction extension from that page it get login successfully
    using IFRAME.???????????????//
    Can any body help me out
    please??????????????????????????????????????its kind of urgent
    matter, i am really bitting my nails out?

    Developer/Designer wrote:
    > Can any body help me out
    > please??????????????????????????????????????its kind of
    urgent
    > matter, i am really bitting my nails out?
    Show us the URL, please.
    Pete.
    Peter Connolly
    http://www.kpdirection.com
    Utah

  • Vote Script ( Java Script ) iframe problem

    Ok guy's i'm new with "Javascript", i decide to make vote script for all user's in xtremetop100.com
    So here we go:
    i trying make javascript function that check every 1 sec if iframe url is correct
    So that's mean when i finish voting on that url, the javascript function will notice that iframe url is changed so
    after iframe url is changed ( by voting ), then it will be show me message " Thank u for vote ".
    Here is unploaded script , but it doesn't work: http://crystal-dekaron.zxq.net/
    <script type="text/javascript">
    var sitefr = document.getElementById("inneriframe")
    {if
    (sitefr.contentWindow.location!="http://www.xtremetop100.com/dekaron")
        alert ("Thanks for vote!");
        window.location="http://www.google.com"
        else
        alert ("U didn't vote!");
        window.location="http://www.help.com"
    window.setInterval(check, 1000);
    </script>
    after 60 second's pass, vote will be disabled ( i made that function )
    I tryed that scipt with "inneriframe", and it doesn't work, only shows alert after i load page, but i didn't vote and url didn't change

    Hello Preran, i want a make javascript. Here is following step(s)
    1. Java Script that checking every 1 sec, if iframe url is changed!
    So what is mean's?, I just create a iframe with a following url: http://xtremetop100.com/ but if someone click on any button in this iframe, then it will pm message or something like it.
    But exactly what I wanted to say:
    I got my game server.And I'm advertising it on xtremetop100 game's (site) , so i creating a script that checking if user votefor me. They will rective a coins ( ingame ), but how can
    i know if someone vote for me, simple so the vote page is: http://www.xtremetop100.com/in.php?site=1132341231 ( in iframe ), so i made iframe size to 400 x 300 so other thing's won't be disabear on screen.
    After it, if user click " Vote for Crystal Dekaron " ( my game ), iframe will be redirected to url http://www.xtremetop100.com/dekaron. After it i just asking people how can i make script if iframe url is changed!
    Because i can't inspect source code's on this page so i decide to make javascript that check every 1 sec if user changed a iframe url
    I hope you understand it. I'll add more pictures.
    [xtremetop100.com isn't my website just using iframe to his site to prove if someone vote's for me]

  • Wiki authentication problems

    So, I've installed a clean build, used the workgroup settings, and bound to an AD domain. AD users can authenticate at the login window, so I know it's bound right. the wiki server will not authenticate AD users, period. if I add users as external group members, it doesn't work. if I import the user, it doesn't work. get this every time:
    2007-10-29 17:05:44-0500 [HTTPChannel,21,127.0.0.1] Unhandled Error
    Traceback (most recent call last):
    Failure: twisted.cred.error.UnauthorizedLogin: Bad username or password:
    has anyone else been able to make this work? Am I just slow?

    Not sure whether this will help anyone, but I wanted to post that AD authentication to the Wiki is working for me. I'll try to give a rough sequence of what I did in case it sparks anything.
    1. Clean install with Standard setting.
    2. Configure network, download updates, reboot.
    3. Bind to AD domain; specify a preferred domain server, allow authentication from anywhere in the forest.
    4. Reboot
    5. Test domain logins at command line (su username); successful. No domain or other prefix/suffix required.
    6. Open Server Preferences. Under Web, set relevant settings. Under Workgroups, add new workgroup. Enable relevant services.
    7. In Workgroups, under External Members, click add. Locate the AD group you want to have a wiki. If you don't see the group in the list, try searching for it. Add this group to the Workgroup.
    8. Close Server Preferences, open Server Admin.
    9. Under Web -> Web Services, set relevant settings. Switch over to Sites.
    10. Fortheluvagod, do NOT change the domain name or IP address of the default website. Doing so will break Server Preferences. If you need to create an SSL site, duplicate the default site, add your SSL cert to the duplicate, then erase the "_copy" in the domain name field.
    11. Under Web Services here, enable the services you want, then add the AD group (that's AD, not the OD workgroup you created in step 7). Save and start Web Services.
    That's what I did and it seems to be working for now. There's still some weirdness going on - the AD group I added in step 7 no longer shows up in Server Preferences, but the wiki still accepts AD user authentication. Again, no domain prefix/suffix needed.

  • Wiki Permission Problems

    Hi All
    after the last update the wiki permission stopped working - IE: all users have Admin functions appearing on the page. I checked the Workgroup Manager and it's still set as before "some group members" with just my name on it - I tried several things including recreating users profiles but it just doesn't work - any suggestion is much appreciated
    tx

    problem solved- I had to change setting also in the following area
    1 Open Server Admin and connect to the server.
    2 Click the triangle to the left of the server. The list of services appears.
    3 From the expanded Servers list, select Web.
    4 Click Sites and select the domain
    5 Click Web Services.
    6 In the Services for Groups section, select the Web calendar checkbox and SELECT THE PERMISSIONS
    7 Click Save
    I can set permissions for my wiki from the Directory.app, the WorkGroup Manager and Server Admin, which one overwrites which? it all gets very confusing!!!

  • Odd wiki permissions problem

    Server setup is just OD and Web w/ Wiki (no calendar, mail, etc).
    I've found that our wiki server is very sensitive to the way a user logs in.
    If they login with their shortname (firstlast), everything seems to work fine. If they login with their full name (First Last), they'll get errors when trying to edit some wikis where they (definitely) have permission.
    Additionally, I've found that the User Name at login is case sensitive. "First Last" can login (but still has permission issues mentioned above. "first last" can't login. It's rare that you find a username that's case sensitive anywhere, so was surprised to find this issue here.
    Any thoughts on how to track this down? I can of course tell users to use their shortname for their User Name at login, which is a fine work around, but it would be nice to sort this out to make things easy going forward.
    Thanks

    if i click get info on the "Macintosh HD", i had the users Eveyrone, Wheel, and System.  but my username was not there.
    Those ownerships and permissions were as they should be in Lion - you shouldn't try to change them. The startup drive permissions were deliberately made more restrictive in Lion, such that only the root user can write to the top level.
    In my dual-boot setup, the startup-drive permissions look like this:
    Snow Leopard:
    Lion:
    There were also  number of similar changes to other folders that Apple feels should not be written to by ordinary users.
    From this Developer document:
    http://developer.apple.com/library/mac/releasenotes/MacOSX/WhatsNewInOSX/WhatsNe wInOSX.pdf
    Folder Permissions and Ownership
    A number of folders in the System and Local file system domains now have different ownership and permissions. Specifically:
    ●   Many folders in the System domain that were previously owned by the admin group are now owned by the wheel group.
    ●    Permissions for the root directory (/) are now mode 755 (writable only by root) instead of mode 775 (writable by the admin group).
    ●    Permissions for /Applications/Utilities are now mode 755 (writable only by root) instead of mode 775 (writable by the admin group).
    ●    Permissions for /Library are now mode 755 (writable only by root) instead of mode 775 (writable by the admin group), no longer sticky.
    All subdirectories within /Library now have mode 755 (writable only by root)permissions instead of mode 775 (writable by the admin group) except:
    ● /Library/Caches ● /Library/Fonts ● /Library/Java ● /Library/QuickTimeStreaming ● /Library/Receipts
    ● /Library/Tomcat

  • Wiki problems after Snow Leopard Upgrade

    Hi,
    I upgraded an XServe running 10.5.(whatever the last version was) to Snow Leopard Server using a 10.6.3 retail disc.
    At the end of the install I was given a message saying:
    The following actions failed or were not attempted:
    Setting locale
    Upgrading Services
    To be honest the server seems mostly ok - but I have a few problems with the Wiki and Blogs:
    When I go to http://myserver/groups I get what looks like the old Leopard groups home page - but it looks like its missing a stylesheet somewhere (although there are no errors in the web debugger)
    When I click a link to view a group I get a javascript popup with the error:
    The versions of the server and UI don’t match. Try clicking Reload; if that doesn't work, please make sure both server components are up-to-date.
    Client: 20100118.dw01
    Server: WikiServerUI-201
    I had hoped that a Software Update would sort it out but I've installed all the available updates and still have the problems above.
    I'm guessing that the wiki/blog problems are related to the failed "Upgrading Services" message, so how do I go about running the upgrade manually?
    Thanks,
    Ash

    Any advice out there? I've even taken bypassed my main Extreme base to plug the ethernet connection directly into the Mac desktop to do software updates that might have been missed by going through the Extreme and wifi. While it did install one security update, it didn't affect the Express units.
    I'm wondering about firmware. I have checked over and over for software updates, and my system assures me that everything is up to date. However, I'm concerned that somehow I'm missing a firmware update. My Airport Utility tells me my Extreme is running on Version 5.7, and on the few times one of the Express units shows up, it shows as running Version 6.#.
    Do I need to manually install a firmware update, and if so, how? I terrified that I will mess up the ONE wifi unit that is functioning.
    Ironically, my Extreme base is the oldest in my batch-both of the Express units are newer than it.

Maybe you are looking for

  • USB 3 not working in windows 7

    I have a late 2013 macbook Air , i7 with 8MB, 512SSD. It has a Windows 7 Partition, the OSX side is fine but in Windows the USB 3 ports are not recognised as such and function as USB 2, they work ok but slow, have checked the USB drivers and most are

  • Smartband and lifelog accuracy

    Hi, I've been using smartband with the lifelog app for a couple of weeks now and i've also made some comparison with my Garmin Vivofit.  Some issues that i've noticed: 1. Smartband constantly record 10-15% less steps than the Vivofit per day. 2. Smar

  • Set Date Validation

    I came across JDev tutorial and found out that there's a validation function provided by JDev for the entity attribute. Currently, i want to set a date validation for a column, i.e, ResolutionDate. The ResolutionDate input by user must be greater tha

  • BB 8530 boot-cycle

    Hi, I just had this new BB 8530 for a few hours from the Verizon store. I love it and it seems have a lot better than my old BB 8330. Got home, I plug the BB 8530 to the computer, using BB Desktop Manager to transfer my contacts and calendar, then it

  • Raw does not open for me ...

    I have a Panasonic Lumix GX7 and CC.  In shooting Raw my pics don't open in Raw.  The camera is supported according to info.  What am I doing/not doing?  Thanks so much. Jim