"Enable distribution-point sharing for this source site" did not showing SCCM 2007 DPs as SCCM 2012 content shares for CM12 clients

Hi
We have one central site server and three primary site servers in SCCM 2007 and completed the SCCM 2012 migration as single hierarchy.
During the migration, We have configured SCCM 2007 Central site server as source hierarchy for data gathering process and configured the "Enable distribution-point sharing for this source site" to make SCCM 2007 distribution points
as SCCM 2012 content shares to serve SCCM 2012 migrated clients. Now we are facing a problem that one of the primary site server's data gathering process did not gather SCCM 2007 DPs even though we configured "Enable distribution-point sharing for this
source site" but data gathering process is completing successfully.
Is anyone have idea, why these SCCM 2007 DPs did not appearing as SCCM 2012 content shares under "Shared Distribution Points"
Thanks in Advance
srkr

 Now we are facing a problem that one of the primary site server's data gathering process did not gather SCCM 2007 DPs even though we configured "Enable distribution-point sharing for this source
site" but data gathering process is completing successfully.
Earlier all the shared DPs are showing under  Shared Distribution Points ? Or since starting itself these DPs are not showing down? Have you checked migmctrl.log for some clue?
Anoop C Nair (My Blog www.AnoopCNair.com)
- Twitter @anoopmannur -
FaceBook Forum For SCCM

Similar Messages

  • Distribution-Point sharing (SCCM 2007 - SCCM 2012)

    I've some problems by gathering data from a SCCM 2007 Hierarchy, into the SCCM 2012 environment.
    Gathering Data without enable Distribution Point sharing is successful, enabling Distribution Point Sharing the Process always fail.
    In migmctrl.log i recogniced that the process alway stucks on the following Row for about one hour:
     [Worker]:                                 Query against Legacy Site , @SourceSiteCode=KR1,
    @LastID=KR10001B:                       WITH Block AS                     
    (                          SELECT TOP 2500 ID FROM PkgStatus WHERE ID > @LastID ORDER BY ID                     
    )                      SELECT                         
    ps.ID COLLATE SQL_Latin1_General_CP1_CI_AS AS ID,                          ps.Type AS Type,                         
    ps.SiteCode COLLATE SQL_Latin1_General_CP1_CI_AS AS SiteCode,                          ps.PkgServer COLLATE SQL_Latin1_General_CP1_CI_AS
    AS PkgServer,                          ps.Personality AS Personality,                         
    ps.Status AS Status,                          ps.SourceVersion AS SourceVersion,                         
    ps.UpdateTime AS UpdateTime,                          ps.Location COLLATE SQL_Latin1_General_CP1_CI_AS AS Location,                         
    ps.SigLocation COLLATE SQL_Latin1_General_CP1_CI_AS AS SigLocation,                          ps.ShareName COLLATE SQL_Latin1_General_CP1_CI_AS
    AS ShareName,                          ps.HTTPUrl COLLATE SQL_Latin1_General_CP1_CI_AS AS HTTPUrl,                         
    ps.State AS State,                          ps.SigURL COLLATE SQL_Latin1_General_CP1_CI_AS AS SigURL                      
    FROM dbo.PkgStatus ps                      JOIN (                         
    SELECT d.ThisSiteCode COLLATE SQL_Latin1_General_CP1_CI_AS AS SiteCode FROM SMSData d                           UNION ALL                         
    SELECT s.SiteCode FROM Sites s JOIN SMSData d ON s.ReportToSite = d.ThisSiteCode AND s.SiteType = 1) s2                      ON s2.SiteCode = ps.SiteCode                     
    JOIN DistributionPoints dp ON ps.SiteCode = dp.SMSSiteCode                          AND ps.PkgServer = dp.NALPath collate SQL_Latin1_General_CP1_CI_AS                     
    WHERE ps.Type != 1 AND dp.Action != 3                          AND ps.ID > @LastID                         
    AND ps.ID <= (SELECT MAX(ID) FROM Block)
    And after that this Errormessage appear:
    ERROR: [Worker]:                                 Failed to execute:                      
    WHILE (1 = 1)                      BEGIN                         
    MERGE TOP (1000) PkgStatus AS target                          USING   (                             
    SELECT                                ps.ID, ps.Type, SiteCode = @CurrentSiteCode, PkgServer = dps.PkgServerFQDN,
    ps.Personality, ps.Status, ps.SourceVersion, ps.UpdateTime,                                ps.Location,
    ps.SigLocation, ps.ShareName, ps.HTTPUrl, ps.State, ps.SigURL, SiteCode as SourceSiteCode                             
    FROM #MIG_PkgStatus ps                              JOIN #MIG_DistributionPointSource dps ON ps.PkgServer = dps.PkgServer                             
    WHERE ID in (SELECT PkgID collate SQL_Latin1_General_CP1_CI_AS from dbo.SMSPackages_L)                             )
    AS src                          ON                           
    (target.ID = src.ID AND target.Type = src.Type AND target.SiteCode = src.SiteCode AND target.PkgServer = src.PkgServer AND target.Personality = src.Personality) -- TODO: Ensure we match an index                         
    WHEN NOT MATCHED THEN                              INSERT  (ID, Type, SiteCode, PkgServer, Personality, Status,
    SourceVersion, UpdateTime,                                      Location,
    SigLocation, ShareName, HTTPUrl, State, SigURL)                              VALUES (src.ID, src.Type, src.SiteCode,
    src.PkgServer, src.Personality, src.Status, src.SourceVersion, src.UpdateTime,                                     
    src.Location, src.SigLocation, src.ShareName, src.HTTPUrl, src.State, src.SigURL)                          WHEN MATCHED AND (                             
    target.Status != src.Status                              OR target.SourceVersion != src.SourceVersion                             
    OR target.UpdateTime != src.UpdateTime                              OR target.Location != src.Location                             
    OR target.SigLocation != src.SigLocation                              OR target.ShareName != src.ShareName                             
    OR target.HTTPUrl != src.HTTPUrl                              OR target.State != src.State                             
    OR target.SigURL != src.SigURL                              ) THEN                             
    UPDATE SET                                  target.Status = src.Status,                                 
    target.SourceVersion = src.SourceVersion,                                  target.UpdateTime
    = src.UpdateTime,                                  target.Location = src.Location,                                 
    target.SigLocation = src.SigLocation,                                  target.ShareName = src.ShareName,                                 
    target.HTTPUrl = src.HTTPUrl,                                  target.State = src.State,                                 
    target.SigURL = src.SigURL                          WHEN NOT MATCHED BY SOURCE AND EXISTS(                                 
    SELECT * FROM MIG_Entity me WHERE me.Type = 2 AND me.ObjectKey = target.ID)                              AND EXISTS
    (                                  SELECT * FROM MIG_DistributionPointSource dpsrc                                 
    WHERE dpsrc.PkgServerFQDN = target.PkgServer AND dpsrc.SourceSiteCode = @SourceSiteCode                             
    )                              AND NOT EXISTS (                                 
    SELECT * FROM MIG_Job job                                  WHERE Type = 3 AND dbo.fn_GetNALPathFromMIGJobConfiguration(job.AdditionalConfiguration)
    = target.PkgServer                              )                             
    THEN DELETE ;                            IF @@ROWCOUNT = 0 BREAK                     
    END SMS_MIGRATION_MANAGER 07.11.2013 12:28:33 4516 (0x11A4)
    [Worker]:                 End syncing Distribution Points related tables. SMS_MIGRATION_MANAGER 07.11.2013 12:28:33 4516 (0x11A4)
    [Worker]:         ========== End syncing distribution points ========== SMS_MIGRATION_MANAGER 07.11.2013 12:28:33 4516 (0x11A4)
    ERROR: [Worker]:         System.Data.SqlClient.SqlException: Timeout expired.  The timeout period elapsed prior to completion of the operation or the server is not responding.     at System.Data.SqlClient.SqlConnection.OnError(SqlException
    exception, Boolean breakConnection)     at System.Data.SqlClient.TdsParser.ThrowExceptionAndWarning(TdsParserStateObject stateObj)     at System.Data.SqlClient.TdsParser.Run(RunBehavior runBehavior, SqlCommand cmdHandler,
    SqlDataReader dataStream, BulkCopySimpleResultSet bulkCopyHandler, TdsParserStateObject stateObj)     at System.Data.SqlClient.SqlCommand.FinishExecuteReader(SqlDataReader ds, RunBehavior runBehavior, String resetOptionsString)    
    at System.Data.SqlClient.SqlCommand.RunExecuteReaderTds(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, Boolean async)     at System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior
    runBehavior, Boolean returnStream, String method, DbAsyncResult result)     at System.Data.SqlClient.SqlCommand.InternalExecuteNonQuery(DbAsyncResult result, String methodName, Boolean sendToPipe)     at System.Data.SqlClient.SqlCommand.ExecuteNonQuery()    
    at Microsoft.ConfigurationManagement.MigrationManager.MigrationRepository.BulkCopyData[T](Snapshot snapshot, LegacyRepository legacyRepository, IntlSqlFormatter formatter, Func`2 watermarkFunc, T lastMaxId, Boolean doNotDrop)     at Microsoft.ConfigurationManagement.MigrationManager.MigrationRepository.BulkCopyData[T](Snapshot
    snapshot, LegacyRepository legacyRepository, IntlSqlFormatter formatter, Func`2 watermarkFunc, T lastMaxId)     at Microsoft.ConfigurationManagement.MigrationManager.SyncAgentJob.<SyncDPSettings>d__5f.MoveNext()    
    at Microsoft.ConfigurationManagement.MigrationManager.ExtensionMethods.<AttachErrorHandler>d__6`1.MoveNext() SMS_MIGRATION_MANAGER 07.11.2013 12:28:33 4516 (0x11A4)
    STATMSG: ID=8610 SEV=E LEV=M SOURCE="SMS Server" COMP="SMS_MIGRATION_MANAGER" SYS="<SourceSITESERVER>" SITE=CA1 PID=2348 TID=4516 GMTDATE=Do Nov 07 11:28:33.390 2013 ISTR0=""<SourceSITESERVER>" (CA1)"
    ISTR1="<DestinationSITESERVER>" ISTR2="-2146232060" ISTR3="" ISTR4="" ISTR5="" ISTR6="" ISTR7="" ISTR8="" ISTR9="" NUMATTRS=0 SMS_MIGRATION_MANAGER 07.11.2013 12:28:33
    4516 (0x11A4)
    STATMSG: ID=8605 SEV=I LEV=M SOURCE="SMS Server" COMP="SMS_MIGRATION_MANAGER" SYS="<SourceSITESERVER>" SITE=CA1 PID=2348 TID=4516 GMTDATE=Do Nov 07 11:28:33.416 2013 ISTR0=""<SourceSITESERVER>" (CA1)"
    ISTR1="<DestinationSITESERVER>" ISTR2="" ISTR3="" ISTR4="" ISTR5="" ISTR6="" ISTR7="" ISTR8="" ISTR9="" NUMATTRS=0 SMS_MIGRATION_MANAGER 07.11.2013 12:28:33 4516
    (0x11A4)
    [Worker]: ==================== Sync Agent Job 16 Ended ==================== SMS_MIGRATION_MANAGER 07.11.2013 12:28:33 4516 (0x11A4)
    ERROR: [Worker]: Microsoft.ConfigurationManagement.Migration.MigrationException: 1 exceptions occurred during syncing.     at Microsoft.ConfigurationManagement.MigrationManager.SyncAgentJob.<get_ExecutionPlan>d__7.MoveNext()    
    at Microsoft.ConfigurationManagement.MigrationManager.Job`1.ExecuteNext() SMS_MIGRATION_MANAGER 07.11.2013 12:28:33 4516 (0x11A4)
    [Worker]: Start processing status changed event for MIG_SiteMapping.ID=16 SMS_MIGRATION_MANAGER 07.11.2013 12:28:33 4516 (0x11A4)
    [Worker]:         Set the schedule item 16 end time SMS_MIGRATION_MANAGER 07.11.2013 12:28:33 4516 (0x11A4)
    [Worker]:         Set the schedule item 16 status to Failed SMS_MIGRATION_MANAGER 07.11.2013 12:28:33 4516 (0x11A4)
    [Worker]: End processing status changed event for MIG_SiteMapping.ID=16 SMS_MIGRATION_MANAGER 07.11.2013 12:28:33 4516 (0x11A4)
    [Worker]: Disposing Job 16 SMS_MIGRATION_MANAGER 07.11.2013 12:28:33 4516 (0x11A4)
    [Worker]: Removing Job 16 from job manager. SMS_MIGRATION_MANAGER 07.11.2013 12:28:33 4516 (0x11A4)
    [Worker]: Removing the Job with Id 16. SMS_MIGRATION_MANAGER 07.11.2013 12:28:33 4516 (0x11A4)
    [Worker]: Disposing worker SMS_MIGRATION_MANAGER 07.11.2013 12:28:33 4516 (0x11A4)
    [Worker]: Disposing current site connection SMS_MIGRATION_MANAGER 07.11.2013 12:28:33 4516 (0x11A4)
    ERROR: [MigMCtrl]: FAILED to EXECUTE job. error = Unknown error 0x80131500, 80131500 SMS_MIGRATION_MANAGER 07.11.2013 12:28:33 4516 (0x11A4)
    ERROR: [MigMCtrl]: FAILED to EXECUTE job. error = Unknown error 0x80131500, 80131500 SMS_MIGRATION_MANAGER 07.11.2013 12:28:33 4516 (0x11A4)
    In the StatusMessages of Migration_Manager there are the following Errormessage:
    The Migration Manager on Configuration Manager site server "<SourceSITESERVER>" was unable to complete the SQL operation on the SQL Server "<DestinationSITESERVER>" of Configuration Manager 2007 due to error "-2146232060".
    Thanks in advance

    Hi,
    1.Please examine reports “All active package distributions” on SCCM 2007 to check whether have package is currently being installed or removed. Then refresh all DPs on SCCM 2007.
    After completing these actions above, try to re-gather data.
    2.If fail, please check the transaction log both on SCCM 2012 and SCCM 2007 SQL Server. Then, a SQL engineer should be involved in this case.(This forum do not support database issue)
    Best Regards,
    Joyce Li
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • Change to BITS-enabled Distribution Point

    Hi guys,
    Sub: Change to BITS-enabled Distribution Point
    Let say the DP was not BIT-enabled, and I want to enabled BITS on that DP now.
    Q: Do I need to refresh/update packages inside the DP?
    OR do I need to clear cache content on client e.g C:\Windows\system32\CCM\cache?
    Any concerns on changing to enabled BITS on DP that I should be aware of?
    Many thanks in advanced!!
    ---Pat

    Looks like i have found the answer at least i have got it to work.
    Once i install .Net Framework 3.5.1 Feature on the server, i was able to boot succesfully into SCCM Task Sequence Wizard.
    I also was successfull installing the the PXE DP role from the console succesfully without having to install WDS first.
    So i guess that .Net Framework 3.5.1 is required for PXE DP role on Windows 2008 R2. (but i can't see that mentioned anywhere here http://technet.microsoft.com/en-us/library/c1e93ef9-761f-4f60-8372-df9bf5009be0#BKMK_SiteSystemRolePrereqs)

  • Rcv'ng message: This web site does not supply ownership information. Connection not encypted. Q: What setting can I change in Firefox to allow access?

    Website: g01cdwascl002.ahe.pok.ibm.com
    Owner: This web site does not supply ownership information.
    Verified by: Not specified
    Technical Details:
    Connection not encrypted

    You can set the pref <b>browser.urlbar.trimURLs</b> to <i>false</i> on the <b>about:config</b> page to see the http: protocol.
    You can set the pref <b>browser.urlbar.formatting.enabled</b> to <i>false</i> on the <b>about:config</b> page to disable the highlighting of the domain and see the full URL more clearly.
    *http://kb.mozillazine.org/about:config
    A possible cause is security software (firewall) that blocks or restricts Firefox or the plugin-container process without informing you, possibly after detecting changes (update) to the Firefox program.
    Remove all rules for Firefox from the permissions list in the firewall and let your firewall ask again for permission to get full unrestricted access to internet for Firefox and the plugin-container process and the updater process.
    See:
    *https://support.mozilla.org/kb/Server+not+found
    *https://support.mozilla.org/kb/Firewalls

  • After starting my computer today and trying to visit and open bookmarked web sites, I cannot open them because I am getting this error message: This web site does not supply identity information. What happened? How do I fix it? Thanks

    Today, when I tried to open web sites in Firefox from my Bookmarks, I could not. I continually received the following error message: This web site does not supply identity information.
    I noticed that when I put the cursor on the box to the left of the address, that message appears. There is also '''no''' https:// before the address.
    Can anyone help correct this problem? I believe sometime last week I may have fiddled with the Secutity settings in the Tools/Security option box and may have screwed up something trying not to have sites use cookies to track me?
    Thanks,
    Bob

    You can set the pref <b>browser.urlbar.trimURLs</b> to <i>false</i> on the <b>about:config</b> page to see the http: protocol.
    You can set the pref <b>browser.urlbar.formatting.enabled</b> to <i>false</i> on the <b>about:config</b> page to disable the highlighting of the domain and see the full URL more clearly.
    *http://kb.mozillazine.org/about:config
    A possible cause is security software (firewall) that blocks or restricts Firefox or the plugin-container process without informing you, possibly after detecting changes (update) to the Firefox program.
    Remove all rules for Firefox from the permissions list in the firewall and let your firewall ask again for permission to get full unrestricted access to internet for Firefox and the plugin-container process and the updater process.
    See:
    *https://support.mozilla.org/kb/Server+not+found
    *https://support.mozilla.org/kb/Firewalls

  • Message "Creation of DataSources for SAP source system is not permitted"

    Hi,
    I am in DW Workbench: Modeling and I need to copy a DataSource.
    It's impossible, beacause I have this Message "Creation of DataSources for SAP source system is not permitted"!
    What can I do?
    Thks

    Hii.
    You can not copy the standard datasource to any other source system it will not allow you to do that.
    But if you want to copy you can copy it to PC FILE source system.
    It will allow you to copy there.
    Right click in Datasource->Copy-> Give Target datasource name -
    > intarget Source system tab -
    >Give Source system for File.
    Thanks
    Mayank
    Edited by: Mayank Chauhan on Sep 4, 2009 5:41 PM

  • I'm trying to export a file as .dwg for Autocad but it's not showing the dwg preview and it appears to be saving as code (lots of gobbledegook when reopening the file).  I'm on OS 10.5.8.  Never had a problem with this before.  What am I missing? Any idea

    I'm trying to export a file as .dwg for Autocad but it's not showing the dwg preview and it appears to be saving as code (lots of gobbledegook when reopening the file).  I'm on OS 10.5.8.  Never had a problem with this before.  What am I missing? Any ideas?

    First be sure login and password are OK. Sometimes the address starts wit "http://..." and sometime starts with "ftp://...". Try both normal FTP access and Scure FTP access (SFTP). At the end, contact the site's provider.

  • I am not able to login to my facebook account and error message reads "This web site does not supply ownership information." Please help

    I am not able to login to my facebook account and error message reads "This web site does not supply ownership information." Please help
    only title bar opens and nothing else....please help

    Normally, when you connect via http, the browser doesn't check for site identity, so I don't understand what's happening there.
    Do you have any security-related add-ons that force popular sites to use a secure connection, or claim to provide anonymous browsing?
    Were you making the connection on your own network or on a public network (e.g., school, coffee shop)? If it was a public network, maybe the error indicates that your traffic was being intercepted???
    Without hands on, this is a tough one to diagnose.

  • I am trying to understand the licensing procedures for using tabKiller for 3.5.7 firefox. Who should I contact for this? I do not see any customer service phone number for Firefox

    I am trying to understand the licensing procedures for using tabKiller for 3.5.7 firefox. Who should I contact for this? I do not have the customer service phone number for Firefox

    Tab Killer is not created by Mozilla, it is created by a private individual who has made it available at no cost for other people to use.

  • I tunes 11 will not let me sync my I pod nano... keep getting error meessage:  the software required for this I pod was not installed correctly... I have tried to reinstall 6 times Dumped everything i tunes related no luck help!

    I recently updated to Itunes 11 and now no sync... get error message: The software required for this I pod was not installed correctly. Please reinstall Itunes to install the required software.  I backed up all music and deleted all related itunes items and still get this error after 6 attempts to reload itunes... i give up please help

    I recently updated to Itunes 11 and now no sync... get error message: The software required for this I pod was not installed correctly. Please reinstall Itunes to install the required software.  I backed up all music and deleted all related itunes items and still get this error after 6 attempts to reload itunes... i give up please help

  • " software for this i phone is not installed correctly. reinstall iTunes"

    Hi guys
    I managed to get iTunes to open but now I receive a warning message "software for this i phone is not installed correctly. reinstall iTunes", when connecting my iphone and ipad as well... reinstalling itunes does not solve the problem.
    I tried removing the latest itunes from my registry and installing the previous version that worked, hence the problem persist.
    I'm sure i'm not the only victim out there.
    Pls guys, any advise on how do i fix this problem.
    Thanx
    calypso2

    Let's try a standalone Apple Mobile Device Support install. It still might not install, but fingers crossed any error messages will give us a better idea of the underlying cause of why it's not installing under normal conditions.
    Download and save a copy of the iTunesSetup.exe (or iTunes64setup.exe) installer file to your hard drive:
    http://www.apple.com/itunes/download/
    Download and install the free trial version of WinRAR:
    http://www.rarlab.com/
    Right-click the iTunesSetup.exe (or iTunes64setup.exe), and select "Extract to iTunesSetup" (or "Extract to iTunes64Setup"). WinRAR will expand the contents of the file into a folder called "iTunesSetup" (or "iTunes64Setup").
    Go into the folder and doubleclick the AppleMobileDeviceSupport.msi (or AppleMobileDeviceSupport64.msi) to do a standalone AMDS install.
    (If it offers you the choice to remove or repair, choose "Remove", and if the uninstall goes through successfully, see if you can reinstall by doubleclicking the AppleMobileDeviceSupport.msi again.)
    Does it install (or uninstall and then reinstall) properly for you? If so, can you get a normal iTunes install to go through properly now?
    If instead you get an error message during the install (or uninstall), let us know what it says. (Precise text, please.)

  • Does any one know of software that you can import a PDF and then draw  on it, dimensions, notes and symbols...technical drawing?. Blue beam have the perfect software for this BUT it's not Mac compatible

    Does any one know of software that you can import a PDF and then draw  on it, dimensions, notes and symbols...technical drawing?. Blue beam have the perfect software for this BUT it's not Mac compatible

    You need a PDF editor, at the high end use Adobe's Acrobat Professional, at the low end use the editing features in Preview (pre-loaded on your iMac). However you should probably look at the Mac App Store, you will find many of PDF editing applications. You simply need to find one that suits your needs.

  • HT1933 I was charged 39.99 for a purchase I did not make.   How can I speak to someone about this.

    I was charged 39.99 on my credit card for a purchase I did not make.  Who can help me with this. 

    If you didn't make the purchase, and nobody else has access to your account or devices and made it, then you can try the 'report a problem' page to contact iTunes Support : http://reportaproblem.apple.com
    If the 'report a problem' link doesn't work then you can try contacting iTunes Support via this page : http://www.apple.com/support/itunes/contact/ - click on Contact iTunes Store Support on the right-hand side of the page, then Purchases, Billing & Redemption

  • I have two monthly scheduled iTunes allowances scheduled for my kids.  For some reason they did not get transferred to their accounts this month.

    I have two monthly scheduled iTunes allowances scheduled for my kids.  For some reason they did not get transferred to their accounts this month.

    @Dakotaep
    I am so sorry to hear of your experience with purchasing your new Samsung Galaxy Note 3!  This definitely should have been resolved in your first call to us.  I would be glad to review your account and ensure the Edge Agreement is corrected.  Please accept my "Follow" request and send me a direct message so I can further assist.  Thanks!
    AnthonyTa_VZW
    Follow us on Twitter VZWSupport on Twitter.

Maybe you are looking for

  • Problem with Maps in Mavericks on Macbook pro

    I just installed OS X 10.9 Mavericks on my Macbook pro 2010 mid model. Install processes were good with no problem. After Install, I opend Maps application. I found my Map is not load whole map image. like this picture. Can any one help me from this

  • How do I add text to an output of a formula?

    I've tried various scripts to get it work in "Simplified Field Notations". The script below is the only one that doesn't return an error, but I get no output. This one is without a formula script, but I would like to know how to add text to a formuls

  • Missing GD Library for PHP on SJS 7

    What do I need to do to enable the GD module for the PHP Add-On build for SJS 7? I am trying to install the latest Drupal build on my server and it keeps complaining that the GD module is not part of the current PHP build. I looked over the 'Using PH

  • Error while connecting to DB's - java.lang.NullPointerException

    I am getting this error while connecting to any db using SQL dev. 1. I was able to connect to all before something happaned (unrealted install/uninstalls) 2. I also have two errors in the "Logging Page- Log" window I have seen this errors in other th

  • No "Thumbnails" View?  ?

    OK, I've labored long enough with the fundamentals... now I want to see if I can have some fun with this thing... I just plugged in an SD card reader (none built in... bummer) and loaded in a card with some photos I took this afternoon with my Nikon