Why are my questions and posts disappearing from this  discussion forum?

it shows the number in post count on my profile but the posts and questions i leave are gone after a few times of logging in. I don't get why this is happening.

Thanks for the reply. No post nor question is in profile or my post/my questions but the number of posts actually accounts for them being made which is strange. I doubt they were moderated for being in wrong category and nothing against the terms for sure. It's only two post one question was basically this same one I just asked,but in other words. Another I commented about the ram not being so cheap for new Imacs to upgrade. Since people on the SL installs were complaining about not being able to upgrade to SL due to lack of ram and others commented how cheap memory is. I just was wondering what the problem was. That original question is nowhere to be found. Thanks though at least i know others can see my latest post. Nothing for me to lose sleep over.

Similar Messages

  • Why are TV Shows and Music Disappearing from iTunes 10.6.3?

    It started with my season pass for Walking Dead. I open iTunes mid-week last week, and they all showed a missing icon. Odd, but I'd watched them all, so I didn't really panic or even invesitgate. A couple days later, an entire album goes missing. Today, I have probably 20+ showing missing without any pattern as to why those files are missing. Some are part of complete albums, others are not. Some are .mp3 some are .aac files. I can guarantee you I did not delete them in iTunes, on my phone (whole library sync'd minus music videos) or on my iPad (limited sync).
    iTunes 10.6.3
    iTunes Match On

    Unfortunately your 4S  phone could have worked with an older iTunes that works with your old system version but Apple makes it so a new phone requires the version of iTunes current at the time of purchase.  You do not tell us what model computer you have. Go to the apple in the upper left corner, then About This Mac, then More.  If it says Intel in the processor information you can upgrade your system to 10.6.3 by purchasing a Snow Leopard DVD from Apple online ($20), then free update to 10.6.8 to run the newest iTunes.  If you have a PPC Mac (older than about 6 years) you can only run the newest iTunes by buying a newer computer.

  • Why are my pinned top sites disappearing from the top sites page in Mavericks, after they have been pinned? Very appreciative of any help. This is making me crazy.

    Why are my pinned top sites disappearing from the top sites page in Mavericks, after being pinned? Any help would be greatly appreciated.

    Why are my pinned top sites disappearing from the top sites page in Mavericks, after being pinned? Any help would be greatly appreciated.

  • Why are do my emails keep disappearing from inbox

    Why do my emails keep disappearing from my inbox?

    Actually you can set it to a 1000.  But anyway i solved my problem. I had to set the days to sync from unlimited to 30 days.

  • Why are the movie and television icons missing from my Apple TV menu?

    Why are the movie and television icons missing from my Apple TV menu?

    likely because it does not have a working connection to the internet
    check the settings and maybe reenter the wifi pasword

  • HT5312 Ok look these solutions are super complicated and I tried all of them and they don't work I just wanna buy a song ok just one song and it won't let me cause I don't have my questions and a answer from a robot is not going to help me so a real  pers

    Ok look these solutions are super complicated and I tried all of them and they don't work I just wanna buy a song ok just one song and it won't let me cause I don't have my questions and a answer from a robot is not going to help me so a real  person plz

    There are no robots here. Everyone here is a "real person", a user just like you. How about telling us what the problem is that you are experiencing when you try to buy a song? If you mean that you have forgotten your security questions, go to:
    https://appleid.apple.com/
    Click "Manage My Account", sign in, and go to the Password and Security section. If you've forgotten your answers, there should be a link just under the security questions fields where you can have a reset email sent to your Rescue email address. If the link for the email doesn't appear, as can happen if you didn't set a rescue email address or (apparently) have a .Mac email address, see the user tip created by Kappy, another user here, on how to proceed:
    https://discussions.apple.com/docs/DOC-4551
    Regards.

  • Why has the FaceTime icon / app disappeared from my iPhone 5 and how do I get it to show again?

    Why has the FaceTime icon / app disappeared from my phone and how do I get it back?

    Using FaceTime
    http://support.apple.com/kb/ht4319
    Troubleshooting FaceTime
      http://support.apple.com/kb/TS3367

  • Explanation - Why are IAS 9i and an RDBMS both needed ?

    Why are IAS 9i and an RDBMS both needed ? After all, IAS 8I/9I does contain a "database" in it -- but Oracle calls it a "data cache" !!
    Here's why ...
    The IAS 8I/9I "data cache" is intended to be a "performance enhancment" mechanism to avoid network round trips to the back end rdbms (called the 'origin' database in IAS terminology) for "rarely changing" data or application code accessed/used in the IAS 8I/9I mid-tier.
    The IAS "data cache" was initially extracted from rdbms 8.1.6 to use in IAS 8i (aka IAS 1.0.0 or 1.0.1) and now rdbms 8.1.7 to use in IAS 9i (formerly referred to as IAS 1.0.2).
    This was because the complete architecture and functionality needed to provide the IAS 9i's "performance enhancing read only" cache functionality already exists in the oracle 8i rdbms.
    (talk about o-o wanting to have high reusability !!)
    How about a practical application of why would you do this ??
    Think of the web site activity of a major online order system, for example, a ".com" that sells books. We can all think of the famous ones who would be ideal users of this type of design.
    Most of the transaction activity in an online order system is customers "browsing" the product catalog, looking at the
    descriptions of the books they might consider to buy. When a customer identifies a desired book, the customer can place an order.
    This typical customer behavior looks at the description for each book which is "rarely changing" information that is normally accessed in a "read only" mode.
    To improve performance for this online order system, the "rarely changing" information can be stored (or "cached") on the mid-tier in IAS 8i/9i's "data cache".
    How do this improve performance ??
    With the information available in the mid-tier "data cache", network roundtrips by IAS 8i/9I applications to the 'origin' rdbms are avoided, reducing the workload on the network and the 'origin' rdbms.
    Why do i still need a back-end or 'origin' rdbms along with ias 9i ?
    You still need the 'origin" database as the "master repository" for your books, their inventory system, and orders placed with your business.
    You also have the other necessary business systems they may or may not take advantage of the IAS design -- like shipping, payroll, Human Resources, etc.
    What happens if the data changes ?
    I kept repeating "read only" -- so - the next question is what do you do with "new or changing" data - like placing an order or updating the inventory ?
    Since the "master copy" of the information is retained on the origin rdbms, then all changes will occur there.
    When a new book is added or an existing book's information is updated or a book is dropped from the inventory, these changes are applied to the origin database.
    This information is then "refreshed" on the IAS 8I/9I "data cache" using the "management policies" available within IAS 8I/9I.
    These policies controls how and when to "refresh" the IAS 8I/9I data cache.
    null

    In the following document:
    1) "Oracle9i Application Server Technical White Paper" located at :
    http://technet.oracle.com/products/ias/pdf/9ias_102.pdf
    don -- right
    At the bottom of page 16 and the top of page 17 is the following....
    'The Java engine inside Oracle9i AS is the Oracle JVM.'....
    don -- right --- new name is Enterprise Java Engine (EJE)
    'The Oracle JVM is integrated in Oracle9i AS, giving it the same advantages and benefits available to the Oracle Database ...'. '
    don -- almost right -- you left the key phrase off of it ...
    it is completed as follows : (CAPS - are mine for emphasis)
    'The Oracle JVM is integrated in Oracle9i AS, giving it the same advantages and benefits available to the Oracle Database FOR EXECUTING JAVA BASED APPLICATIONS ON THE SERVER'. '
    STEVE --
    that's why i made the comment in the previous post which i've copied below :
    I don't think of it as a "database" even though some literature might refer to it as one in IAS 9i standard edition !!
    The term "database" has a lot of extra functions with it that are not in IAS 8i/9i!!
    for example, most RDBMS's have :
    1) updateable tables, etc.
    2) backup and recovery of data requirements
    3) etc.
    That's what makes the EJE in IAS different from an RDBMS -- the extra rdbms functrions are not needed...
    That's why I think of it as a "Java Code Container" that holds the Oracle Enterprise Java Engine(EJE) in it. I was stuck on this also - now i can mentally exclude all of that extra functionality by calling it a "java code container" and not thinking of it as a "database".
    Since Oracle JVM is the common Java environment for both the Oracle database and Oracle9i AS,...'.
    The above gave me the impression that 9i AS has a JVM independent of a database.
    don -- 9i AS has a JVM independent of a database -- they are the same item -- a "stripped down" database or as i call it a "Java Code Container" that holds the Oracle Enterprise Java Engine(EJE) -- formerly called the oracle 8i jvm -- in it.
    i think the term "database" in the literature is being used to emphasize where it came from (stable oracle 8i -- as opposed to totally new technology)
    but
    i personally think the term "database" implies to many people, it is a "fully functional rdbms" ... so they assume they don't need a back end -- or in ias terms -- an 'origin' rdbms.
    However -- i think this is where the confusion is ..
    as people understand the differences between ias and rdbms, they soon realize they must have an rdbms.
    However, the administrative instructions (that deal with setting up OSE) seem to point that the JVM is in a database.
    don -- right -- it is a "stripped down" database or a a "Java Code Container" as i call it.
    you still need to deploy the java code (servlets, jsp's, ejb's, corba, and java stored procs) to it.
    The command line functions that you use to do that with the 8.1.7 rdbms -- still apply.
    Commands like :
    loadjava, deployejb, dropjava, sess_sh, publishjsp, publishservlet, etc.
    Note :
    Obviously ias 8i "EJE" or ORACLE 8i JVM (the old name), is based upon the rdbms 816 functions (no OSE in it), so you can't deploy servlets and jsp's to the ias 8i EJE just like you can't to the 816 rdbms.
    I do find this subject (where is the JVM located) very confusing.
    don - right -- but you are picking it up -- hang in there !!
    Steve you asked --
    Don - is the EJE (OSE/OJVM) implemented through a database?
    'The Java engine inside Oracle9i AS is the Oracle JVM.'....
    don - right
    keep in mind from a java perspective -- the EJE is a "Stripped down" database that acts like a java code container that you connect to -- just like in 817 --- so you can deploy your code to it.
    it's also a jvm -- and you execute your deployed java code in it -- just like in 817.
    i hope this helps and i didn't confuse this topic further for you ...

  • Why did my iPhoto and Mail disappear?

    Why did my iPhoto and Mail disappear?  I also lost and had to reload Quicken.  This all happened in three days.

    The applications are gone.  First Quicken disappeared and I reloaded it from the disk yesterday. Today Mail, Contacts and iPhoto disappeared.  No one else uses my computer and I've had no other crashes and I haven't made any changes.  I don't think anything else is missing.  Apple is sending me disks so I can reload the missing stuff but they wouldn't speculate on why it happened nor whether it will continue.  Thanks for helping.

  • Attempted to download a movie and movie disappears from library.

    Attempted to download a movie, looks complete, but unable to sync to iPod... restart iTunes and movie disappears from library.  No files in media folder and iTunes store thinks that it has been downloaded already.  Worked with iTunes account people who were very responsive, but after multiple resends on their side, the problem continues and they suggest a local problem on my side.  Thoughts?

    Hey Jerry... I ended up submitting a formal feedback issue and someone got back to me fairly quickly.  Responses are typically from an offshore team I assume, since they happen at night.  The email address that I have been corresponding with is [email protected] .  I'll keep this string posted if I make any progress... Good luck!

  • Why are my clip marker comments disappearing?

    I'm coming from Final Cut Pro, so part of my problem might be my workflow, but: Why are my clip marker comments disappearing? I log a lot of interviews and usually log the subject's responses in clip markers, but my comments are disappearing the second I select a different clip! Any reason why this might be? They stick around when I do sequence comments, but they disappear when I add comments to my clip markers when viewing in the source window. Thanks!

    Jim, that's encouraging to hear. Unfortunately, I'm trying to run it on a mac (Lion). Are you finding that most complaints are coming from people running it on macs?
    Believe me, I want to get behing Adobe, but I've restarted more than one project in Avid after finding Premiere super glitchy and inconsistent in it's behaviour.

  • Why are my iTunes and iPhoto crashing every time I try to open them?

    Why are my iphoto and itunes crashing every time I open them?  This is a new problem on my Mac Mini.  Have the latest software on my Mac Mini and the latest iLife sotware.  My mac mini is about 5 years old, always kept up to date.
    Processor  2 GHz Intel Core 2 Duo
    Memory  2 GB 667 MHz DDR2 SDRAM
    Graphics  Intel GMA 950 64 MB
    Software  Mac OS X Lion 10.7.3 (11D50b)

    Hello Majorie,
    Could be many things, we should start with this...
    "Try Disk Utility
    1. Insert the Mac OS X Install disc, then restart the computer while holding the C key.
    2. When your computer finishes starting up from the disc, choose Disk Utility from the Installer menu at the top of the screen. (In Mac OS X 10.4 or later, you must select your language first.)
    Important: Do not click Continue in the first screen of the Installer. If you do, you must restart from the disc again to access Disk Utility.
    3. Click the First Aid tab.
    4. Select your Mac OS X volume.
    5. Click Repair. Disk Utility checks and repairs the disk."
    http://docs.info.apple.com/article.html?artnum=106214
    Then try a Safe Boot, (holding Shift key down at bootup), run Disk Utility in Applications>Utilities, then highlight your drive, click on Repair Permissions, reboot when it completes.
    (Safe boot may stay on the gray radian for a long time, let it go, it's trying to repair the Hard Drive.)
    Also, how much Free Space is on your Hard Drive?
    One way to test is to 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, Test for problem in Safe Mode...
    PS. Safe boot may stay on the gray radian for a long time, let it go, it's trying to repair the Hard Drive
    Reboot, test again.
    If it only does it in Regular Boot, then it could be some hardware problem like Video card, (Quartz is turned off in Safe Mode), or Airport, or 3rd party add-on, Check System Preferences>Accounts>Login Items window to see if it or something relevant is listed.
    Check the System Preferences>Other Row, for 3rd party Pref Panes.

  • Why are my iCal calendars randomly disappearing with all their corresponding events?

    Why are my ical calendars randonly disappearing? I updated to Maverick, but one disappeared before I did that update. I have 10 different calendars, each identified by its own color, example: "work" calendar is yellow, my personal calendar is green. Every month or so, one randomly disappears without my even being in the program or changing anything. Along with the calendar ALL its events are gone as well. None of those events show on my iphone, imac, ipad or macboook pro. They just vanish, along with many appointments I have scheduled, and their directions and info. Im SO FRUSTRATED! Im ready to go back to paper.

    Got it fixed cal got set for icloud on my iphone. now I can choose them in itunes.

  • Some messages are disappearing from this forum

    Hello friends at www.oracle.com ,
    some messages seems to disappear from this forum, I've just read 2 answers to a message I've posted these days and they disappeared when I answered. What's happening?
    If I'm doing something wrong, I want to be advised of this. Even my personal e-mail can be used for explanations - but I need to know what's the problem.
    Franklin Gongalves Jr.
    [email protected]

    Open Mail.
    From the Mail menu, select Preferences. Select the Accounts icon and click on your email account under the Description heading.  The Account Information appears.
    Click on the Advanced tab.
    Make sure that Remove copy from server after retrieving a message: is not checked. Click on the field below and select after one day, or after one week, etc.
    Close the Accounts box to return to the email program.

  • Hot to Make HTTPS GET and POST calls from ExtendScript

    We are currently porting our ActionScript code to ExtendScript (JavaScript).
    We performed HTTPS GET and POST calls from ActionScript with no problem. I can find no way to make HTTPS calls from ExtendScript. We tried jQuery, but after hours of work we can't get the ExtendScript engine to work with it - even a very, very old version of jQuery.
    What do I do?
    TIA,
    mlavie

    Adobe needs a "Want Answers" button like Quora has because I would press that button on this post.

Maybe you are looking for

  • Voice Memos missing in iTunes

    I have an ipod touch 4g. I have about 10 voice memos on my itouch, some important that I don't want to loose. They are all visible and playable on the itouch. However, with the device connected to itunes, under my device there are only 3 voice memos

  • How to create dynamic ON CHANGE statement? Please help!

    Hi Experts,    I have a requirement where my ON CHANGE criteria is dynamic. It is based on wa_charakeyfrmt-value which I am reading from a table. If it is 'DO' then ON CHANGE will have wa_errtabcopy-DO. Else if it is 'LI' then ON CHANGE will have wa_

  • Adding extra column in FSG

    How can we add extra column beyond 20 in FSG report ?Is it possible through standard functionality ? Regards Jogendra

  • Split or separate photo pages?

    I'm trying to do something that I would think should be fairly simple and not too unreasonable. I made a photo page, and would like to have it split into sections so I can have a heading above each one, e.g., cool pics pic1a pic2a pic3a pic4a not so

  • Two Build Issues

    1.  I always get the attached message when building the project.  Is this because there is a breakpoint set in the code somewhere?  2.  Sometimes when building the project, the executable fails to run because it says it can't find two .ctl files when