Bootcamp, running into multiple issues....

As a little bit of backstory, I bought a MacBook (late 2009 edition with Snow Leopard) because I was having issues with my old Windows XP PC desktop, which was invaded with trojans and viruses. I had to delete everything, start up from scratch and wipe the disc clean. Not pleasant.
In the summer of 2010 I was convinced to buy a Macbook because it didn't need to be checked quite as often as a PC computer. I was astounded by the speed in which it booted up since I never had a custom built PC that contained optimized performance. Mostly however I had only used the Macbook as a means of searching the web and to use it to complete college assignments.
It wasn't until last year that I decided I wanted to get Windows onto my Mac, but being unemployed and with no job, it was simply not an option, because I needed to get bills done on time. Fast forward to this year, and after months of frantic job searching I finally landed a job. Now with a steady income coming in I felt it was time to get Windows onto my Mac.
Sadly it's easier said than done. I wasn't even aware of Mountain Lion and Mavericks until later this year, but I realized that upgrading to those systems required more than a simple DVD disk.  Since then it's been a obstacle course, and while I've done a lot of research on bootcamp files for the various Mac versions, there is still lots I don't know about. Which leads me to this problem.
Since my Macintosh HD drive only holds 250 GB, I felt it was needed to get rid of some used space. After deleting various games that were left untouched the last couple of years, I have 150 GB of free space. Problem is, I cannot partition. Why? Because some OS X files cannot be moved.
So I bought a Windows 7 Home Premium 64-bit disk off of Amazon, and when I realized I needed a Snow Leopard installation disk, I bought that too. I now just spend between $140-150 in software, which isn't too bad I guess. Turns out that the Macintosh HD drive was corrupt, so I restarted the Macbook using the Mac OS X installation disc to access Disk Utility. After verifying and repairing disk (I got the confirmation from the green text), I assumed I can partition. Nope. Same issue pops up. So I realized I needed to get rid of free space, so I run Disk Utility off of the operation system and used the delete free space (zero) option. After a hour it's finished. Make another attempt at partitioning. Failed.
Now I don't know what to do. The steps involved require an external drive and an internal drive, along with a program named Carbon Copy Cleaner (CCC). So what am I supposed to do? There are options to unmount and make new disc images on Disk Utility, do I just run that and go from there? I'm very confused at the moment.

This would of been nice if I had known all of this before I even attempted to make a partition, so now I need an external hard drive to get past the problem of the Mac OS X files not moving. I thought I only needed a Mac installation disc and the Windows 7 install disc but it turns out I was wrong.
As for external hard drives, Seagate Backup Plus (1 TB) looks pretty good, that's more than enough to make a backup. I spent the past few days doing a lot of research on bootcamp. Since the Mac installation disc is actually 10.6.3, I may still have to have the bootcamp drivers (versions 3.1-3.3) to install onto the Windows partition, along with Apple Software update so the features actually work with Windows.
Very frustrating, costing me over $210 just to try to partition, if this doesn't work then I know it's a bad hard drive. Probably will have to take the Macbook in to an Apple store and have them look at it. The external hard drive itself will be good purely for backup. I have to wonder if all this is simply worth the trouble, considering I've toyed with emulators in the past, which tend to fail on occasion.
Repaired disc, erased free space in disc utility, etc. So I guess I have to wait.

Similar Messages

  • I have 2 sons that were sharing one account and now I want to separate them, will I run into any issues ?

    I have twin sons and my wife sharing one itunes account and now from what a relative told me I should split them up since face time from my sons itouch is showing up on my wife's iphone ... so I started a new itunes account for all 3 of them, and now I want to sync each of their devices with their own accounts, before they had all the same music, etc... will I run into any issues when syncing each of their devices... meaning will I see a message like "this device is synced with another account and then it will say if I proceed it will erase what is on the device" ... ??  will I see this or will it just sync as normal
    Thanks

    You can't merge accounts or transfer iTunes purchases from one Apple ID to another: but there is no problem about using two IDs.
    Use your iCloud ID for iCloud for syncing email, contacts, calendars, bookmarks, and PhotoStream.
    Use your other Apple ID as before for iTunes, iTunes in the Cloud and iTunes Match.
    There's no conflict about doing this, and you won't even notice as Keychain will log you in with the correct ID in each case. It's also better security not to have your iTunes login also your email address, given the number of complaints about hacked iTunes accounts.

  • A simple app to secure coldfusion pages - Running into an issue with Session

    Hello, I am testing out how to protect pages in coldfusion and have run into an issue when attempting to create a process by which users can log out.
    Essentially, I have three pages:
    Page A - The form that submits to Page B
    Page B - That checks the form.username and form.password against a database (works fine)
    Page C - Logout page (Which is where I am having an issue).
    Page C throws a "variable Session is undefined" error
    Here is the code on Page C:
    <cfset StructClear(Session)>
    <cflocation url="index.cfm">
    Here is the code on Page B:
    <cfif NOT IsDefined ("form.username")>
    <cflocation url="index.cfm" addtoken="No">
    </cfif>
    <cfquery name="test" datasource="cfdb">
    SELECT * FROM USERS
    WHERE USERNAME = '#FORM.username#'
    AND PASSWORD = '#FORM.password#'
    </cfquery>
    <!---<CFSET Session.LoggedIn = "1">
    <CFSET Session.FirstName = "#test.FirstName#">--->
    <CFIF test.RecordCount IS 0>
    <cflocation url="index.cfm" addtoken="No">
    <CFSET StructClear(Session)>
    <cfelse>
    <CFSET Session.LoggedIn = "1">
    <!---<cflocation url="test.cfm" addtoken="No">--->
    </cfif>
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>Untitled Document</title>
    </head>
    <body>
    <p><a href="logout.cfm">Log Out</a></p>
    <p> </p>
    <p> </p>
    <p><br>
      This content is protected.
    </p>
    </body>
    </html>
    As you can see, nothing fancy
    Now, I thought that the Session variable could be accessed by any page within a given browser instance, but I am obviously wrong.
    What do I need to do for Page C (my logout page to be able to access the session variable).
    Any guidance is greatly appreciated!

    1.
    “Variable Session is undefined” error comes up when you try to manipulate a session variable which does not exist, as at that point in time. To take care of possible empty session structures, it is good practice to check first if your session is defined.
    So you will have something like:
    <cfif isDefined("session")>
    <cfset StructClear(Session) />
    <cfelse>
    <cflocation url="index.cfm">
    </cfif>
    2.
    To enable you access your session variables from any page in your application, you need to enable session management in your Application.cfm or Application.cfc.
    cfm   <cfapplication sessionmanagement="Yes" />
    cfc        <cfcomponent>
    <cfset THIS.SessionManagement = "Yes" />
    </cfcomponent>
    Reference…http://help.adobe.com/en_US/ColdFusion/9.0/Developing/WSc3ff6d0ea77859461172e0811cbec22c24 -7c48.html

  • Has anyone run into an issue with their hotmail account being hacked on ios 6 ?

    Im noticing that I am getting strange MALIER DEAMON emailsadvising me that my email to whomever could not be sent.I have preiously run into this issue and it turned out my yahoo account had been hacked when I began getting those messages. Has this happened to anyone else?

    Try this:
    Go to System Preferences - Bluetooth. Delete the keyboard from the list of devices by pressing the "-" button. Take the batteries out of the keyboard and reinsert them. In Bluetooth Preferences press the '+" button to add the new device. If the keyboard begins to pair, click the word "pair" and type in the passcode. Press return. The keyboard is now paired.
    If the mouse is not pairing, try this: shut down the computer completely, unplug any USB mice, then turn off the power to the bluetooth mouse.  ONce the computer starts up again, wait for the pop-up looking for a mouse.  Turn on the power to the bluetooth mouse.  It should work normally now.

  • When downloading the trial, has anyone run into download issues?

    when downloading the trial, has anyone run into download issues?

    I remembered we have weird permission issues at work. Somewhere between my Home Windows 8 machine(horrible permissions issues with network), my home mac, email and my work computer, some permission got out of whack. The workaround for this was copying the file to my desktop, back to the exact same spot on the network. This resolved all issues.

  • Battlefield 1942 Anthology issues... anyone run into same issues???

    Alright peep's. It's that time when I look for a little insight.
    I've got a stackload of PC games I said I was going to knock out when I had time. The issue I'm having is regarding Battlefield 1942. I got the boxset with all the expansions a few months back. I installed it and it went through properly. I configure the game to run with everything turned on and maxxed out, it begins to load. The issue I have then is when I try and select a spawning point, the game just locks up where I need to do a hard reset. I've got the latest update preinstalled even tried bringing down the resolution. The game actually worked once and was playable @ 1024 x 768 for about 8 minutes, then the game locked up again. I tried factory defaults and got no where. I recall reading somewhere else that some older games have issues with SLi. I just can't find that article with games listed. Is anyone running BF 1942 or has it installed without any issues with an SLi rig??? Any insight will be appreciated. I'd like to play a former game of the year on my PC and knock it out amongst my "Games to finish" list.
    BTW, since I couldn't get that game to run I installed Half-Life 2. Sick friggin' game. Awesome. Knocked it out in four nights. I think I'll get the expansion when it comes out in May. I'm now playing Star Wars: Republic Commando. Not bad for a FPS but I've played better.
    LPB

    Two things:
    1- I understand that this is a HARDWARE based messageboard. All other software and games work A-O-K. This is an exception so it would point to some sort of possible HARDWARE conflict with older SOFTWARE now, huh???
    2- Thermaltake 680w with SLi connectors.
    Realistcally, I'm not trying to be a smart a$$. I brought it up here because I know CoD is a popular game that many have gone through it like water. I posted because I've seen others with driver issues, software and/or OS conflicts, uncertainities, etc., and I laid out some wisdom and advice. Think I'm lying? Try reading a few boards regarding the K8N Diamond Plus, Sound Blaster XFi, video card issues, RAM questions, heck even overclocking. I'm still leaving feedback on EVGA's messageboard and I don't even own their motherboard anymore.
    All in all, I'm looking for help and a solution just like everyone else. And if you don't think that me being adult enough to ask for help then please just don't post any bulletins or feedback since I guess you get things to run flawlessly and you need no help whatsoever.
    And to others who actually made a positive contribution, thank you genuinely.
    LPB

  • Pages 5.0 can't open iCloud documents.  Has anybody run into this issue?

    Here's the story:
    I upgraded to Pages 5.0 and can't open .pages documents saved in icloud.
    It does not seem to be a file incompatibility.  I am creating files in Pages for Mac, saving them to iCloud.  They are immediately unable to re-open. 
    I only get a message saying:  The file “{file name}.pages” couldn’t be opened.
    Documents can be created without issue.  If they are saved to my local drive, I can open them again.
    Obviously, this makes it very difficult to use Pages with any other devices because document syncing is impossible.
    Details on my system:
    Mid-2010 13" Macbook pro
    2.4 Ghz core 2 duo
    8 GB ram
    OS X 10.9

    I was also experiencing same issues without being to open Older Pages Docs from iCloud in Pages 5.  I followed suneson Recommendation and process to the T...    Works perfectly. 
    Important to note you do have to do the second part in order for it to work completely.  I tested just the first half and still had issues.  Once Disabling and Re-enabling Documents and Clearing Cache - works perfectly now.  Thanks Suneson!
    Suneson process:
    Move all of your iCloud documents to a local folder (offline).
    Go to the iCloud preference pane i System Preferences.
    Click Manage... and delete all Pages data.
    The Next Step is required:
    Go back to iCloud preferences and uncheck "Documents & Data".
    Check it again.
    Delete ~/Library/Caches/--anything related to Pages or iWork--

  • Hey guys I have a mid-2010 MacBook Pro and I am attempting to replace the Hard drive with an SSD and have run into an issue

    So after installing the SSD, I tried rebooting into recovery mode and erasing it and was successful, I think at least. Now I am trying to reinstall Yosemite and everytime I go to do it, it says an error has occurred. Does anyone know what I am doing wrong or is there just a step that I am missing? Thanks

    https://eshop.macsales.com/tech_center/index.cfm?page=HDDppcintelformat/HDDppcin telformat.html
    Start up the macbook and hold down CMD+R. Then choose disk utility from the drop down menu.  Partition the harddrive as you would normally using "MacOS Extended Journaled"  GUID partition table. 1 partition or more (not current.)

  • Thanks for the upgrade to Firefox 4! Unfortunately, you don't say anywhere that it's not compatible with OSX 10.4. Might want to fix that so that other users don't run into this issue.

    After the latest upgrade to 3.whatever, Firefox asked if I'd like to upgrade to 4.0. I said yes, assuming (since Firefox has always been compatible before) that it'd install and work. It didn't. Why? Because Firefox is no longer supporting OSX 10.4, apparently. This should probably be noted SOMEWHERE so that trusting people like me don't screw up our existing Firefox.

    I looked for a link to the system requirements page before I downloaded to my PowerPC Mac, but I couldn't see it anywhere.
    However, I saw that Mozilla was bragging about supporting Windows XP whereas the new IE 9 did not. One would assume that if Mozilla was bragging about supporting that old Windows platform, they would also support a Mac platform of the same vintage.
    I did not assume wisely. I am very disappointed in the Mozilla team.
    For the record, I am running the latest version update of Leopard (10.5.?) on my PowerBook G4.

  • Admin server running into issues in SOA.

    Hi All,
    Can anyone help me.
    I have recently  installed Oracle SOA suite on Linux box. While I was running the Admin Server I am running into Some issues. Though Admin Server is running fine but all that I am running out of memory because of the Logs. Can anyone help me find the issue and solve. I can do some other arrangements to save memory. IF you could help me for any issue I would be so happy. One more thing SOA suite installed on Admin server instead soa_server1 or soa_server2. I still need to SOA-infra setup onto soa_server1 or soa_server2(on different remote machines) [if this info could help also.]
    This issue is repeating every 5 secs.
    <Jul 16, 2013 5:35:21 PM EDT> <Error> <oracle.soa.mediator.common.listener> <BEA-000000> <DBLocker caught exception while retrieving locked messages. Will retry retrieval after 2 seconds
    Exception [TOPLINK-4002] (Oracle TopLink - 11g Release 1 (11.1.1.6.0) (Build 111018)): oracle.toplink.exceptions.DatabaseException
    Internal Exception: java.sql.SQLSyntaxErrorException: ORA-00904: "TENANT_ID": invalid identifier
    Error Code: 904
    Call: SELECT CASE_ID, CONTAINER_ID, DUMMY1, MSG_ID, COMPONENT_DN, OPERATION, CREATION_DATE, PRIORITY, COMPONENT_STATUS, QNAME_LOCAL_PART, CASE_INFO, QNAME_NAMESPACE, LOCK_TIME, SOURCE_URI, TENANT_ID, INSTANCE_CREATED, IS_EVENT, STATUS FROM MEDIATOR_DEFERRED_MESSAGE WHERE (((STATUS = ?) AND (LOCK_TIME = ?)) AND (CONTAINER_ID = ?))
            bind => [1, 2013-07-16 17:23:12.814, A8424220EE5D11E2BF9C6D1C72885086]
    Query: ReadAllQuery(oracle.tip.mediator.common.persistence.MediatorDeferredMessage)
            at oracle.toplink.exceptions.DatabaseException.sqlException(DatabaseException.java:305)
            at oracle.toplink.internal.databaseaccess.DatabaseAccessor.basicExecuteCall(DatabaseAccessor.java:614)
            at oracle.toplink.internal.databaseaccess.DatabaseAccessor.executeCall(DatabaseAccessor.java:468)
            at oracle.toplink.threetier.ServerSession.executeCall(ServerSession.java:447)
            at oracle.toplink.internal.sessions.IsolatedClientSession.executeCall(IsolatedClientSession.java:117)
            at oracle.toplink.internal.queryframework.DatasourceCallQueryMechanism.executeCall(DatasourceCallQueryMechanism.java:193)
            at oracle.toplink.internal.queryframework.DatasourceCallQueryMechanism.executeCall(DatasourceCallQueryMechanism.java:179)
            at oracle.toplink.internal.queryframework.DatasourceCallQueryMechanism.executeSelectCall(DatasourceCallQueryMechanism.java:250)
            at oracle.toplink.internal.queryframework.DatasourceCallQueryMechanism.selectAllRows(DatasourceCallQueryMechanism.java:583)
            at oracle.toplink.internal.queryframework.ExpressionQueryMechanism.selectAllRowsFromTable(ExpressionQueryMechanism.java:2500)
            at oracle.toplink.internal.queryframework.ExpressionQueryMechanism.selectAllRows(ExpressionQueryMechanism.java:2458)
            at oracle.toplink.queryframework.ReadAllQuery.executeObjectLevelReadQuery(ReadAllQuery.java:467)
            at oracle.toplink.queryframework.ObjectLevelReadQuery.executeDatabaseQuery(ObjectLevelReadQuery.java:874)
            at oracle.toplink.queryframework.DatabaseQuery.execute(DatabaseQuery.java:679)
            at oracle.toplink.queryframework.ObjectLevelReadQuery.execute(ObjectLevelReadQuery.java:835)
            at oracle.toplink.queryframework.ReadAllQuery.execute(ReadAllQuery.java:445)
            at oracle.toplink.internal.sessions.AbstractSession.internalExecuteQuery(AbstractSession.java:2265)
            at oracle.toplink.internal.sessions.AbstractSession.executeQuery(AbstractSession.java:1079)
            at oracle.toplink.internal.sessions.AbstractSession.executeQuery(AbstractSession.java:1063)
            at oracle.toplink.internal.sessions.AbstractSession.executeQuery(AbstractSession.java:1037)
            at oracle.toplink.internal.sessions.AbstractSession.executeQuery(AbstractSession.java:1009)
            at oracle.tip.mediator.dispatch.db.DBAccess.getMessageFromDB(DBAccess.java:800)
            at oracle.tip.mediator.dispatch.db.DBAccess.getDeferredMessages(DBAccess.java:821)
            at oracle.tip.mediator.dispatch.db.DeferredDBLocker.getLockedMessages(DeferredDBLocker.java:153)
            at oracle.tip.mediator.common.listener.DBLocker.getLockedMessages(DBLocker.java:173)
            at oracle.tip.mediator.common.listener.DBLocker.run(DBLocker.java:93)
            at oracle.integration.platform.blocks.executor.WorkManagerExecutor$1.run(WorkManagerExecutor.java:120)
            at weblogic.work.j2ee.J2EEWorkManager$WorkWithListener.run(J2EEWorkManager.java:184)
            at weblogic.work.DaemonWorkThread.run(DaemonWorkThread.java:30)
    Caused By: java.sql.SQLSyntaxErrorException: ORA-00904: "TENANT_ID": invalid identifier
            at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:462)
            at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:405)
            at oracle.jdbc.driver.T4C8Oall.processError(T4C8Oall.java:931)
            at oracle.jdbc.driver.T4CTTIfun.receive(T4CTTIfun.java:481)
            at oracle.jdbc.driver.T4CTTIfun.doRPC(T4CTTIfun.java:205)
            at oracle.jdbc.driver.T4C8Oall.doOALL(T4C8Oall.java:548)
            at oracle.jdbc.driver.T4CPreparedStatement.doOall8(T4CPreparedStatement.java:217)
            at oracle.jdbc.driver.T4CPreparedStatement.executeForDescribe(T4CPreparedStatement.java:947)
            at oracle.jdbc.driver.OracleStatement.executeMaybeDescribe(OracleStatement.java:1283)
            at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:1441)
            at oracle.jdbc.driver.OraclePreparedStatement.executeInternal(OraclePreparedStatement.java:3769)
            at oracle.jdbc.driver.OraclePreparedStatement.executeQuery(OraclePreparedStatement.java:3823)
            at oracle.jdbc.driver.OraclePreparedStatementWrapper.executeQuery(OraclePreparedStatementWrapper.java:1671)
            at weblogic.jdbc.wrapper.PreparedStatement.executeQuery(PreparedStatement.java:135)
            at oracle.toplink.internal.databaseaccess.DatabaseAccessor.executeSelect(DatabaseAccessor.java:814)
            at oracle.toplink.internal.databaseaccess.DatabaseAccessor.basicExecuteCall(DatabaseAccessor.java:540)
            at oracle.toplink.internal.databaseaccess.DatabaseAccessor.executeCall(DatabaseAccessor.java:468)
            at oracle.toplink.threetier.ServerSession.executeCall(ServerSession.java:447)
            at oracle.toplink.internal.sessions.IsolatedClientSession.executeCall(IsolatedClientSession.java:117)
            at oracle.toplink.internal.queryframework.DatasourceCallQueryMechanism.executeCall(DatasourceCallQueryMechanism.java:193)
            at oracle.toplink.internal.queryframework.DatasourceCallQueryMechanism.executeCall(DatasourceCallQueryMechanism.java:179)
            at oracle.toplink.internal.queryframework.DatasourceCallQueryMechanism.executeSelectCall(DatasourceCallQueryMechanism.java:250)
            at oracle.toplink.internal.queryframework.DatasourceCallQueryMechanism.selectAllRows(DatasourceCallQueryMechanism.java:583)
            at oracle.toplink.internal.queryframework.ExpressionQueryMechanism.selectAllRowsFromTable(ExpressionQueryMechanism.java:2500)
            at oracle.toplink.internal.queryframework.ExpressionQueryMechanism.selectAllRows(ExpressionQueryMechanism.java:2458)
            at oracle.toplink.queryframework.ReadAllQuery.executeObjectLevelReadQuery(ReadAllQuery.java:467)
            at oracle.toplink.queryframework.ObjectLevelReadQuery.executeDatabaseQuery(ObjectLevelReadQuery.java:874)
            at oracle.toplink.queryframework.DatabaseQuery.execute(DatabaseQuery.java:679)
            at oracle.toplink.queryframework.ObjectLevelReadQuery.execute(ObjectLevelReadQuery.java:835)
            at oracle.toplink.queryframework.ReadAllQuery.execute(ReadAllQuery.java:445)
            at oracle.toplink.internal.sessions.AbstractSession.internalExecuteQuery(AbstractSession.java:2265)
            at oracle.toplink.internal.sessions.AbstractSession.executeQuery(AbstractSession.java:1079)
            at oracle.toplink.internal.sessions.AbstractSession.executeQuery(AbstractSession.java:1063)
            at oracle.toplink.internal.sessions.AbstractSession.executeQuery(AbstractSession.java:1037)
            at oracle.toplink.internal.sessions.AbstractSession.executeQuery(AbstractSession.java:1009)
            at oracle.tip.mediator.dispatch.db.DBAccess.getMessageFromDB(DBAccess.java:800)
            at oracle.tip.mediator.dispatch.db.DBAccess.getDeferredMessages(DBAccess.java:821)
            at oracle.tip.mediator.dispatch.db.DeferredDBLocker.getLockedMessages(DeferredDBLocker.java:153)
            at oracle.tip.mediator.common.listener.DBLocker.getLockedMessages(DBLocker.java:173)
            at oracle.tip.mediator.common.listener.DBLocker.run(DBLocker.java:93)
            at oracle.integration.platform.blocks.executor.WorkManagerExecutor$1.run(WorkManagerExecutor.java:120)
            at weblogic.work.j2ee.J2EEWorkManager$WorkWithListener.run(J2EEWorkManager.java:184)
            at weblogic.work.DaemonWorkThread.run(DaemonWorkThread.java:30)
    Thank you all.

    Hi Ravi,
    You are much appreciated for your valuable time and knowledge..
    Then delete old domain. Its corrupted. You can clean it by manually updating jdbc datasource files under config/jdbc folder. But I will NOT recommend this. Just delete this domain folder and from user_projects/appliations also delete the folder with same domain name.
    Create a brand new domain using config wizard. Select SOA or BPM whichever you want, and also Enterprise Manager. Then at database, carefully select 11.7 Schemas that you created earlier.
    Though I have not created a new domain. (still Ravi is correct)
    Issues were resolved by updating the new RCU schema with latest version of RCU 11.1.1.7.
    Here What I did is ran the rcu.bat on my local and connected to remote DB.created new schema for each components namely soa-infra,orabam,owsm,MDS. with a new prefix.
    I did not drop the previous schema for SOA.
    went to  *Domain-home*/config/jdbc/
    took the back up for all the *.xml files excluding read.xml(anyway its just an info file).
    Now edited the schema component. Someone might change their schema component password. but my suggestion is not to give any new passwords to the schema components while creating new RCU schema for SOA.
    What I did is changed the component passwords (I know how to mess up and also know how to fix if it's messed up) and ended up with errors.
    So I have now started the server with the command
    ./startWebLogic.sh -Dweblogic.configuration.schemaValidationEnabled=false
    Still I had errors coming up. But I least bothered about the errors because these errors can be solved once get to know what you are doing.
    My server started. Happy then
    Went to admin-url:port/console
    then  Home>Summary of JDBC Data Sources
    next lock & edit
    select each jdbc component and changed the password and confirm password for each
    then save each time for each  next  activate the changes.
    (as I changed all components passwords like <password-encrypted>asdl;lasdfadf=<password-encrypted/>   to <password>welcome1=<password/> in each *.xml file at *domain-home/config/jdbc*)
    I have restarted the Admin server from Command prompt. Expecting that I was doing correct.
    Succeeded. I did not believe that I have seen not even a single error.
    My sincere request that don't mess up with any *.xml file if you are not sure and make sure to take a back up
    Thank you.
    Thanks a lot.
    -Seshikanth

  • Illustrator Shape Builder Tool:  After the latest CC update, the tool alters shapes once edited instead of just removing/adding the desired shape.  Anyone else run into this and/or have any fixes?

    I am using a PC and installed the latest update of all the CC programs I use (AI, PS, AE, etc.) and within Illustrator I've noticed the Shape Builder Tool doesn't behave exactly as it did in the past. (And not in a good way.)
    Previous versions allowed me to edit/add/remove shapes from one another without issue (leaving all shape paths as they were before the editing while making the desired alterations), but the newest behavior seems to alter existing paths once shapes are merged/deleted making the tool almost non-usable. 
    Not sure if there's a check box I'm missing or what, but have done some brief research on the problem and haven't found anything helpful.  If anyone has run into this issue and/or knows a way to correct it, I would greatly appreciate it
    Thanks!

    Please show a screenshot before and after.

  • Changing the site to be dynamic, running into problems

    I have a site I've been working on for several weeks. The
    individual sections are fairly dynamic in terms of actionscript
    running most of the frame, and each section only being one frame.
    I'm trying to get rid of the timeline altogether by using
    attachMovie, and am running into some issues. I need it to go to
    the label "start_fr" when they enter in a set password and
    username, and nothing is happening when I press the submit button.
    I think it may be because I'm motion tweening the login_mc,
    so my actionscript is inside the last frames tween(I'm eventually
    dynamically programming those too, but on thing at a time, right!?)
    . Am I on track? Is this where listeners come into play,
    because I've had the most trouble with that concept as I move on to
    learning more true dynamic programming.
    ========================================================

    Hi,
    You are using onEnterFrame to attach MovieClip.
    onEnterFrame = function () {
    attachMovie("login_mc", "login_mc", 0 ,{_x:centerX,
    _y:centerY});
    gotoAndPlay("login");
    Actually what happening here is : It will attach Lot of
    movieClips with the name of login. So Access problem will occur.
    OnEnterFrame is a infinite loop. you have to Remove it manually. or
    use onLoad instead of onEnterFrame
    if your submit button is inside the login_mc. u have to use
    login_mc.submit_btn.onRelease = function();

  • I am using  MacBook Pro and running 10.8.4. iTunes version 11.0.4. Several of the cd's i have imported recently have been split into multiple albums by ITunes. How do I bring all the bonus tracks together with the original album?

    I am using a MacBook Pro and running 10.8.4. iTunes version 11.0.4. Several of the cd's i have imported recently have been split into multiple albums by iTunes where it has identified bonus tracks. How do I bring all the bonus tracks together with the original album?

    Hello there, Fineshot.
    The following Knowledge Base article might provide some information that should help you resolve the issue you're having:
    Why aren't songs with the same album art grouped together?
    http://support.apple.com/kb/TS1468
    Thanks for reaching out to Apple Support Communities.
    Cheers,
    Pedro D.

  • I am trying to use a Futek load sensor example and am running into all sorts of weird issues with the coding.

    Eons ago, when I took the Labview I & II courses, I remember the instructor stating that correct VI's had to have error line.  I downloaded this VI example from Futek's website and the code doesn't  use it. I am trying to utilize it for some data collection rather than have to pay for their software that goes with the sensor.  When I first try to run the VI I get an error, and if I replace the formula they use, then undo the replacement it appears to work. The engineer that I am trying to help out is basically wanting to be able to read and also write a file during test, and I am running into all sorts of problems.  
    If anyone could help me I would greatly appreciate it. 
    Attachments:
    FUTEK LabVIEW 10 Example 2.3.2003.3.vi ‏645 KB

    The first error when I start to run the VI, is states that I need to insert disc 1 of Labview.
    I can usually hit stop and run, stop and run, and then it will start "working".
    Then I get the Formula: Library version is incompatible with XNode version.
    If I replace the fomula, and then undo replace it will correct the broken start arrow.....
    I took the labview 1 and 2 courses 5 years ago, and haven't been a regular user so I am what you would call extremely rusty. 
    I have an engineer here that is wanting to use the sensor for some testing and can't really understand why I am having so many issues.
    Do you know if NI has someone that might be able to work through this with me, or even if there is some Labview consultant that can be paid to help out?
    Thanks,
    Josh

  • I have CS2 and would like to do Image Stacking.    I understand CS3 allows this.  correct?     Am I wiser to purchase CS3 upgrade.  Am I going to run into issues with install?

    I have CS2 and would like to do Image Stacking.    I understand CS3 allows this.  correct?     Am I wiser to purchase CS3 upgrade.  Am I going to run into issues with install?

    Well, I refuse to sign up to pay Adobe a monthly tribute for life too, but that doesn't mean we are limited to CS3.
    I'm staying with CS6.
    Adobe still sells a perpetual-license to Photoshop CS6 without the subscription model, but it's $700 for the Standard version and a cool $1,000 for the Extended version.
    You haven't mentioned your platform, Macintosh or Windows, so make sure CS3 or any other obsolete version you buy actually runs on a modern operating system.
    Good luck.

Maybe you are looking for

  • Time Machine error after restoring all data

    Sorry, I've tried to run through various trouble shooting guides on Time Machine (notably here http://pondini.org/TM/C4.html etc) but haven't been able to work out a solution. I just had my iMac harddrive replaced and earlier did a full restore of th

  • Import link is always off

    My import link under file is always off, so I cannot try to import. It was on once and I tried to import going through the procedure outlined by Firefox and nothing happened. I am on MAC OSX 10.6.7

  • HT2490 how do I get my mac to stop opening windows as soon as i turn it on?

    I don't want my mail, imessage and itunes to open as soon as I turn on my laptop but I can't find the settings to make it stop. There has to be a way! Can anyone help me with this please?

  • New tab button not working how do i fix it

    I found today that my "open new tab" button was not working, so i exited out of firefox and it downloaded a new update, even after that it still did not work so i tried restarting the computer and it still doesnt work

  • Sync Occasionally connected feature

    HI all, I am new in the SAP MI. Currently, I am trying to create custom mobile application (occassionally connected) using webdynpro mobile handheld perspective in SAP Netweaver MI 7.1. I would like to ask your suggestion about how to code and call s