Cfimage inside cfdocument problem

Very strange, but repeatable issue I've run into.  I'm using the barbecue Java barcode generator library to generate code128 compliant barcodes which are then handed to cfimage writeToBrowser to finally end up with printable packing/mailing labels.  When rendered to screen, everything works perfectly, but as soon as I wrap it in a cfdocument tag, so that we can generate as a pdf for printing on a label printer, I'm ending up with the wrong image on the wrong label in a few cases.  It's always the same records that end up reusing an image from an earlier record (and always the same earlier record).  I can check in the ColdFusion8\tmpCache\CFFileServlet\_cf_image folder and see that all the correct images were created by the cfimage tag, but for whatever reason, some of the images don't make it into the pdf, but are replaced by a different barcode from an earlier record.  I can't see any commonality between the two records and if I intentionally remove the earlier record from the query, the proper barcode shows up.
So, any ideas about where to go from here?  Anybody know anything about how cfdocument pulls in images and if there is any kind of caching or prechecking of the images before rendering.  I actually checked to make sure the two files didn't have the same MD5 sum to see if there was something happening there where CF thinks it's the same image.  They were not the same.
I've tried this on two CF 8.01 boxes with the same result.  Always the same records, same images, same problem, even if I limit the query to only the two problem records.  I'm totally stumped.  Anybody?

jeff.c wrote:
Nope.  All grouping and loops are necessary based on the shape of the data and the required output based on the number of labels required for each row in the source query.  I'm doing something at each stage of the grouping (although I removed some of that because it wasn't really relevant to the question) to build these labels.  I'm quite confident that the grouping and looping is correct and not part of the problem.  In fact, I've built a simple test page that removes all the complexity of my grouping and query and will still produce this problem (although you have to have the barbecue library to test).
<cfset bbq = createObject("java", "net.sourceforge.barbecue.BarcodeFactory") />
<cfset ih = createObject("java", "net.sourceforge.barbecue.BarcodeImageHandler") />
<cfscript>
          function getCode128 (data)           {
    barcode = bbq.createCode128(data);
    barcode.setBarWidth( 1 );
    barcode.setBarHeight( 50 );
    barcode.setDrawingText( false );
    barcode.setDrawingQuietSection( false );
    barcode.setResolution( 200 );
    newImg = ih.getImage( barcode );
    barcodeImage = ImageNew(newImg);
    return barcodeImage;
</cfscript>
<cfset list = "00413001811,00403001811" />
<cfdocument format="pdf" pagewidth="4" pageheight="6.0" pagetype="CUSTOM" margintop="0.17" marginbottom="0.05" marginleft="0.17" marginright="0.17">
<html>
          <head>
          </head>
          <body>
                    <cfloop list="#list#" index="i">
                              <p><cfimage action="writetobrowser" source="#getCode128("#i#")#" /></p>
                              <p><cfoutput>#i#</cfoutput></p>
                    </cfloop>
          </body>
</html>
</cfdocument>
The question remains why it fails with, but works without, cfdocument. Does cfdocument introduce a new page context? I wonder. If so, then what -==cfSearching==- said about varring the variables would immediately make sense. Unvarred variables belong to the context of the current page.
Another issue may arise from  <cfloop list="#list#" index="i">. You implicitly assume that ColdFusion will process the list elements in the exact order in which they appear in the list. I suspect ColdFusion wont always. It may internally apply some kind of sorting, and begin with the last element in the list.

Similar Messages

  • Data not displaying inside cfdocument

    Hello,
    I am encountering a strange situation when trying to display data inside a
    <cfdocument> tag. I have constructed the code outside of a <cfdocument>
    tag and all displays as intended.
    However, when I insert the data inside a <cfdocument> tag and use the
    attribute of float: left, on the <div> tags the data associated with the
    <div> tag the attribute is applied to, dissappears. Remove the float: left
    attribute and the data reappears.
    This happens whether I insert directly inside a <cfdocument> tag or do it
    via the <cfsavecontent> process.
    Any ideas on where I should be looking to fix the issue? Also, I am using
    DW CS5, in code mode for this.
    Thanks - Leonard B
    -- Code Below --
    <cfdocument
    format="PDF"
    pagetype="letter"
    margintop=".50"
    marginbottom=".50"
    marginright=".50"
    marginleft=".50"
    orientation="portrait"
    unit="in"
    backgroundvisible="yes"
    overwrite="no"
    fontembed="yes"
    bookmark="false"
    localurl="yes">
    <div style="clear: both; border: 1px solid #000 padding: 10px 0px 0px 0px; width: 800px; height: 50px">
    <div style="clear: both; float: left; width: 400px">
    <div style="clear: both">
    <div style="float: left; width: 110px" align="right">Name:</div>
    <div style="float: left"> <cfoutput>#rs_get_time_submissions.emp_name#</cfoutput></div>
    </div>
    <div style="clear: both; padding: 5px 0px 0px 0px">
    <div style="float: left; width: 110px" align="right">Emp. Number:</div>
    <div style="float: left"> <cfoutput>#rs_get_time_submissions.emp_number#</cfoutput></div>
    </div>
    <div style="clear: both; padding: 5px 0px 0px 0px">
    <div style="float: left; width: 110px" align="right">Month / Year:</div>
    <div style="float: left"> 
    <cfif #rs_get_time_submissions.mnum# eq "1">January
    <cfelseif #rs_get_time_submissions.mnum# eq "2">February
    <cfelseif #rs_get_time_submissions.mnum# eq "3">March
    <cfelseif #rs_get_time_submissions.mnum# eq "4">April
    <cfelseif #rs_get_time_submissions.mnum# eq "5">May
    <cfelseif #rs_get_time_submissions.mnum# eq "6">June
    <cfelseif #rs_get_time_submissions.mnum# eq "7">July
    <cfelseif #rs_get_time_submissions.mnum# eq "8">August
    <cfelseif #rs_get_time_submissions.mnum# eq "9">September
    <cfelseif #rs_get_time_submissions.mnum# eq "10">October
    <cfelseif #rs_get_time_submissions.mnum# eq "11">November
    <cfelseif #rs_get_time_submissions.mnum# eq "12">December</cfif>
    <cfoutput>~ #rs_get_time_submissions.ynum#</cfoutput>
    </div>
    </div>
    </div>
    <div style="float: left; width: 400px">
    <div style="clear:both;width:300px">
    <div style="float:left; width:100px"  align="right"><cfoutput>#decimalformat(rs_total_approved_hours.total_hours)#</cfoutput></ div>
    <div style="float: left"> = Total Approved Hours</div>
    </div>
    <div style="clear:both; padding: 5px 0px 0px 0px; width:300px">
    <div style="float:left; width:100px"  align="right"><cfoutput>#decimalformat(rs_total_pending_hours.total_hours)#</cfoutput></d iv>
    <div> = Total Pending Hours</div>
    </div>
    <div style="clear:both; padding: 5px 0px 0px 0px; width:300px">
    <div style="float:left; width:100px"  align="right"><cfoutput>#decimalformat(total_hours)#</cfoutput></div>
    <div> = Total Hours</div>
    </div>
    </div>
    </div>
    </cfdocument>

    Hi Bhaskar,
    I deleted the request and again loaded with full load, still problem remains same.
    what do mean by how the data is stored in RSA3, I did get this pl clear to me.
    In the PSA I found "update Request is not genareted"
    in what case update request will miss, I think that is problem.
    can you help.
    Regards.
    Vijay

  • Resources inside JAR - problem

    I have a strange problem with resources inside JARs.
    I can't load any resource form a JAR file (for example a .property file or .png icon).
    It's not a problem with my progams only. JDBC drivers doesn't work because they cannot find .properties files while they work well when, the driver JAR i uncompressed. It happens every time when some resouces are inside JAR library (classes are loade correctly). The same project runs well on my friend's computer while I've got an error on my computer.
    I tried it on WinXP and Win2003 Server - the same. My java version 1.5.0_06-b05 (but I had the same problem with older versions).
    I figured out that I can find a file inside a JAR, open a stream, load data and everything is OK but data is always 0bytes length. For example using:
    ImageIcon myImageIcon = new ImageIcon(getClass().getResource(pathandfilename));
    I get empty ImageIcons without any error.
    Can anyone help me. Maybe I should find something somwhere in java configuration.
    Message was edited by:
    peper

    But can anyone tell me why my servlet can not access the
    contents inside a jar file?? Any suggestions please?
    Thanks.Without seeing your code, it is likely that you are trying to use file names (like /some/path/yourFileName.ext), not resource names (loadable from the class loader) like /yourFileName.ext.
    Example:
    Instead of:
    FileInputStream stream = new FileInputStream("/some/path/yourFileName.ext");
    do this:
    InputStream stream = getClass().getResourceAsStream("/yourFileName.ext");
    There are other API's which take either a string file name or a URL. You want to go the URL way, where the URL is taken from the classpath as:
    URL url = getClass().getResource("/yourFileName.ext");

  • Submit Statment inside Loop - Problem in display O/P

    Hi All,
              Iam Using Submit statment inside the Loop with Return , when the first line in the loop completes the O/P gets display and the Second line is not processed and get in O/P.Can any one let me know why this problem occurs?...
    Regards,
    Veera

    when You submit for a report it starts a parallel process and it is O/P then if you are doign it in loop it may be over writing the existing O/P that may be the reason you are not seeing the out put properly as it is written across different internalk sessions

  • Inside folder problem

    hello all experts
    now i face with a problem. i need to know the file (sound file name) inside the specified folder. The default folder path is the program path. Also, i want to specify the path with filechooser. After that, all the sound file inside the folder are listed in the list box. help me
    regards,
    jay

    Nobody is providing an example because if you follow this link, that was already posted:
    http://java.sun.com/j2se/1.4.2/docs/api/javax/swing/JFileChooser.html
    an example pops up right in front of your smiling face that does most of what you ask. It doesn't do WAV files, it does some other kind of files, and it doesn't look in the C:\ directory (which would be a really poor choice of place to put files anyway), it looks somewhere else. But those are minor details. If you don't know how to fix them, you shouldn't be going any farther with your program until you learn how.

  • "inside flap" problem

    I've recently encountered a problem with the "inside flap" of a couple of books I've been working on in iPhoto.
    Briefly, the right two-thirds of the page is covered with a grey metallic surface. The remaining third on the left looks fine, but I can't seem to get rid of the glitch. The problem is visible in all the "layouts," and in both "views" as well. It appears in a book I finished last year, and in the one I've just begun.
    I can't imagine what's wrong.

    I believe what you are seeing is iPhoto showing you what the inside flap would look like if you opened your book. The third on the left is the part of the paper cover (the dust jacket that wraps around a hardback) that folds into the book.
    The upgraded version of iPhoto now offers dust jackets and has probably retroactively turned your old book's cover (where they basically printed a sticker of your cover and stuck it on the hardback) into a dust jacket style.

  • ASA5512 iOS 9.3 inside nat problem

    Hi,
    I face some nat problem. i have ASA5512 iOS 9.3 its connect outside (ip: 37.10.1.2/29) for internet and inside (ip 10.78.61.1/24) for LAN and server.
    I configure dynamic nat for internet its work. In LAN switch has 4 VLAN one server VLAN ip add 10.88.61.0/24.
    Now i map a public ip 37.10.1.3 for server 10.88.61.10 from outside internet its work. But when i try to ping server public ip 37.10.1.3 from LAN its not ping but server local ip 10.88.61.10 ping from LAN.
    How can solve the issue i need to ping public ip from LAN. ALL LAN VLAN are nat on ASA outside interface (ip: 37.10.1.2/29).
    interface GigabitEthernet0/0
     description #### Connect TO Internet ####
     nameif outside
     security-level 0
     ip address 37.10.1.2 255.255.255.248 
    interface GigabitEthernet0/1
     description #### Connect TO Core Switch ####
     nameif inside
     security-level 100
     ip address 10.78.61.1 255.255.255.0
    access-list outside-in extended permit ip any any
    access-group outside-in in interface outside
    access-group outside-in in interface inside
    object network obj_any
     subnet 0.0.0.0 0.0.0.0
    object network obj_Ser
     host 10.88.61.10
    object network obj_Ser_WAN
     host 37.10.1.3
    nat (inside,outside) source static obj_Ser obj_Ser_WAN
    object network obj_any
     nat (inside,outside) dynamic 37.10.1.4 
    same-security-traffic permit intra-interface
    Thanks
    Afzal

    Hi,
    Try this NAT:-
    nat (inside,inside) source static obj_Ser obj_Ser_WAN
    Thanks and Regards,
    Vibhor Amrodia

  • Images inside wikies problem

    dear all
    i cant see the uploaded images to the wikies when i public user i can see the images inside the wiki i only can see the wiki but when i access as authonticated i can see it
    this is sample of the uploaded image link inside the wiki
    http://myPortal/webcenter/content/conn/UCM_conn/uuid/dDocName%3aUCM_193603
    regards

    975169 wrote:
    dear all
    i cant see the uploaded images to the wikies when i public user i can see the images inside the wiki i only can see the wiki but when i access as authonticated i can see it
    this is sample of the uploaded image link inside the wiki
    http://myPortal/webcenter/content/conn/UCM_conn/uuid/dDocName%3aUCM_193603
    regardsAs I understand you can't see the images when you're a public user. However, if you're an authenticated user then you can show the images right?.
    What "Security Group" have you applied to these images in UCM?
    Regards.

  • JMenubar inside Tabbedpane problem

    Hi,
    I have a tabbed pane having gridbag layout has following components
    Tab1
    panelmenubar|
    paneltoolbar |
    splitpane |
    |
    |
    panelstatusbar |
    The problem is when I maximize the frame I can see menubar but when I minimize the window it's becomes almost a thin line.
    here is the code i am using,
        jPanelMain.setLayout(new java.awt.GridBagLayout());
        java.awt.GridBagConstraints gridBagConstraints = new java.awt.GridBagConstraints();   
        gridBagConstraints.fill = java.awt.GridBagConstraints.HORIZONTAL;
        jPanelMain.add(jPanelMenuBar, gridBagConstraints);
        gridBagConstraints = new java.awt.GridBagConstraints();
        gridBagConstraints.gridx = 0;
        gridBagConstraints.gridy = 1;
        gridBagConstraints.fill = java.awt.GridBagConstraints.HORIZONTAL;
        jPanelMain.add(jPanelToolBar, gridBagConstraints);
        gridBagConstraints = new java.awt.GridBagConstraints();
        gridBagConstraints.gridx = 0;
        gridBagConstraints.gridy = 2;
        gridBagConstraints.fill = java.awt.GridBagConstraints.BOTH;
        gridBagConstraints.weightx = 1.0;
        gridBagConstraints.weighty = 1.0;
        jPanelMain.add(splitPane, gridBagConstraints);
        gridBagConstraints = new java.awt.GridBagConstraints();
        gridBagConstraints.gridx = 0;
        gridBagConstraints.gridy = 3;
        gridBagConstraints.fill = java.awt.GridBagConstraints.HORIZONTAL;
        jPanelMain.add(jPanelStatusBar, gridBagConstraints);   
        jTabbedPaneMain.insertTab(" DIRECT ", null, jPanelMain, "DIRECT", 0);
        jTabbedPaneMain.insertTab(" GLOBAL-US ", null, new JPanel(), "GLOBAL-US", 1);
        jTabbedPaneMain.insertTab(" GLOBAL-CAN ", null, new JPanel(), "GLOBAL-CAN", 2);
        this.getContentPane().add(jTabbedPaneMain, java.awt.BorderLayout.CENTER);
        this.pack();
        refreshScreen();
        this.setVisible(true);
        this.setExtendedState(this.MAXIMIZED_BOTH);Please advise.
    Thanks
    Sat'n

    Sorry to bother I got the answer, somewhere I was setting jpanel size. After removing that it worked.
    Thanks

  • 877W router with Webserver inside - Strange Problem

    Hello,
    I have a strange problem and I cannot understand what is going on here. I hope that someone could help me.
    I configured 877W router. Setup Firewall and NAT. I setup access from outside for my PCAnywhere workstation and for my Webserver. PCAnywhere and Webserver are located on a local LAN interface.
    I cannot connect to the PCAnywhere at all. Something interesting is happening with the Webserver. I can connect to some basic pages with words only, for example page has a phrase ?Hello, this is a test?. If I try to open pages with some graphics on them, it cannot find the page. I cannot connect to ports 25, 80, or 110 on the Webserver (These ports are configured on the Firewall and configured with NAT).
    Because I can connect to basic web pages, I am sure that NAT and firewall are configured correctly.
    What can it be? Any ideas?
    Thank you.
    Igor L. Kravchenko.

    Hi,
    Does telnet to the webserevr on port 80, 110 works ?
    If yes, then it is most likely be a packet size issue. O\Try reducing MSS on the LAN interface.
    int vlan1
    ip tcp adjust-mss 1400
    exit
    lower down the value, by 100 bytes till you get better results.
    HTH,
    -Kanishka

  • Cfdocument problem with textarea linebreaks

    Hi,
    I am using cfdocument to generate pdf. There are some
    <textarea> input type fields as well, and if the data of
    those textarea fields contains any linebreaks, then the generated
    pdf shows empty boxes.
    Any help is appriciated. I am using CF 8.1.31

    before you use the textarea's value in cfdocument, replace
    all CR & LF
    characters with <br />.
    there are couple of cf functions you can use to do it:
    replace(somestring, chr(10) & chr(13), "<br />",
    "all")
    rereplace(somestring, "\r\n", "<br />", "all")
    listchangedelims(somestring, "<br />", chr(10) &
    chr(13))
    [cf representation of CR and LF chars is chr(10) and chr(13);
    \r and \n
    are regexp character classes for CR and LF]
    hth
    Azadi Saryev
    Sabai-dee.com
    http://www.sabai-dee.com/

  • Tabstrip and ALV component inside filtering problem

    Hi Gurus,
    A very weird issue I have with a tasbtrip that contains three tabs, on each tab I'm embedding an ALV component, my issue is with standar Filter button of ALV. It doesn't work properly on the TAB1 and TAB2, but if we click on TAB3 the ALV is filtering properly... I've done the test deleting two tabs and with just one filtering is working fine...
    Any idea?
    Thank you!

    Hi Lekka,
    In fact I had the same NODE to three ALV component usages, so I had to differenciate each node for each component usage.
    Thank you for your help.
    Regards

  • How to avoid data selection inside the loop?

    Hello Experts,
    I am working on one performance item and I have already applied some changes to the original version.
    Now, If I compare my new program with old program, I have good improvement in performance. I am checking if I can do anything on statements that are top on the below list. I think 40% for Modify statement is acceptable after my research (Below run is updating around 20M records which is real time volume for this application).
    As we can see 34% of run time to going for one SELECT query on custom table. Take a look at below high level flow of my program to understand above select query.
    1. Select data from ZABC
    2. Select data from Variant Table (Var1, Var2, Var3 etc.., 12 in real time)
    3. Loop Variant Table
    4. Select data from X, Y, Z table for Var<n>.
    5. Populate final internal table from ZABC, X, Y and Z table
    6. Modify ZTABLE with Final Internal table data
    7. End Loop on Variant Table
    As described in the flow of the program, ZABC table data is common for all the variants and need not to fetch multiple times. Hence I am doing it only once in my program. Below is that select query:
    select rrcty ryear rbukrs racct rcntr sum( amt1) as amt1  "Like I have 32 amount fields in original query
               from zabc
                into table i_zabc
                where ryear in r_year    " Two records in ranges with I and EQ
                and rvers = '001'
                and rrcty in r_rrcty        "Three records in ranges with I and EQ
                and rldnr = 'DT'
                group by rrcty ryear rbukrs racct rcntr
                order by rrcty ryear rbukrs racct rcntr.
    ZABC table is again having huge volume of data and we are fetching millions of records with above query. That is primary reason to take long time. May be that is okay as I am already using Indexes of this table. But, I am not comfortable with it as it can reach max. memory point and through run time error. Fetch Cursor is one reliable option that I can see here, but with that, I should move ZABC selection inside the variant loop which can cause fetching ZABC data 12 times (Let me know If I am missing anything here).
    Now, third statement in my trace results, with 10% of overall time is this:
    loop at i_abc assigning <fs_abc>. 
    loop at i_table assigning <fs_table> where low <= <fs_abc>-racct and high >= <fs_abc>-racct. 
    endloop. 
    endloop. 
    6 million executions with this complex WHERE condition is causing this statement to get 3rd position in trace results. I tried below two options which are, I think, taking even more time - (I am still monitoring these options)
    1) Removed WHERE condition on LOW, HIGH and applied filter inside the loop.
    2) Removed WHERE condition on HIGH only and applied filter inside the loop.
    Any suggestions on how to proceed with ZABC selection and I_TABLE loop.
    Let me know if you have any questions on above compose.

    Since I looked at this case before, let me try some quick suggestions:
    Is table ZABC related to table X, Y and/or Z and can the selection be limited by applying those 12 selection variants?
    If yes, try a join select involving these tables that could make your step 1 obsolete and replace steps 4 and 5.
    This might also get rid of the "loop inside loop" problem. Generally, make sure that the inner table is declared as a sorted table with a key that consists of the fields as used in the WHERE-condition of the inner loop. Use secondary keys for internal tables if your ABAP release permits and the task at hand warrants it.
    Finally, look at PACKAGE SIZE option for the (join) select to reduce memory consumption.
    Thomas

  • ICloud and Outlook problems

    First of all thanks you all for the support you will give me.
    I'm running W7 64Bit on a Desktop PC.
    Outlook 2010 was installed and running perfectly.
    When I first installa the iCloud Control Panel, I got all items in the calendar disappeared and went into the new special folder iCloud/Calendar.
    This was not good but let say accepted.
    I sync my iPhone 3gc running iOS5 without any problem.
    I can see all my Calendar items and contacts within the iCloud web page. iPhone has all inside, not problem.
    This morning I turned on my PC, I run Outlook and found that the iCloud are not avaible anymore.
    Sorry for the Italian pictures to show the problem, but I'm running Italian O.S.
    The same happens with Contacts.
    Any idea how to solve this problem?
    Many thanks.

    I had that exact same problem for contacts sync with Outlook 2010, but I've managed to solve it.
    My iCloud contacts originally came pre-configured with 1 contact (me) which I deleted.  There were then no contacts at all on my iCloud contacts list.
    When I tried to configure sync with outlook via the iCloud control panel, I got the error:
    "Error: 0x80004005: Got no CardDAV principal record from principal URL request!"
    I went back into iCloud (via the iCloud website), and manually added a contact (named "Test").
    I then tried setting up sync for contacts with Outlook again using the iCloud control panel, and this time it worked perfectly.
    I expect you could try the same approach with Calendar.
    Hope this fixes it for you too!
    Henners.

  • What is Inside Wire Maintenanc​e and is it really necessary

    I'm getting Charged 9.99 a month for Inside Wire Maintenance.  I just want to be clear on what it really is. I've been reading that without this "insurance" Verizon would charge me a ridiculous amount of money to fix any problems if it were a problem with the wires inside my apartment, say or faulty jack or whatever....but if it's anything else say outisde, i heard that verizon don't charge for this.
    BUT most of the time when the tech comes, it's never a problem with anything inside my house, it's always a problem with the small box that contains the copper wire connections (not the NID box but the other small box  which i don't know the name) outside the yard, in the backyard of the building.   If it's problem with the box in the backyard of the building, then technically it's not an inside wire problem correct? so Verizon should not charge me right? 
    This means i don't really need inside wire maintenance correct?
    IF so How do i go about REmoving this service?

    Verizon charges if there is a problem inside ($90-$100) that isn't caused by their equipment. An example is if there's an issue and they have to replace your coax cable inside or change out a wall outlet. A charge would apply. If a problem is on their end such as they find out its the dvr/stb causing issues or the ONT a charge would not apply. In some cases if they show up and find no issues at all them a fee might apply.
    Is it worth the $9.99 a month? IMO no. The chances of an issue going on with something not on their end is rare.
    It would be cheaper to pay a one time fee to fix anything if ever needed then pay $9.99 a month which ends up costing more in the end.
    If you want to remove it just call them 1-800 Verizon.
    Also, considering their terms are always changing, you can also ask them about when a technician fee would apply.

Maybe you are looking for

  • How Come my iPod Purchases no longer Show up on my Comp?

    Whenever I purchased something from the iTunes Store on my iPod Touch it would always appear on our iTunes on the computer. Now it isn't doing that. I've checked for available downloads and it says they're all on the library. Could it be because my B

  • I just installed OS10.5.8 and now I can't access my network drive

    I could access it directly by going to the network window, then clicking on READYSHARE, which is the Netgear network drive with a direct USB connection, when I was running  10.4.11, but now that I have upgraded to 10.5.8, it does not show the network

  • Photoshop Elements 11 on MacBook Pro w/ Retina Display?

    I just purchased PSE11 and it is unreadable on my macbook pro w/ retina. Is there a setting to change the resolution?

  • CAL Instance missing all the times I login (region EU)

    I've created the instance and all seemed fine. I suspended and logged off. I logged in again and the instance was missing. Created again, logged out automatically by the system after some time. Logged again and the instance is missing again !!! Any i

  • Why won't my virtual shutter open?

    My virtual shutter on my iPhone 4S has suddenly stopped opening. It won't allow me to take video or pictures. I have done several hard resets and have stopped all processes and cleared all settings.(pretty much everything any forum has told me to do)