Template Error I've never seen before

I've been using Dreamweaver and it's template system for over
5 years now. Today, I'm redoing a site, started it like I always
do, utilizing the CSS Blank page layout for a three column. Set up
my template, looks fine. Then I try inserting some PHP/Mysql call
to actions in the right hand column, outside of a template region
and I receive the error:
You have added or changed code outside the <html> tag.
This change will not be copied to documents based on the template
unless you insert this tag in the <head> section of your
template:
<!-- TemplateInfo codeOutsideHTMLIsLocked="true"
-->
Now I have done this before and I've never received this
error. When I put the above in the head section then I receive
nothing but errors. Looking at the code it wants me to put in, in
my thinking it should =false not true. I don't want my code locked
outside my HTML since I'm dealing in PHP/Mysql environment, there
is a lot that goes on outside of the html code.
Did Dreamweaver do an updated that messed things up? Why did
it work fine last week and not this week.
Thanks.

That's not an error. It's an alert. It's for information
only. Read it
carefuly and understand it. Then ignore it.
Murray --- ICQ 71997575
Adobe Community Expert
(If you *MUST* email me, don't LAUGH when you do so!)
==================
http://www.projectseven.com/go
- DW FAQs, Tutorials & Resources
http://www.dwfaq.com - DW FAQs,
Tutorials & Resources
==================
"cheryljames" <[email protected]> wrote in
message
news:ftgp3m$qtl$[email protected]..
> I've been using Dreamweaver and it's template system for
over 5 years now.
> Today, I'm redoing a site, started it like I always do,
utilizing the CSS
> Blank
> page layout for a three column. Set up my template,
looks fine. Then I
> try
> inserting some PHP/Mysql call to actions in the right
hand column, outside
> of a
> template region and I receive the error:
>
>
You have added or changed code outside the <html> tag.
This change will
> not
> be copied to documents based on the template unless you
insert this tag in
> the
> <head> section of your template:
>
> <!-- TemplateInfo codeOutsideHTMLIsLocked="true"
-->
>
> Now I have done this before and I've never received this
error. When I put
> the
> above in the head section then I receive nothing but
errors. Looking at
> the
> code it wants me to put in, in my thinking it should
=false not true. I
> don't
> want my code locked outside my HTML since I'm dealing in
PHP/Mysql
> environment,
> there is a lot that goes on outside of the html code.
>
> Did Dreamweaver do an updated that messed things up? Why
did it work fine
> last week and not this week.
>
> Thanks.
>

Similar Messages

  • Help! I have an error I have never seen before

    I have witten this rather long winded code, but I do not see any reason why it shouldn't work. the error report is as follows:
    Thx in advance for any help!!
    Error report:
    ORA-06550: line 232, column 8:
    PLS-00103: Encountered the symbol "LOOP" when expecting one of the following:
    if
    ORA-06550: line 237, column 4:
    PLS-00103: Encountered the symbol "end-of-file" when expecting one of the following:
    end not pragma final instantiable order overriding static
    member constructor map
    PLS-00103: Encountered the symbol "end-of-file" when expecting one of the following:
    end not pragma final instantiable order overriding static
    member constructor map
    and the code is
    ALTER TABLE net_promotion ADD(promo_name VARCHAR(1024));
    COMMIT;
    --this is to insert AIMS from a txt file data string
    DECLARE
    fh UTL_FILE.FILE_TYPE; -- file handle to input file
    input_line VARCHAR2(10000); -- line from input file
    begin_time DATE; -- Time load began
    end_time DATE; -- Time load ended
    total_rows NUMBER:=0; -- Total rows processed
    -- Variables for column contents
    NUM_IN VARCHAR2(1024);
    PROMO_IN VARCHAR2(1024);
    CLIENT_IN VARCHAR2(1024);
    PROMO_EXISTS_ASSET VARCHAR2(1024);
    PROMO_EXISTS_PROMO VARCHAR2 (1024);
    NUM_EXISTS VARCHAR(1024);
    SUPP_EXISTS VARCHAR2(1024);
    MIG_START VARCHAR2 (1024);
    MIG_NUM VARCHAR2 (1024);
    MIG_PROMO VARCHAR2 (1024);
    MIG_END VARCHAR2 (1024);
    MIG_CAT VARCHAR2 (1024);
    MIG_TYPE VARCHAR2 (1024);
    MIG_DESC VARCHAR2 (1024);
    MIG_SUPP VARCHAR2 (1024);
    MIG_TC VARCHAR2 (1024);
    CLIENT_ID_IN VARCHAR2(1024);
    AIM_INS VARCHAR(1024);
    BEGIN
    -- Open the input file for reading
    fh:=UTL_FILE.FOPEN('DIR_TEMP','PROMO_NUM.txt','r');
    DELETE FROM NET_PROMOTION;
    COMMIT;
    -- Get beginning time
    begin_time := SYSDATE;
    -- Loop through file, read one line at a time, and insert
    -- into the database table.
    LOOP
    -- Get input line
    BEGIN
    UTL_FILE.GET_LINE(fh,input_line);
    EXCEPTION
    WHEN NO_DATA_FOUND THEN EXIT;
    END;
    total_rows:= total_rows + 1;
    -- Parse line contents
    NUM_IN:=SUBSTR(input_line,1,INSTR(input_line,',')-1);
    input_line:=SUBSTR(input_line,INSTR(input_line,',')+1);
    PROMO_IN:=SUBSTR(input_line,1,INSTR(input_line,',')-1);
    input_line:=SUBSTR(input_line,INSTR(input_line,',')+1);
    CLIENT_IN:=input_line;
    -- THIS NEXT SECTION PUTS VALUES INTO VARIABLES
    SELECT SHORT_DIAL_NUMBER INTO MIG_NUM FROM MIGRATE_PROMO WHERE SHORT_DIAL_NUMBER = NUM_IN;
    SELECT PROMOTION_TITLE INTO MIG_PROMO FROM MIGRATE_PROMO WHERE SHORT_DIAL_NUMBER = NUM_IN;
    SELECT PROMOTION_START_DATE INTO MIG_START FROM MIGRATE_PROMO WHERE SHORT_DIAL_NUMBER = NUM_IN;
    SELECT PROMOTION_END_DATE INTO MIG_END FROM MIGRATE_PROMO WHERE SHORT_DIAL_NUMBER = NUM_IN;
    SELECT PRODUCT_CATEGORY INTO MIG_CAT FROM MIGRATE_PROMO WHERE SHORT_DIAL_NUMBER = NUM_IN;
    SELECT PROMOTION_TYPE INTO MIG_TYPE FROM MIGRATE_PROMO WHERE SHORT_DIAL_NUMBER = NUM_IN;
    SELECT PROMOTION_DESCRIPTION INTO MIG_DESC FROM MIGRATE_PROMO WHERE SHORT_DIAL_NUMBER = NUM_IN;
    SELECT PROMOTIONCUSTSUPPORT INTO MIG_SUPP FROM MIGRATE_PROMO WHERE SHORT_DIAL_NUMBER = NUM_IN;
    SELECT PROMOTION_TERMS_AND_CONDITIONS INTO MIG_TC FROM MIGRATE_PROMO WHERE SHORT_DIAL_NUMBER = NUM_IN;
    SELECT CLIENT_ID INTO CLIENT_ID_IN FROM NET_ASSET WHERE DISPLAY_NAME = CLIENT_IN AND TYPE='CLIENT';
    --THIS NEXT SECTION FLAGS IF THE PROMOTION AND NUMBER AND CSR CONTACT ALREADY EXISTS, BOTH NEED TO BE TRU TO EXIST
    SELECT 'TRUE' INTO PROMO_EXISTS_ASSET FROM NET_ASSET WHERE EXISTS
    (SELECT * FROM NET_ASSET WHERE DISPLAY_NAME=MIG_PROMO AND START_DATE=MIG_START AND TYPE='PROMOTION');
    SELECT 'TRUE' INTO PROMO_EXISTS_PROMO FROM NET_PROMOTION WHERE EXISTS
    (SELECT * FROM NET_PROMOTION WHERE PROMO_NAME=MIG_PROMO AND PROMOTION_TYPE = MIG_TYPE AND PROMOTION_CATEGORY = MIG_CAT);
    SELECT 'TRUE' INTO NUM_EXISTS FROM NET_ASSET WHERE EXISTS
    (SELECT * FROM NET_ASSET WHERE DISPLAY_NAME = MIG_NUM AND TYPE = 'NUMBER');
    SELECT 'TRUE' INTO SUP_EXISTS FROM NET_CLIENT_CONTACT WHERE EXISTS
    (SELECT * FROM NET_CLIENT_CONTACT WHERE FIRST_NAME ='Customer Service' AND CLIENT_ID = CLIENT_ID_IN AND WORK_PHONE = MIG_SUPP);
    IF CLIENT_IN =bonjour THEN
    SELECT AIM_ID INTO AIM_INS FROM NET_AIM WHERE BUSINESS_ID ='bonjourts';
    ELSE IF CLIENT_IN ='hello THEN
    SELECT AIM_ID INTO AIM_INS FROM NET_AIM WHERE BUSINESS_ID ='hellots';
    ELSE
    SELECT AIM_ID INTO AIM_INS FROM NET_AIM WHERE BUSINESS_ID ='test';
    END IF;
    --THIS BIT SAYS THAT THE PROMOTION EXISTS AND SO DOES THE NUMBER, THEREFORE NEED TO JUST MODIFY THE LINKING TABLE
    IF PROMO_EXISTS_ASSET = 'TRUE' AND PROMO_EXISTS_PROMO = 'TRUE' AND NUM_EXISTS='TRUE'
    THEN
    CREATE_PROMO_ASSET_LINK
    PROMO_IN ,
    MIG_START,
    MIG_NUM ,
    MIG_PROMO ,
    MIG_END,
    MIG_CAT,
    MIG_TYPE,
    CLIENT_ID_IN
    ELSE IF PROMO_EXISTS_ASSET=NULL AND PROMO_EXISTS_PROMO=NULL AND NUM_EXISTS='TRUE'
    THEN
    CREATE_PROMO
    NUM_IN,
    PROMO_IN,
    CLIENT_IN ,
    PROMO_EXISTS_ASSET ,
    PROMO_EXISTS_PROMO ,
    MIG_START ,
    MIG_NUM ,
    MIG_PROMO ,
    MIG_END ,
    MIG_CAT ,
    MIG_TYPE ,
    MIG_DESC ,
    MIG_SUPP ,
    MIG_TC ,
    SUPP_EXISTS ,
    CLIENT_ID_IN ,
    'PROMOTION',
    'ACTIVE'
    CREATE_PROMO_ASSET_LINK
    PROMO_IN ,
    MIG_START,
    MIG_NUM ,
    MIG_PROMO ,
    MIG_END,
    MIG_CAT,
    MIG_TYPE,
    CLIENT_ID_IN
    ELSE IF PROMO_EXISTS_ASSET=NULL AND PROMO_EXISTS_PROMO=NULL AND NUM_EXISTS=NULL
    THEN
    CREATE_PROMO_NUM
    NUM_IN,
    CLIENT_IN,
    MIG_NUM,
    CLIENT_ID_IN,
    AIM_INS
    CREATE_PROMO
    NUM_IN,
    PROMO_IN,
    CLIENT_IN ,
    PROMO_EXISTS_ASSET ,
    PROMO_EXISTS_PROMO ,
    MIG_START ,
    MIG_NUM ,
    MIG_PROMO ,
    MIG_END ,
    MIG_CAT ,
    MIG_TYPE ,
    MIG_DESC ,
    MIG_SUPP ,
    MIG_TC ,
    SUPP_EXISTS ,
    CLIENT_ID_IN ,
    'PROMOTION',
    'ACTIVE'
    CREATE_PROMO_ASSET_LINK
    PROMO_IN ,
    MIG_START,
    MIG_NUM ,
    MIG_PROMO ,
    MIG_END,
    MIG_CAT,
    MIG_TYPE,
    CLIENT_ID_IN
    ELSE
    CREATE_PROMO
    NUM_IN,
    PROMO_IN,
    CLIENT_IN ,
    PROMO_EXISTS_ASSET ,
    PROMO_EXISTS_PROMO ,
    MIG_START ,
    MIG_NUM ,
    MIG_PROMO ,
    MIG_END ,
    MIG_CAT ,
    MIG_TYPE ,
    MIG_DESC ,
    MIG_SUPP ,
    MIG_TC ,
    SUPP_EXISTS ,
    CLIENT_ID_IN ,
    'PROMOTION',
    'ACTIVE'
    CREATE_PROMO_ASSET_LINK
    PROMO_IN ,
    MIG_START,
    MIG_NUM ,
    MIG_PROMO ,
    MIG_END,
    MIG_CAT,
    MIG_TYPE,
    CLIENT_ID_IN
    END IF;
    END LOOP;
    -- Close input file
    UTL_FILE.FCLOSE(fh);
    END;

    Your formatted code. I've added couple of end ifs. That might not be the problem, but give it a try.
    NUM_IN VARCHAR2(1024);
    PROMO_IN VARCHAR2(1024);
    CLIENT_IN VARCHAR2(1024);
    PROMO_EXISTS_ASSET VARCHAR2(1024);
    PROMO_EXISTS_PROMO VARCHAR2 (1024);
    NUM_EXISTS VARCHAR(1024);
    SUPP_EXISTS VARCHAR2(1024);
    MIG_START VARCHAR2 (1024);
    MIG_NUM VARCHAR2 (1024);
    MIG_PROMO VARCHAR2 (1024);
    MIG_END VARCHAR2 (1024);
    MIG_CAT VARCHAR2 (1024);
    MIG_TYPE VARCHAR2 (1024);
    MIG_DESC VARCHAR2 (1024);
    MIG_SUPP VARCHAR2 (1024);
    MIG_TC VARCHAR2 (1024);
    CLIENT_ID_IN VARCHAR2(1024);
    AIM_INS VARCHAR(1024);
    BEGIN
    -- Open the input file for reading
       fh:=UTL_FILE.FOPEN('DIR_TEMP','PROMO_NUM.txt','r');
       DELETE FROM NET_PROMOTION;
       COMMIT;
    -- Get beginning time
       begin_time := SYSDATE;
    -- Loop through file, read one line at a time, and insert
    -- into the database table.
       LOOP
    -- Get input line
          BEGIN
             UTL_FILE.GET_LINE(fh,input_line);
          EXCEPTION 
             WHEN NO_DATA_FOUND THEN EXIT;
          END;
          total_rows:= total_rows + 1;
    -- Parse line contents
          NUM_IN:=SUBSTR(input_line,1,INSTR(input_line,',')-1);
          input_line:=SUBSTR(input_line,INSTR(input_line,',')+1); 
          PROMO_IN:=SUBSTR(input_line,1,INSTR(input_line,',')-1);
          input_line:=SUBSTR(input_line,INSTR(input_line,',')+1);
          CLIENT_IN:=input_line; 
    -- THIS NEXT SECTION PUTS VALUES INTO VARIABLES
          SELECT SHORT_DIAL_NUMBER 
          INTO MIG_NUM 
          FROM MIGRATE_PROMO 
          WHERE SHORT_DIAL_NUMBER = NUM_IN;
          SELECT PROMOTION_TITLE 
          INTO MIG_PROMO 
          FROM MIGRATE_PROMO 
          WHERE SHORT_DIAL_NUMBER = NUM_IN;
          SELECT PROMOTION_START_DATE 
          INTO MIG_START 
          FROM MIGRATE_PROMO 
          WHERE SHORT_DIAL_NUMBER = NUM_IN;
          SELECT PROMOTION_END_DATE 
          INTO MIG_END 
          FROM MIGRATE_PROMO 
          WHERE SHORT_DIAL_NUMBER = NUM_IN;
          SELECT PRODUCT_CATEGORY 
          INTO MIG_CAT 
          FROM MIGRATE_PROMO 
          WHERE SHORT_DIAL_NUMBER = NUM_IN;
          SELECT PROMOTION_TYPE 
          INTO MIG_TYPE 
          FROM MIGRATE_PROMO 
          WHERE SHORT_DIAL_NUMBER = NUM_IN;
          SELECT PROMOTION_DESCRIPTION 
          INTO MIG_DESC 
          FROM MIGRATE_PROMO 
          WHERE SHORT_DIAL_NUMBER = NUM_IN;
          SELECT PROMOTIONCUSTSUPPORT 
          INTO MIG_SUPP 
          FROM MIGRATE_PROMO 
          WHERE SHORT_DIAL_NUMBER = NUM_IN;
          SELECT PROMOTION_TERMS_AND_CONDITIONS 
          INTO MIG_TC 
          FROM MIGRATE_PROMO 
          WHERE SHORT_DIAL_NUMBER = NUM_IN;
          SELECT CLIENT_ID 
          INTO CLIENT_ID_IN 
          FROM NET_ASSET 
          WHERE DISPLAY_NAME = CLIENT_IN 
          AND TYPE='CLIENT';
    --THIS NEXT SECTION FLAGS IF THE PROMOTION AND NUMBER AND CSR CONTACT 
    --ALREADY EXISTS, BOTH NEED TO BE TRU TO EXIST
          SELECT 'TRUE' 
          INTO PROMO_EXISTS_ASSET 
          FROM NET_ASSET 
          WHERE EXISTS (SELECT * 
                        FROM NET_ASSET 
                        WHERE DISPLAY_NAME=MIG_PROMO 
                        AND START_DATE=MIG_START 
                        AND TYPE='PROMOTION');
          SELECT 'TRUE' 
          INTO PROMO_EXISTS_PROMO 
          FROM NET_PROMOTION 
          WHERE EXISTS (SELECT * 
                        FROM NET_PROMOTION 
                        WHERE PROMO_NAME=MIG_PROMO 
                        AND PROMOTION_TYPE = MIG_TYPE 
                        AND PROMOTION_CATEGORY = MIG_CAT);
          SELECT 'TRUE' 
          INTO NUM_EXISTS 
          FROM NET_ASSET 
          WHERE EXISTS (SELECT * 
                        FROM NET_ASSET 
                        WHERE DISPLAY_NAME = MIG_NUM 
                        AND TYPE = 'NUMBER');
           SELECT 'TRUE' 
           INTO SUP_EXISTS 
           FROM NET_CLIENT_CONTACT 
           WHERE EXISTS (SELECT * 
                         FROM NET_CLIENT_CONTACT 
                         WHERE FIRST_NAME ='Customer Service' 
                         AND CLIENT_ID = CLIENT_ID_IN 
                         AND WORK_PHONE = MIG_SUPP);
          IF CLIENT_IN =bonjour THEN
              SELECT AIM_ID 
              INTO AIM_INS 
              FROM NET_AIM 
              WHERE BUSINESS_ID ='bonjourts';
          ELSE IF CLIENT_IN ='hello THEN
                  SELECT AIM_ID 
                  INTO AIM_INS 
                  FROM NET_AIM 
                  WHERE BUSINESS_ID ='hellots';
               ELSE
                  SELECT AIM_ID 
                  INTO AIM_INS 
                  FROM NET_AIM 
                  WHERE BUSINESS_ID ='test';
               END IF
    "-- Added end if here"
          END IF;
    --THIS BIT SAYS THAT THE PROMOTION EXISTS AND SO DOES THE NUMBER, 
    -- THEREFORE NEED TO JUST MODIFY THE LINKING TABLE
          IF PROMO_EXISTS_ASSET = 'TRUE' 
          AND PROMO_EXISTS_PROMO = 'TRUE' 
          AND NUM_EXISTS='TRUE' THEN
              CREATE_PROMO_ASSET_LINK(
                                       PROMO_IN ,
                                       MIG_START, 
                                       MIG_NUM ,
                                       MIG_PROMO , 
                                       MIG_END, 
                                       MIG_CAT, 
                                       MIG_TYPE,
                                       CLIENT_ID_IN
           ELSE 
              IF PROMO_EXISTS_ASSET=NULL 
              AND PROMO_EXISTS_PROMO=NULL 
              AND NUM_EXISTS='TRUE' THEN
                 CREATE_PROMO
                                       NUM_IN,
                                       PROMO_IN,
                                       CLIENT_IN ,
                                       PROMO_EXISTS_ASSET ,
                                       PROMO_EXISTS_PROMO ,
                                       MIG_START , 
                                       MIG_NUM ,
                                       MIG_PROMO , 
                                       MIG_END , 
                                       MIG_CAT , 
                                       MIG_TYPE ,
                                       MIG_DESC ,
                                       MIG_SUPP ,
                                       MIG_TC ,
                                       SUPP_EXISTS ,
                                       CLIENT_ID_IN ,
                                       'PROMOTION',
                                       'ACTIVE'
                 CREATE_PROMO_ASSET_LINK(
                                       PROMO_IN ,
                                       MIG_START, 
                                       MIG_NUM ,
                                       MIG_PROMO , 
                                       MIG_END, 
                                       MIG_CAT, 
                                       MIG_TYPE,
                                       CLIENT_ID_IN
              ELSE 
                 IF PROMO_EXISTS_ASSET=NULL 
                 AND PROMO_EXISTS_PROMO=NULL 
                 AND NUM_EXISTS=NULL THEN
                    CREATE_PROMO_NUM
                                       NUM_IN,
                                       CLIENT_IN,
                                       MIG_NUM,
                                       CLIENT_ID_IN,
                                       AIM_INS
                    CREATE_PROMO
                                       NUM_IN,
                                       PROMO_IN,
                                       CLIENT_IN ,
                                       PROMO_EXISTS_ASSET ,
                                       PROMO_EXISTS_PROMO ,
                                       MIG_START , 
                                       MIG_NUM ,
                                       MIG_PROMO , 
                                       MIG_END , 
                                       MIG_CAT , 
                                       MIG_TYPE ,
                                       MIG_DESC ,
                                       MIG_SUPP ,
                                       MIG_TC ,
                                       SUPP_EXISTS ,
                                       CLIENT_ID_IN ,
                                       'PROMOTION',
                                       'ACTIVE'
                     CREATE_PROMO_ASSET_LINK
                                       PROMO_IN ,
                                       MIG_START, 
                                       MIG_NUM ,
                                       MIG_PROMO , 
                                       MIG_END, 
                                       MIG_CAT, 
                                       MIG_TYPE,
                                       CLIENT_ID_IN
                 ELSE 
                    CREATE_PROMO
                                       NUM_IN,
                                       PROMO_IN,
                                       CLIENT_IN ,
                                       PROMO_EXISTS_ASSET ,
                                       PROMO_EXISTS_PROMO ,
                                       MIG_START , 
                                       MIG_NUM ,
                                       MIG_PROMO , 
                                       MIG_END , 
                                       MIG_CAT , 
                                       MIG_TYPE ,
                                       MIG_DESC ,
                                       MIG_SUPP ,
                                       MIG_TC ,
                                       SUPP_EXISTS ,
                                       CLIENT_ID_IN ,
                                       'PROMOTION',
                                       'ACTIVE'
                    CREATE_PROMO_ASSET_LINK
                                       PROMO_IN ,
                                       MIG_START, 
                                       MIG_NUM ,
                                       MIG_PROMO , 
                                       MIG_END, 
                                       MIG_CAT, 
                                       MIG_TYPE,
                                       CLIENT_ID_IN
                 END IF;
    "-- Added these 2 end ifs here below"
             END IF;
         END IF;
    END LOOP;
    -- Close input file
    UTL_FILE.FCLOSE(fh);
    END; Cheers
    Sarma.

  • HT201401 My iphone 4s turned off properly but when I went to put it back the apple icon came on and then an image I have never seen before of a ubs pointiing towards the word itunes in a circle.  And the phone no longer goes beyond this message.  meltdown

    My phone started acting up and I noticed my text messages were not being sent.  So I turned my iphone off.  My iphone 4s turned off properly but when I went to put it back the apple icon came on and then an image I have never seen before of a UBS pointiing towards the word itunes in a circle.  And the phone no longer goes beyond this message.  I try to turn it off and on again and same message over and over.  If I hit the any button on the phone nothing happens. Does anyone know what this means or seen this itunes messaging ?  meltdown? Please help.

    Hello Raja,
    Thank you so much for your response.  I had these photos backed up on iCloud but, had I not, its good to have an alternate solution as the one you suggested.  Actually, I went to the Apple store today and yes, you are absolutely correct Restoring in iTunes will result in permanent loss of photos unless backed up somewhere such as iCloud or other solution.  Well, what they did was restore the phone in itunes ( I did not have iTunes downloaded to my computer which is why it did not work when I went to do it myself, I needed to go to the iTunes site and go to the download iTunes button because my windows based HP laptop does not come with itunes already downloaded).  This retoration process took a while and I was forced to upgrade to the latest 7.1 iOS software which I was not too happy about -sometimes you like the way things work now :-)  Anyhow, they said this restoration request happens as a result of a software update (which I was NOT in progress of an update or doing an update) or sometimes when you remove the power cable too quickly from the iphone (which I do not recall doing this either but...). Since I had backed up on iCloud all of the photos were downloaded back on my iphone 4s.  Best of all was that my phone was back up and runnning and there was NO CHARGE at the apple store for this service of restoring my phone.  Well, I just wanted to share the results and I appreciate all the responses and support I received.  Thank you kindly.

  • Netctl connects to access points I've never seen before

    On my laptop using netcl and auto switching profiles as described in https://wiki.archlinux.org/index.php/Netctl.
    Recently, and more than once, I'm connected at a public cafe and I'm suddenly no longer able to reach the internet.
    When I investigate, I find that I'm no longer connected to the cafe's wifi, but I am connected to some other essid that I've never seen before.  This is disconcerting for possible security reasons but also annoying to get disconnected in the middle of whatever I'm doing.
    The essids that my box connects to I've never seen before.  (I'm assuming the come from nearby computers.)  There is no corresponding profile in /etc/netctl.
    To work around the problem, I run
    sudo systemctl stop [email protected]; sudo wifi-menu
    then reconnect to the access point I was originally connected to.
      I really don't want netctl-auto to change a connection that is working.  How can I prevent this from ever happening?

    That file has a long list of every wireless router I've connected to!  I didn't know that was there.  It duplicates a lot of information thats in /etc/netctl/...   It has passwords, too.  I'm not going to post it here.
    But I don't see the mysterious routers in that file.  The ones I find myself connected to, that I never connected to myself.
    ... Looking over that file again, I see a strange entry:
    network={
    key_mgmt=NONE
    ssid=""
    id_str="wlp3s0-none"
    I'm going to delete that.  I believe it comes from a time I connected to an essid without a name.  But I'm not sure if that's the culprit.
    Last edited by Dave Cohen (2014-02-14 17:03:32)

  • API design style I've never seen before - would you use it?

    I was Googling for examples of a "Bean Comparator" and came across this strange API design I've never seen before (is it just me?). I'm curious if you have seen it before and what you think about it?
    [http://cojen.sourceforge.net/apidocs/org/cojen/util/BeanComparator.html]
    The basic problem is to create a Comparator that can sort on multiple fields within a given class.
    First, a more traditional(?) API design might be something like:
    Constructor Summary:
         BeanComparator(Class theClass);
    Method Summary:
         addSortField(String fieldName, boolean isAscending, boolean isSortNullHigh);
         addSortField(String fieldName); // convenience method with default ascending and sortNullHigh
    So you could create a BeanComparator that sorts on multiple fields by using:
    BeanComparator bc = new BeanComparator(SomeClass.class);
    bc.addSortField("field1");
    bc.addSortField("field2", false, true);
    bc.addSortField("field3", true, false);Finally, without listing the API, the equivalent code for the "strange API design" would be:
    Comparator c = BeanComparator.forClass(SomeClass.class)
         .orderBy("field1")
         .orderBy("field2")
         .reverse();
         .orderBy("field3")
         .nullLow();So in this case:
    a) there is no explicit "add" method to add a new sort field. The "orderBy" is an implicit add.
    b) the reverse() and nullLow() methods only apply to the current orderBy field.
    c) the creation of the class is "sequential" in nature as each method needs to be invoked in the proper order
    In some ways this seems to simplify the API because you don't need lots of convenience methods or your don't need to use the full method and then restate the default values.
    Also you can add new sort options to the API without affecting any existing methods.
    What do you think of this type of API design?
    Have you ever used it before?
    Would you consider using this design and in what situations would you consider it?

    What part is bothering you exactly? Its not that it bothers me, its just that it is "different" and I was wondering if it is an acceptable design of a class and when you would use it, since I don't think I've seen any examples in the JDK.
    Usually the order of method invocation is not important. You can do:
    component.setFont()
    component.setBackground()or
    component.setBackground()
    component.setFont()However
    orderBy()
    orderBy()
    reverse()is not the same as
    orderBy()
    reverse()
    orderBy()So the API implies a "building" approach where you need to know you are building the components of the class in a certain order.
    Again, its not bad, its just different (to me) so I was wondering if it is common and when you would use it.
    The fact that the methods return the object itself...No, I've seen that pattern before and find it handy.
    Your example (addSortField) also depends on the order in which the methods are called.Yes, but this is normal for most APIs. For example adding items to a Vector, or components to a panel.
    In this case the orderBy() method implies a change of state because the next set of methods may or may not modify the state of the field being ordered.
    Again, I said I thought that this potentialy does simplify the API, but I have not seen it used before.
    I don't see the design as much of a problem. Me either.

  • I cant update my mac twitter app because it says i bought it with an apple id that i have never seen before. How do i update it?

    I cant update my mac twitter app because it says i bought it with an apple id that i have never seen before. How do i update it?

    Hi,
    Your best bet at this point then is to contact iTunes Support and get them to straighten this out for you:
    https://expresslane.apple.com/Issues.action
    Select the options that best apply to your issue. You will have a chance to provide a written description before you submit. iTunes Support will get back to you via email, usually within 24 hours. Be sure to check your Junk/Spam email folder if you don't hear back by then.
    They should be able to sort it out for you...
    Good luck!
    Cheers,
    GB

  • I have os x 10.5.8 and noticed a menu extra that I have never seen before. Is there a way to identify it? I tried to delete it i.e. comm drag, didn't work.

    I have os x 10.5.8 and noticed a menu extra that I have never seen before. Is there a way to identify it? I tried to delete it i.e. comm + drag, didn't work.

    If you can't CMD+ drag it off, try this...
    You've probably got a couple of corrupt preference files.
    Safe Boot from the HD, (holding Shift key down at bootup), run Disk Utility in Applications>Utilities, then highlight your drive, click on Repair Permissions...
    /Users/YourUserName/Library/Preferences/com.apple.systempreferences.plist
    /Users/<yourname>/Library/Preferences/ com.apple.systemuiserver.plist
    /Users/<yourname>/Library/Preferences/ByHost/com.apple.systemuiserver.xxx.plist
    where 'xxx' is a 12 digit (hexadecimal) numeric string.
    This will reset your Menu Bar to the default, you'll need to go through System Preferences to reset the ones you need. (If they are already checked, uncheck them first and then recheck them).
    reboot

  • HT5577 why i have some security question that i never seen before?

    I tried to change my password on apple id and i got some security questions that i never seen before..what can i do in this case?please help me

    Welcome to the Apple Community Helen.
    If you don't know your password, don't know your security questions and don't have a rescue address or don't receive a reset email, you should contact AppleCare who will initially try to assist you with a reset email or if unsuccessful will pass you to the security team to reset your security questions for you.
    If you are in a region that doesn't have international telephone support try contacting Apple through iTunes Store Support.

  • Never seen before interface while cleaning screen in lock mode

    Never seen before interface while cleaning screen in lock mode came up looking like player with some weird buttons.

    Go into iPod and play a song. While it's playing, click the standby button to lock/standby your phone and again to wake it (locked), then press the menu button twice. (This should also work if you play a song, press menu once to return to the main menu, then click menu twice. If not, there's a setting to turn it on.)

  • There is a dialog box on my screen that I've never seen before. I can't get it to disappear. Any ideas?

    My Macbook has a dialog box on the screen that indicates everything I do. Right now it says "Standard toolbar". When I try to get rid of it nothing happens. I've never seen this before and don't know ho to get rid of it.

    This seems to be more common than I thought. Premanent solution is to trade the cat in on a dog.
    https://discussions.apple.com/search.jspa?peopleEnabled=true&userID=&containerTy pe=&container=&spotlight=false&q=cat+on+keyboard

  • Please help ID a screen I've never seen before

    OK, I'm working along this morning on effects in my Viewer. At some point I looked over at my Canvas and there is a frame from my project with the clip name overlayed at the top and the timecode overlayed on the bottom. Now, this is not the standard Time Code Overlay screen we see in under the Show Overlays pull down. This has the clip name at the top of the frame and the timecode was a single line in a bigger than usual type face. This was not the clip I was working on in the Viewer and the moment I clicked out of Viewer the screen disappeared, replaced by the frame on which my playhead rested. I've never seen the screen before. Have you?
    Peter

    petemay wrote:
    Interesting. That would explain why, though I'm doing a video on tax evasion, everyone looked extraordinarily happy. Next time I'm going to try leaning into the screen rather than clicking away.
    Pete
    What's interesting, Pete, is that you've got the courage and humor to roll with us. Most others would get really upset and start screaming for the mods (whoever they are) to have the jovial persecuted to the full extent of the TOS.
    Can't say that I've ever seen this oddball screen of yours. Hope you see it again someday.
    bogiesan

  • Safari did something I've never seen before

    This is regarding my bookmarks.
    I went to click on a bookmark and my bookmark got deleted and there was this little dust cloud animation when I clicked.
    Nothing bad happened. I just had to go make another bookmark but I have never seen this happen before and I don't know how it happened or what I did.
    Does anyone know what this is?
    Message was edited by: thebonapartey
    Message was edited by: thebonapartey

    I clicked directly on the bookmark but I realized that if you drag a bookmark off the bookmarks bar it gets deleted and there is a dust cloud animation. I must of dragged it off and didn't know it. I seriously realized this about 1 minute after I posted my question. No big deal.
    Message was edited by: thebonapartey

  • G4 Blackout-Something I've never seen before; could be end of the machine

    I have a Powerbook G4 that I use to run ProTools. Not the best machine for the job but it's served the gig well over the last year. The one thing was that it had always run kinda slow even on mundane tasks.
    Since last weekend I've been trying to get it to run a little more smoothly.
    I cleared out the hard drive, ran Disk Utility, Disk Warrior, checked Console Logs, etc etc etc.
    After some research, I did an erase and install. I finished it up this morning. The thing ran like a dream. Restarts in well under a minute, fast operation, fast shutdown: just like a Mac should be.
    Then I was back in ProTools, and the thing did something I have never seen a Mac do, ever.
    I got a warning screen that ProTools was running out of CPU and that I should increase the Playback Engine settings, and then, before I could click out of the Alert message, the screen went black. The Hard Drives went down, and now the little rectangular white/blue light at the bottom of the monitor is calmly dim-flashing. Like HAL. I can't manually restart the thing. I can't shut it off. It won't respond to anything.
    It doesn't look good.
    Has anyone seen this before? Is there any way to bring the thing back?

    Hi there.
    I'm not familiar with ProTools per se, but in general if a mac laptop is frozen like that, I pretty well always start with:
    1) Take the external battery out. 2) Pull the plug out from the back of the laptop. (this will force it to shut down) 3) Press the power button for a few seconds (to completely discharge any power). 4) Let it sit there and think about what it's done for around thirty minutes (or sometimes longer). 5) Plug the ac adaptor back in; Press power; Then the "zap the pram" thing (apple key + option key + p + r) as it starts up (make it do the startup "bong" for 3 - 5 times; Then let it complete it's normal startup.
    Then see where you're at...
    In general, I find that OS X is happiest when it has at least 5gbs free of hard drive space to play with - Protools may require it to have even more free so it can do it's thing. Are you sure you didn't accidentally remove a file Protools needs during your own "cleanup"? Also, after I run Diskwarrior on an os x drive, I always then run Disk Utility to repair permissions afterward - Diskwarrior is a great fixing tool, but some of it's ideas on what the operating system really needs aren't quite what the mac os x directory doc has ordered.

  • Macbook pro i7 experienced a hard freeze while I was using Traktor with it. Never seen before dialog box says to shut down using on/off button.

    My Macbook Pro i7 dual core had a hard freeze halfway through my DJ set. At that moment, I had 'mixedinkey' opened on another page but it was not processing any files. The Traktor interface just froze for about 1-2 minutes with the usual rainbow ball spinning and I could not manouvre to another page. Suddenly, the music stop and an error dialog box which I have seen before appeared and say to shut down my Macbook using the on/off button. I did what was said, off the Macbook and on it again and it behaved normal after that. I also did a 'repair disk' with disk utility after that. Now, I am kind of worried it will happen again in the midst of my DJ sets because it is going to be embarassing. Does anybody out there know what actually happened? Is it my hard disk or is it a one time off thingy...any thoughts will be a great help.

    My Macbook Pro i7 dual core had a hard freeze halfway through my DJ set. At that moment, I had 'mixedinkey' opened on another page but it was not processing any files. The Traktor interface just froze for about 1-2 minutes with the usual rainbow ball spinning and I could not manouvre to another page. Suddenly, the music stop and an error dialog box which I have seen before appeared and say to shut down my Macbook using the on/off button. I did what was said, off the Macbook and on it again and it behaved normal after that. I also did a 'repair disk' with disk utility after that. Now, I am kind of worried it will happen again in the midst of my DJ sets because it is going to be embarassing. Does anybody out there know what actually happened? Is it my hard disk or is it a one time off thingy...any thoughts will be a great help.

  • Driver I Have Never Seen Before

    I just re-installed win 7 pro. But for some unknown reason I have a drive "F" that I never had before. It tells me that it has "Data" on it. But when I open the drive it's empty. I'm running RAID for my "C" drive, and my "D"
    drive is data. I have no idea what this "F" drive is. How do I delete it, or remove it??? Suggestions??
    Thank You.

    Open Computer Management by clicking the Start button ,
    clicking Control Panel, clicking System
    and Security, clicking Administrative Tools, and then double-clicking Computer
    Management.  If you're
    prompted for an administrator password or confirmation, type the password or provide confirmation.
    In the left pane, under Storage, click Disk
    Management.
    Arnav Sharma | http://arnavsharma.net/ Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading
    the thread.

Maybe you are looking for

  • My mac safari doesnt open some pages but my pc does

    a few hours ago, suddenly my mac stopped opening some websites and displayed a not connected to internet message. but other sites did open, then i went to my pc and the same was happening. i called my internet service support told that, and made some

  • Fetch and Closing a Cursor

    Listed below is my code.  I get the following errors when trying to execute Error(35,29): PLS-00103: Encountered the symbol "@" when expecting one of the following:     mod <an identifier> <a double-quoted delimited-identifier>    <a bind variable> c

  • Why CanPutXMP Fail

    i wrote this code, when i try this code with jpg file, it works, but when i try it with gif file, the CanPutXMP return false, can you help? thank you very much open file using SXMPFiles myFile the file is opened. then i tried to add a new name-value

  • Blocked stock to quality insp stock type

    Hi, scenario is as follows: received 10 qty of certain roh material from vendor. 8 has been accepted 2 kept in blocked stock. now vendor came to our company and he reworked those 2 blocked / rejected qty and checked by our quality dept and found ok a

  • Kernel panic, is it a display problem?

    I posted this under Mac Pro, but now I think it might be a monitor problem, possibly. Starting Thursday my Mac pro goes dark and tells me to power it off. It does it every 10-50 minutes or so. When it comes back up, it tells me there was a Panic. The