Private posting

Forgive me if this question has been asked and answered. I did do a search and not really that clear in my mind of the answer. I want to publish a web page, but only want it available to those that I invite. Is that possible with Iweb and if so, how do I do it. Thank you in advance.

William:
Yes it's possible but it has to be a whole site that is password protected. Make that one page a site by itself and the link to it from your open site.
You can make it appear that the page is in the open site if you'd like by creating a blank page with the name you'd want for the protected page and add the following code to an HTML snippet in the page:
<script type="text/javascript">
parent.window.location = "URL TO SITE YOU WANT TO REDIRET TO"; </script>
Thanks to Cyclosaurus for the code.
The visitor will be sent immediately to the protected site/page. You can do the same on that site to send them back to the open site.
Or you can just use a text based hyperlink.
OT

Similar Messages

  • New Folder added called private post SL install

    Hello.
    I performed an upgrade install to SL from 10.5.8. Since then everything working fine, but I noticed when I open my HD in finder I now have a folder called Private that's over 4 gigs. Wasn't there before upgrade (double checked this using Time Machine back up I made before upgrade). When I try to remove the folder get dialogue to enter my password. Not sure if anyone else has had this happen and/or has a solution? I've tried to remove it, but then system will not boot.

    Jesse
    Found the solution after a bit of hunting around. First you need to enable the root user. If you're comfortable with Terminal follow this:
    "sudo passwd root"
    Type in current password and Terminal will then prompt for the new root password and for you to confirm it.
    Failing that you can access the Directory Utility in /System/Library/CoreServices
    From menu: Edit>Enable Root User
    Follow the same process of setting the password (make sure it's not "root")
    Then open Terminal and type in:
    "chflags hidden /private"
    where /private is the location and name of the folder. Check the folder is now hidden and then disable root user if you want to in Directory Utility.
    Worked for me and it took 1% of the time to actually do it than it did to find the solution!

  • 6500 a plus

    I have an HP 6500a plus "wireless" printer/scanner.  It no longer connects to my network.  The 6500 can connect via wired or wireless, but neither one is working.  When I try to connect it wirelessly, I get a message that says "you cannot connect wirelessly when connected via ethernet cable", but the ethernet cable is completely unplugged.
    Anybody have any ideas, other than using the 6500 as a paperweight?

    Hi DFWPhantom,
    Don't give up just yet.  Is the message on the printer or the computer?
    There may be a reset that can be done if the problem is that the printer thinks Ethernet cable is plugged in when it is not.  I could send the steps to you through a private post with the agreement that you would not publish the steps.  Let me know if you want to give it a try.
    What is the operating system for your computer including 32 or 64 bit?
    How many wires are connected to the printer and what do they go to?
    Also, remember a click on the Kudos star to the left is a quick "Thanks" for a helpful post.
    Please select the "Accept as Solution" button on the post that best answers your question.
    I appreciate your input ! ___________________________________ _____
    Thank You,
    Rich
    Expert

  • In App Subscription Flash Sale

    If a timed/flash sale is added to in-app purchases and after the sale the original prices are applied in-app ... those who purchased a monthly or annual subscription during the flash sale - would automatically flag and turn  off their auto renewal?  There's no way to do this?  What if we created a NEW in-app purchase for a flash sale? 

    Hi EB66,
    I'll respond in a private post.

  • Help with Magellan Compass please

    I have Magellan compass. Bought it, can't get it to work but am persevering. Can anyone tell me how to get to a place on the map. I know where I want to go. A camp site for instance, I know the location, I can see it, but I do not know the site name or the co-ordinates. I try to mark the position by touch (as with other navigation programmes, and tell the programme I with to navigate to that place), but Magellen gives me no option to do that.
    The manual is worse than useless. Lots of information how to use poi, but what if you don't want to go there? I just want to select a place and navigate to that place.
    Hope someone can help
    Regards
    Ross
    Regards to all (except BB)
    Solved!
    Go to Solution.

    rossjackson01 wrote:
    Thanks John. Cross Hair?  Haven't figured that one out yet. But will do and try as you have suggested. I have tried to use the map for a journey but no go. I think I have figured it out about loading the off-line maps. What an absolute pain is this programme. Not intuative one iota.What level of map do you download to be able to make a trip?
    If you have good knowledge of this programme, can I private post to you with any enquiries. Post me if that is ok. Still ok if you don't post.
    Regards
    Ross
    It's too bad you're having so many problems with this app. I love everything about it. I think your expectation levels are out of line actually. It's NOT a SAT NAV device like a dedicated GPS unit is - keep that in mind. You use a Wi-Fi device right (not LTE) Which means you have to initially have Wi-Fi to download and cache your maps, or else have a smartphone with Wi-Fi connectivity to do things on the fly. Also, you do realize that when BlackBerry 10 starts to ship you will be getting some form of BlackBerry Maps from Tom Tom on the PlayBook right? So if this particular app isn't for you, then wait for a while until the new stuff comes out with the new OS.
    Browse this 11 minute video to get some tips on how to use it: Sample usage - http://www.youtube.com/watch?v=M-9wc_gNLNM
    another sample usage: http://www.youtube.com/watch?v=juAmTer873c&feature=fvwrel
    It's not a how to per say but examples of how people use it. You will not get instruction but you can observe how they're using it.
    This video is how to use Weather Radar on it: http://www.youtube.com/watch?v=CMlqcX9Vjws

  • Proper way to write a Renderer?

    Why does this JTable show up with all three rows showing "Here". I only wanted the first one to. What is the proper way to write a JLabel renderer so that when I update a cell, it won't update the rest of the cells?
    import javax.swing.*;
    import javax.swing.table.DefaultTableModel;
    import javax.swing.table.TableCellRenderer;
    import java.awt.*;
    public class post extends JFrame {
    private class JLabelRenderer extends JLabel implements TableCellRenderer {
    public Component getTableCellRendererComponent(JTable table, Object value,
    boolean isSelected, boolean hasFocus,
    int row, int column) {
    if (value instanceof String) this.setText((String) value);
    return this;
    private post() {
    this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    this.setSize(300, 300);
    final DefaultTableModel model = new DefaultTableModel(3, 1);
    JTable jtable = new JTable(model);
    jtable.getColumnModel().getColumn(0).setCellRenderer(new JLabelRenderer());
    jtable.setRowHeight(20);
    JScrollPane pane = new JScrollPane(jtable);
    this.getContentPane().add(pane);
    this.show();
    // Just update the FIRST cell of the FIRST ROW.
    jtable.setValueAt("Here", 0, 0);
    public static void main(String[] args) {
    post blah = new post();

    Every cell shares the same renderer. So once you set a property of the renderer, all cells use that property.
    You use the setText() method to set the label to "Here", but it is never reset to another value. Try:
    if (value instanceof String) this.setText((String) value);
    else this.setText("");
    However, here is a better example of how to write a Renderer:
    import java.awt.*;
    import javax.swing.*;
    import javax.swing.table.*;
    class HexCellRenderer extends DefaultTableCellRenderer
         private static final Color hexBackground = Color.cyan;
         public Component getTableCellRendererComponent(JTable table,
                                        Object value,
                                        boolean isSelected,
                                        boolean hasFocus,
                                        int row,
                                        int column)
              super.getTableCellRendererComponent(table, value, isSelected, hasFocus, row, column);
              setBackground( hexBackground );
              setHorizontalAlignment( CENTER );
              return this;
    }You should extend DefaultTableCellRenderer, which extends JLabel. The DefaultTableCellRenderer already sets the text of the label so your don't have to worry about it.

  • Cpu benchmark script

    Hello,
    please move this topic to the correct forum if this post is not at the right place!
    Going to the point, I'm facing the possibility of upgrade my SUN computing park, but not sure if I'll have the gain (%) that I expect and need. So, if somebody could waste 2 minutes of his time, I've a very simple perl script that I'm using to measure and simple benchmark the floating point of the new CPUs.
    If you have a server with SPARC64 VI or VII and can help me on this issue, please answer this and I'll private post the script - it is a simple bash script that calls (and loops) the perl sequence, which does some randoms shots around the P.I. (3,1416.....) number. It would really really help me A LOT. It wont take more than 2 minutes, I swear.
    Thank you guys very much.
    Thiago.
    Edited by: tlucasbr on Feb 19, 2009 4:44 PM

    Hello,
    please move this topic to the correct forum if this post is not at the right place!
    Going to the point, I'm facing the possibility of upgrade my SUN computing park, but not sure if I'll have the gain (%) that I expect and need. So, if somebody could waste 2 minutes of his time, I've a very simple perl script that I'm using to measure and simple benchmark the floating point of the new CPUs.
    If you have a server with SPARC64 VI or VII and can help me on this issue, please answer this and I'll private post the script - it is a simple bash script that calls (and loops) the perl sequence, which does some randoms shots around the P.I. (3,1416.....) number. It would really really help me A LOT. It wont take more than 2 minutes, I swear.
    Thank you guys very much.
    Thiago.
    Edited by: tlucasbr on Feb 19, 2009 4:44 PM

  • Audigy 2 ZS soundfo

    I got a Aufigy 2 zs from someone for my new pc, because my old Guillemot was a 6 card.
    So i downloaded vienna to use some soundbanks. How can i upload it to the soundcards (or Pc's?) memory? I got no Software for it (some sort of bank manager). Can i do this in Vienna?

    you should use the Creative Soundfont Bank Manager, available in the original drivers and applications CD.
    if you don't want to have a "true" one, you can search them on the web and P2P. Or just search people one this forum that post CD drivers isos, and private post to them to ask if they can redirect or upload the cd for you

  • Multiple Hidden Albums at one gallery URL?

    On my main .me gallery photo page it shows ALL my unhidden albums.
    I have hidden albums too - but each is a different URL.
    I was hoping to have one URL where I could have specific hidden albums grouped together.
    I have photos from a trip (over 500 - so must use multiple albums since 500 is limit), and wanted to privately post them as hidden but with only ONE url to get to them both. Is that possible? Thanks.

    no
    LN

  • Bug re password protected sites in wordpress

    In 29.0.1 i discovered this 'bug'.
    I manage a WordPress site http://www.mainehomelessplanning.org/ we use password protect or limit access to documents access for some documents under development. When testing these this past week I discovered that the documents which should show a password request, just showed the document. Testing this in Chrome, IE, an Safari the password request shows up correctly.
    I know when we rolled out the site this functionality was working as expected. I am assuming that some change in FireFox in an update introduced this problem. I use a plain FireFox with the stock theme and not many plugins. Given it works correctly in the other browsers, I have to see this as a FireFox Bug.
    http://www.mainehomelessplanning.org/test-private-post/

    It is likely that you still have a cookie set that makes the server recognize you.
    Details like websites remembering you (log you in automatically) are stored in a cookie.
    Clear the cache and cookies only from websites that cause problems.
    "Clear the Cache":
    *Firefox/Tools > Options > Advanced > Network > Cached Web Content: "Clear Now"
    "Remove Cookies" from sites causing problems:
    *Firefox/Tools > Options > Privacy > "Use custom settings for history" > Cookies: "Show Cookies"

  • How do I send a private message to someone who has posted a previous question or answer?

    I have a similar question to one which was posted earlier and I would like to contact the person who asked this question, to see if the advice received helped sort out his problem

    Molly K wrote:
    AdrianB,
    Unfortunately, our current system doesn't have private messaging functionality.
    If the thread was recent, the person you are looking for may still be subscribed to it. If they are, then you can post to the thread and a notification will be sent to them and they may respond to you.
    If the thread wasn't recent, then the notifications to it have probably all expired. The best thing to do in this case would be to post a new question and reference the old thread in your question. The original person may reply to it or other users may reply and let you know their opinion of the advice given.
    Thanks,
    Molly K.
    NI Web Support & Operations
    Hi Molly,
    What qualifies as "recent"? In other words, how long until subscriptions have expired?
    Thanks,
    Corey

  • UCCE Router Call Key Reset Post Private Link Failure

                     Hi Guys
    As above. My customer has UCCE v7.5.8 together with CVP 7.0 designed with a pair of Proggers geographically split with a 2x10Mb LES between the 2 sites supporting both the visible and private traffic (One LES for each).
    The LES supporting the Private traffic 'blipped' but recovered within 10 mins. Now each day @ midnight Router Call Key starts at 201, however,whilst looking into a reporting issue I noticed that Router Call Key, seems to have reset to 201, but prepended with digits 34768, making a Router Call Key of 34768201. This appears to coincide with the time of the Private link recovery. Has anyone seen this before? I'm guessing this denotes a state-transfer/Db re-sync has taken place, or am I barking up the wrong tree?
    Cheers
    Freddie

    Thanks Lasse,
    When running that tool, all the links are showing zero utilization - not sure if the tool is able to show any more detailed information? 
    I should state that this Lync implementation is not live, there no Lync clients out on the corporate network, and I'm not expecting any traffic on the WAN site links at this point.
    It just seems to be an issue when accessing as a remote user.   At this point I think it must be because I have misconfigured CAC.  And because it is happening for a conference and not peer to peer for the remote user, then it is probably the relationship
    between the front end server pool and Edge server / remote user.  
    I have a local / central site defined in CAC with no bandwidth policy applied.  Initially the subnets assigned to this central site were just the LAN subnets for the central site that I knew would have Lync clients running on them.  Then as part
    of troubleshooting decided to add the Edge Internal IP, and then Edge external IPs as subnets associated with this central site.  Still getting the same problem though.
    Its around about times like now where I wonder if it is something simple like a service needing restarting so I'll double check things like this.   If you have any other ideas it would be greatly appreciated - a bit stuck.
    Regards,
    James

  • Is there anyone here who is willing to provide private assistance on helping me determine who and how my phone has been hacked- or remote user has access to which I did note allow? I don't want to post all of my info !

    I have downloaded system log apps to gain more info on what is exactly taking place in my phone and have saved everything- ports connections IP address local an remote ones -advanced system logs - keg logs in my system logs - ect - there are words such as hash - remote user - localpeer Id - js processes - gem - registering unknown app identifier - MobileMe.fmf- system override by unknown source- bootstrap process - SMS plug in sim toolkit plugin - ect - GSEvent that is not designated as being routed to frontmost (type 2), forwarding to the System Ap- PSSystemConfigurationDynamicStoreMISWatcher sendStateUpdate]: MIS state change: 1022 -> 1022, reason: 4 -> 0- MobileMail [95] (Warning): BOOL hasAutosavedMessageWithIdentifier(id<NSCoding>) f-
    PLEASE HELP - phone dies in two hours - cant turn off - switches screens - yes I've up dated software- leave kn charger over night and have 60% battery
    I'm willing to send all info to anyone who will provide some type of reasonable answer for me other than back it up wipe it clean and restart BC- I live with the person I believe did It and really that's not going to help as I already have - would like more definitive info -

    Will do that tomorrow - but the problem is- he has had access to my iCloud since I got an iPhone - we live together - have for a long time he set it up for me - I never realized there was a possibility he could possibly hack my phone entirely through that- and im still not sure - as answers here are vague- I don't have a problem with him viewing any info there- I never set up much more than contacts and find my iPhone which - who cares if he looks where I am - I don't lie about that- but until I started having multiple persistent problems with my phone - and finding many locked files on his Mac and Cydia on his iPad -( after hours of digging) -  I never had a clue to think maybe he hacked my phone - I started really researching the concept and found vuze BitTorrent VMware strange wifi numbers - different locations on Mac - apple script and text edit files - pdf files that made no sense- stuffit - frankly i dont know what any o it really means- the problem is - I don't think going to apple tomorrow having them fix it - and not knowing if the problem is here at home is going to help this situation -if he is hacking / remote using - my phone on the level I think he has - I clearly can't figure it out with the knowledge I have in regards to this software - never knew he was into it - and frankly I think If its true its pretty easy for him to do again as we share everything here - can apple look at the information I have and really answer this question or do I need to find someone who will be able to understand the data ( im sure apple will -but who wants their product hack able) and all I've heard is its impossible to hack an apple phone with out jail breaking it - which from what I've looked at the last month I'm not sure about that if you share all your devices constantly.  I would just like a definitive yes or no - and before I wipe it clean - it's kind of a serious thing.

  • Error while posting Customer with Multiple sales areas using DEBMAS05.

    Dear experts,
    We are generating IDOCS vis SAP DS for posting Customer master. The message type used is DEBMAS and basic type is DEBMAS05.  we have a requirement to create 1 customer with multiple sales areas. However, we are ending up with a strange error:  "Fill all required fields SAPMF02D 0111 ADDR1_DATA-NAME1". Despite the IDOC going into status 51, the customer gets created and the 1st sales area too. the 2nd sales area however is not created!  The IDOC data definitely contains Name1, otherwise the customer would not have been created in the first place.
    As the error message is related to the Address data, I also explored upon exploring this erorr further on the lines of Central Address management where in the ADRMAS and DEBMAS have to be passed together(IDOC Serialiization).  OSS Note (384462)  provides further details about this. One Important point from the note is: 
    "As you have to specify the logical name of the sending system among other things, SAP is not able to make any default settings in the standard systems. When you use the serialization groups delivered as a standard by SAP, the address objects are imported before the master objects.Thus the sequence address data before master objects must only be adhered to if one of the following points applies to your application:
    Such fields are set as required entry fields that are only provided by the BAS in the Customizing of the customer or vendor master.
    For your customers, contact persons exist to which a private address or a different business address is assigned.".
    This is not the case in our situation, as we do not have required entry fields in customizing that are only provided by the BAS, so the error is all the more confusing and I am not too sure what the cause is.
    If someone have experienced the same issue before and have found a solution to it, kindly help out.

    I have found the cause and solution to this problem.
    This error ”Fill all required fields SAPMF02D 0111 ADDR1_DATA-NAME1” and other similar errors like “Fill all required fields SAPMF02D 0111 ADDR1_DATA-SORT1“ which occurrs during the IDOC posting when there are more than one sales area or company code occurs when the customer number range is set up for Internal numbering. This means, that the number gets generated only at the time of save and upon debugging the IDOC, we found out that after creating the customer and the first sales area/company code record, the segment E1KNA1M is cleared completely! This is the reason, it throws an error which points to a mandatory KNA1 field as missing. (Like NAME1, SORT1 etc.)
    This was resolved by splitting the IDOC into 2.
    The solution is to First post only the KNA1 segment and create the customer.
    In the second step, pass the IDOC with all other segments along with E1KNA1M, but pass only KUNNR in E1KNA1M and the rest of the fields in E1KNA1M as “/”:  you would have got the KUNNR after the first step.
    Important note: This requirement to split the IDOCs does not occur when the customer number is known upfront. (Meaning cases where the customer number is externally generated) I also tested this and created a customer with external numbering and I was able to post more than 1 sales area with the same IDOC. 
    I noticed multiple threads with the same issue, but none of it had a concrete answer. I hope this information will be useful for anyone facing similar problems.
    Cheers
    Venkat

  • 'Error while signing data-Private key or certificate of signer not availabl

    Hello All,
    In my message mapping I need to call a web service to which I need to send a field value consist of SIGNED DATA.
    I am using SAP SSF API to read the certificate stored in NWA and Signing the Data as explained in
    http://help.sap.com/saphelp_nw04/helpdata/en/a4/d0201854fb6a4cb9545892b49d4851/frameset.htm,
    when I have tested using Test tab of message mapping  it is working fine and I am able to access the certificate Keystore of NWA(we have created a keystore view and keystore entry to store the certificate) and generate the signed data ,but when I test end to end scenario from ECC system,it is getting failed in mapping with the error
    ' Error while signing data - Private key or certificate of signer not availableu2019.
    Appreciate your expert help to resolve this issue urgently please.
    Regards,
    Shivkumar

    Hi Shivkuar,
    Could you please let me know how you were trying to achieve the XML signature.
    We have a requirement where we have to sign the XML document and need to generate the target document as following structure.
    <Signature>
         <SignedInfo>
             <CanonicalizationMethod />
             <SignatureMethod />
             <Reference>
                     <Transforms>
                     <DigestMethod>
                     <DigestValue>
             </Reference>
        <Reference /> etc.
      </SignedInfo>
      <SignatureValue />
      <KeyInfo />
      <Object>ACTUAL PAYLOAD</Object>
    </Signature>
    I am analyzing the possibility of using the approach that is given in the help sap link that you have posted above. Any inputs will be apprecited.
    Thanks and Regards,
    Sami.

Maybe you are looking for

  • My iphone 4 does not use the gyroscope that came with the ios 7 update. so then how can i get it to work

    I downloaded ios 7 some time ago when it was new and what not. I found out from my friends iphone 4 with ios 7 the wallpaper moved. why doesnt this happen for me?

  • How to export iPad photo album into iPhoto.

    I had my Windows laptop and iPad 2 stolen in a house break-in .  The laptop had my iTunes library and photos. I have an 1st gen iPad with several albums on it that are not part of the camera roll or photo stream.  I want to export these to my beautif

  • Search By Name function is NOT WORKING.

    Before reading further, PLEASE take note of this: I have ALREADY installed the "Search By Name" add-on, and it DOES NOT WORK. As such, PLEASE do not suggest that add-on as a fix to my issue, since that add-on IS my issue. I was using Firefox ESR 10.0

  • CWA using customized portal does not work IPAD 2

    Hi all, I have another interesting case that I have been testing for more than a month but it is not working. Cisco provides templates to create the customized portals for LWA or CWA. However, Success Page HTML does not work on LWA and Cisco ISE uses

  • Create OMF tablespace using DBConsole

    How to create a tablespace using DBCONSOLE(10gr2 OEM)? The OEM screen keeps asking for the datafile name, which invalidates the OMF feature if i don't want to name the datafiles and have oracle decided it. Thanks -Ash