Help! Checking login details from tables

Hi,
Please help me with this. Please see the code below. It doesn't work, if I give the correct id and password.But it works if I say (!rs.next()). The same type of programme worked for me in case of other tables. Could any one pls help me solve this problem.
               String id = req.getParameter("userid");
               String pwd = req.getParameter("password");
               ServletOutputStream sos = res.getOutputStream();
               rs = st.executeQuery("select * from uma where userid='"+user+"' and password='"+pwd+"' ");
               sos.println("<html><body bgcolor=lightyellow>");
               if(rs.next())
sos.println("you are lucky");               
sos.println("<input type='submit' value='Submit' name='submit'></p>");
               else
                    sos.println("<h2>Get out of my site</h2>");
               sos.println("</body></html>");
          catch(Exception e)
               e.printStackTrace();

Instead do like this
pstmt = con.prepareStatement("select password from uma where login=?");
rs = pstmt.executeQuery();
while(rs.next()){
if(password.equals(rs.getSting(1))){
out.println("Login Success");
else{
out.println("Login Failure");
}

Similar Messages

  • Details from table

    Hi FI Gurus,
    There are two companies A and B both are inter company. Company B has raised PO and GR done  at Company B.  IV also  done by company B as well as company A which supposed not to done by company A.
    My question is how to get details from tables regarding PO,GR and IV with company code or is there any Std. transaction code from which I get these details.
    Thanks in advance.
    Regards,
    Jainp

    Use table EKBE, it stores the PO, the GR, and the IV of the particular PO.

  • Report to display total and detail from table GLT0 and FBL3N

    hi guys,
    we have the requirement to show a report with total amount per GL account from table GLT0 and to as well display the detail from tcode FBL3N ..
    shall i use normal report via SE38, if yes, what is the table that stores detail from FBL3N  or does report painter support the above requirement..pls advice

    use report SAPF070 as sample
    (compare documentation!)
    hope that helps
    Andreas

  • Finding Windows Login details from R3 system

    Friends,
       We have a requirement where we need to find the Windows login user ID of an employee from a SAP report. In the report we will be having a button. whenever we click on the button we should get that particular user's windows login ID.
    The report will have SAP user ID.
    Can you please help me out in this regard? Thanks in Advace.
    Regards,
    Sreethan

    Use the FM GUI_GET_DESKTOP_INFO . Pl. refer the program given below for details.
    REPORT ZEXAMPLE.
    DATA: V_VALU(255)       TYPE C,
          INFOREQ           TYPE I VALUE '-2'.
    WHILE INFOREQ NE 13.
      CALL FUNCTION 'GUI_GET_DESKTOP_INFO'
      EXPORTING
    TYPE   = INFOREQ
      CHANGING
    RETURN = V_VALU.
      CASE INFOREQ.
        WHEN '-2'.
          WRITE:/ 'SAP SYSTEM DIRECTORY:', V_VALU.
        WHEN '1'.
          WRITE:/ 'COMPUTER NAME:', V_VALU.
        WHEN '2'.
          WRITE:/ 'WINDOWS DIRECTORY:', V_VALU.
        WHEN '3'.
          WRITE:/ 'WINDOWS SYSTEM DIRECTORY:', V_VALU.
        WHEN '4'.
          WRITE:/ 'TEMPORARY DIRECTORY:', V_VALU.
        WHEN '5'.
          WRITE:/ 'WINDOWS USER NAME:', V_VALU.
        WHEN '6'.
          WRITE:/ 'WINDOWS OS:', V_VALU.
        WHEN '7'.
          WRITE:/ 'WINDOWS BUILD NUMBER:', V_VALU.
        WHEN '8'.
          WRITE:/ 'WINDOWS VERSION:', V_VALU.
        WHEN '9'.
          WRITE:/ 'SAP GUI PROGRAM NAME:', V_VALU.
        WHEN '10'.
          WRITE:/ 'SAP GUI PROGRAM PATH:', V_VALU.
        WHEN '11'.
          WRITE:/ 'SAP CURRENT DIRECTORY:', V_VALU.
        WHEN '12'.
          WRITE:/ 'DESKTOP DIRECTORY:', V_VALU.
      ENDCASE.
      INFOREQ = INFOREQ + 1.
    ENDWHILE.

  • Need help with master detail from different datasets

    I have xml data from three different datasets that I want to use in a master detail region. 
    So initially, a list of model codes is displayed. When the user clicks on a specific model, the model inputs appear in the detail region.  One of these inputs is a list of map units. I also want a real name description of the map unit to be displayed.  It's working for one map code, but not for all of them. 
    My question is: "How do I get the description to disply for each of the map codes?"
    Here is my code: 
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>Untitled Document</title>
    <script src="/SpryAssets/xpath.js" type="text/javascript"></script>
    <script src="/SpryAssets/SpryData.js" type="text/javascript"></script>
    <link href="/SpryAssets/SprySpotlightColumn.css" rel="stylesheet" type="text/css" />
    <script type="text/javascript">
    var DSpresence = new Spry.Data.XMLDataSet("/SpeciesReview/Copy of tblSppMapUnitPres.xml", "dataroot/Copy_x0020_of_x0020_tblSppMapUnitPres");
    var DSancillary = new Spry.Data.XMLDataSet("/SpeciesReview/ModelingAncillarywname.xml", "dataroot/Sheet1", {sortOnLoad: "CommonName", sortOrderOnLoad: "ascending"});
    var DSpresence2 = new Spry.Data.XMLDataSet("/SpeciesReview/Copy of tblSppMapUnitPres.xml", "dataroot/Copy_x0020_of_x0020_tblSppMapUnitPres[strSpeciesModelCode='DSancillary::strSpec iesModelCode']");
    var dsMUDescription  = new Spry.Data.XMLDataSet("/SpeciesReview/tblMapUnitDesc.xml", "dataroot/tblMapUnitDesc");
    var dsMUDescription2= new Spry.Data.XMLDataSet("/SpeciesReview/tblMapUnitDesc.xml", "dataroot/tblMapUnitDesc[intLSGapMapCode='{DSpresence2::intLSGapMapCode}']");
    </script>
    </head>
    <body>
    <div style="width: 100%">
    <div id="Species_DIV" spry:region="DSancillary DSpresence dsMUDescription" width="50%" style="float:left">
      <table id="DSancillary">
      <tr>
      <th>Species Code</th>
      </tr>
      <tr spry:repeat="DSancillary" "DSpresence" "dsMUDescription" spry:setrow="DSancillary" >
      <td>{strSpeciesModelCode}</td>
      </tr>
      </table>
        </div>
      <div id="Species_Detail_DIV" spry:detailregion="DSancillary DSpresence dsMUDescription" style="float:right; margin-top:20px; width: 40%">
        <table id="Species_Detail_Table"  >
          <tr width="100%">
          <th style="font-family:Verdana, Geneva, sans-serif; font-size:14px; background-color:#CCCCCC; font-weight:bold">Modeling variables used for {strSpeciesModelCode}</th>
          </tr>
            <tr>
              <td spry:if="'{memModelNotes}' != ''">Hand Model Notes: {DSancillary::memModelNotes}</td></tr>
               <tr>
                <td spry:if="'{DSancillary::ysnHydroFW}' == 1">HydroFW: {DSancillary::ysnHydroFW}<br />Buffer from flowing water:  {DSancillary::intFromBuffFW}<br />
                Buffer into flowing water:  {DSancillary::intIntoBuffFW}
                </td></tr>
                <tr>
                <td spry:if="'{DSancillary::ysnHydroOW}' == 1"> Buffer from open water: {DSancillary::intFromBuffFW}<br />Buffer into open water:  {DSancillary::intIntoBuffOW}</td></tr>
          <tr><td><br /></td></tr>
           <tr><th>Mapcode:</th></tr>
        <tr spry:repeat="DSpresence">
                <td spry:if="'{DSpresence::ysnPres}' == '1'">{DSpresence::intLSGapMapCode}</td><td spry:if= "'{DSpresence::intLSGapMapCode}'=='{dsMUDescription::intLSGapMapCode}'">{dsMUDescription: :strLSGapName}</td>
            </tr>
            <tr><td><ul>
                <li spry:repeat="DSpresence" spry:if="'{DSpresence::ysnPres}' == '1'">{DSpresence::intLSGapMapCode}{dsMUDescription::intLSGapMapCode}</li>
            </ul></td></tr>
        </table>
        </div>
    </div>
    </body>

    The best way to do this is to use xPath filtering. This http://labs.adobe.com/technologies/spry/samples/data_region/FilterXPath_with_params.html example will give you the general idea.
    The example uses a URL variable but there is no need for that if you use a procedure similar to
    function newXPath(cat){
      DSpresence.setXPath("dataroot/Copy_x0020_of_x0020_tblSppMapUnitPres[strSpeciesModelCode=' {DSpresence::strSpeciesModelCode}']");
        DSpresence.loadData();
    The function can be triggered with an onclick event placed on {strSpeciesModelCode}
    Gramps

  • HELP TO MOVING FIELDS FROM TABLES

    HI EXPERTS,
    i have two tables and i wont to move fields of  price to table ZEMPKOSTLPRICE_REC where dates are match.
    <b>I REWARD KINDLY</b>
    i give example
    table
    <b>INTAB_A132[]</b>
    resrc                         datbi                            datab                       price
    0000010599               <b>20081231      20080401</b>     15000.00
    0130130130     <b>20081031      20080301</b>     84000.00
    0130130130     <b>20081231      20081101</b>     0.01
    table
    <b>ZEMPKOSTLPRICE_REC</b>
    i wont like that
    reserc                       period         price        date
    0000010599     042008     15000.00     20080401
    0000010599     052008     15000.00     20080501
    0000010599     062008     15000.00     20080601
    0000010599     072008     15000.00     20080701
    0000010599     082008     15000.00     20080801
    0000010599     092008     15000.00     20080901
    0000010599     102008     15000.00     20081001
    0000010599     112008     15000.00     20081101
    0000010599     122008     15000.00     20081201
    0130130130     032008     84000.00     20080301
    0130130130     042008     84000.00     20080401
    0130130130     052008     84000.00     20080501
    0130130130     062008     84000.00     20080601
    0130130130     072008     84000.00     20080701
    0130130130     082008     84000.00     20080801
    0130130130     092008     84000.00     20080901
    0130130130     102008     84000.00     20081001
    0130130130     112008     0.01     20081101
    0130130130     122008     0.01     20081201
    this is my code
    DESCRIBE TABLE intab_a132 LINES a_index.
            IF a_index GE 1.
              DO a_index TIMES.
                LOOP AT  zempkostlprice_rec INTO wa_zem.
                  READ TABLE intab_a132 INTO wa_intab_a132 INDEX a_index  .
                  IF wa_intab_a132-datab GE wa_zem-date.
                    IF  wa_zem-kbetr IS INITIAL AND wa_zem-konwa IS INITIAL
                    AND wa_zem-kostl IS INITIAL .
                      MOVE: wa_intab_a132-kostl TO wa_zem-kostl,
                            wa_intab_a132-kbetr TO wa_zem-kbetr,
                            wa_intab_a132-konwa TO wa_zem-konwa.
    MODIFY zempkostlprice_rec FROM wa_zem TRANSPORTING kbetr konwa kostl
                WHERE resrc = wa_intab_a132-resrc AND date GE wa_intab_a132-datab.
                      CLEAR:wa_zem,wa_intab_a132.
                    ENDIF.
                  ENDIF.
                ENDLOOP.
                a_index = a_index - 1.
              ENDDO.
            ENDIF.
    i try with this code but i get 84.0000 insred 0.01 in month 11 and 12 in 2008
    0000010599     042008     15000.00     20080401
    0000010599     052008     15000.00     20080501
    0000010599     062008     15000.00     20080601
    0000010599     072008     15000.00     20080701
    0000010599     082008     15000.00     20080801
    0000010599     092008     15000.00     20080901
    0000010599     102008     15000.00     20081001
    0000010599     112008     15000.00     20081101
    0000010599     122008     15000.00     20081201
    0130130130     032008     84000.00     20080301
    0130130130     042008     84000.00     20080401
    0130130130     052008     84000.00     20080501
    0130130130     062008     84000.00     20080601
    0130130130     072008     84000.00     20080701
    0130130130     082008     84000.00     20080801
    0130130130     092008     84000.00     20080901
    0130130130     102008     84000.00     20081001
    <b>0130130130     112008     84000.00     20081101<---- insted  0.01
    0130130130     122008     84000.00     20081201</b>
    REGARDS

    hi varma
    thankes for your answer
    i try your code exactly and what i get is that
    0000010599     042008     15000.00     20080401
    0000010599     052008     0.00     20080501
    0000010599     062008     0.00     20080601
    0000010599     072008     0.00     20080701
    0000010599     082008     0.00     20080801
    0000010599     092008     0.00     20080901
    0000010599     102008     0.00     20081001
    0000010599     112008     0.00     20081101
    0000010599     122008     0.00     20081201
    0130130130     032008     84000.00     20080301
    0130130130     042008     0.00     20080401
    0130130130     052008     0.00     20080501
    0130130130     062008     0.00     20080601
    0130130130     072008     0.00     20080701
    0130130130     082008     0.00     20080801
    0130130130     092008     0.00     20080901
    0130130130     102008     0.00     20081001
    0130130130     112008     0.00     20081101
    0130130130     122008     0.00     20081201
    regards

  • Need help for data extraction from table

    Hi all,
    i have a requirement where i need to identify fields PERNR,BEGDA,ENDDA,REASN,fmlan in table PA0672 .If all these field are identical for an employee in more than one record, then greatest value of REMAN field out of these records should be displayed only in output.
                                            How would i go about it?
    Thanks
    Snehasish

    select PERNR BEGDA ENDDA REASN REMAN
      into table itab
      from PA0672.
    * delete all but the highest reman value for each pernr
    sort itab by pernr reman descending.
    delete adjacent duplicates from itab comparing PERNR BEGDA ENDDA REASN.

  • Function module to get the details from table COEP

    hi all,
    I have to select the data from COEP table based on OBJNR.i don't have  any other key information.so i have to select the data based on OBJNR only.
    can any one please tell me is there any function to get the data from this table.
    Thanks.

    Hi
    Try the fun module
    K_CO_OBJECT_BALANCE_GET
    see the sample select statement for COEP
    clear cobrb_tab.
      refresh cobrb_tab.
      select objnr            " Object No
             rec_objnr1       " Ref Object No
             bureg            " Dostribution Rule
             lfdnr            " Sequence No
             perbz            " Settlement Rule
             konty            " Acct Assign Category
             bukrs            " Company Code
             kostl            " Cost Center
         into table cobrb_tab
         from cobrb
         where kostl in rn_kostl.
      sort cobrb_tab by objnr rec_objnr1.
      delete adjacent duplicates from cobrb_tab comparing objnr.
    Get the Settlement Costs from COEP Table
      clear it_set_tab.
      refresh it_set_tab.
      if not cobrb_tab[] is initial.
        select kokrs            " Controlling Area
               belnr            " Acc Document
               buzei            " Line Item
               perio            " Period Block
               wkgbtr           " Value in CO Curr
               lednr            " Ledger No
               objnr            " Object No
               gjahr            " Fiscal Year
               wrttp            " Actuals
               versn            " Version
               kstar            " Cost Element
               beknz            " Dr/Cr Indicator
               parob1           " Partner Object
           into table it_set_tab
           from coep
           for all entries in cobrb_tab
           where lednr = c_lednr  and
                 wrttp = c_wrttp2 and
                 versn = c_versn  and
                 gjahr = p_gjahr  and
                 objnr = cobrb_tab-objnr and
                 parob1 = cobrb_tab-rec_objnr1 and
                 beknz in (c_o, c_a).
      endif.
    Reward points for useful Answers
    Regards
    Anji

  • Help to move date from table

    hallow
    i have table a_itab with  begdate and  endate and i wont to move it to table
    with period and price for period <b>on every month</b>
    how is the <b>best</b> way to do that?
    <b><REMOVED BY MODERATOR></b>
    i give example
    a_itab
    reserc--endate---begdate--knumh--
    price
    0000008254     20070330     20070101     0000014850     3000.00
    0000010599     20080731     20080401     0000014851     15000.00
    0000123456     20070331     20070101     0000014834     20000.00
    0000123456     20070631     20070601     0000014835     80.00
    i wont
    b_itab
    period----price--
    reserc
    012007--3000.00--
    0000008254
    022007--3000.00--
    0000008254
    032007   3000.00         0000008254
    042008   15000.00       0000010599
    052008   15000.00       0000010599
    062008   15000.00       0000010599
    072008   15000.00       0000010599
    012007   20000.00       0000123456
    022007   20000.00       0000123456
    032007   20000.00       0000123456
    042007   80.00             0000123456
    052007   80.00             0000123456
    062007   80.00              0000123456
    Regards
    Message was edited by:
            Alvaro Tejada Galindo

    Hi,
    Please try this.
    DATA: DURATION TYPE I,
          DATE     TYPE SY-DATUM.
    LOOP AT A_ITAB.
      CALL FUNCTION 'HR_GBSXP_GET_MONTHS'
        EXPORTING
          FIRST_DATE        = A_ITAB-BEGDATE
          SECOND_DATE       = A_ITAB-ENDDATE
          MODIFY_INTERVAL   = ' '
        IMPORTING
          DURATION          = DURATION
        EXCEPTIONS
          INVALID_SEQ_DATES = 1
          OTHERS            = 2.
      DURATION = DURATION + 1.
      DO DURATION TIMES.
        IF SY-INDEX = 1.
          DATE =  A_ITAB-BEGDATE.
        ELSE.
          IF DATE+4(2) = '12'.
            DATE(4) =  DATE(4) + 1.
            DATE+4(2) = 1.
          ELSE.
            DATE+4(2) =  DATE+4(2) + 1.
          ENDIF.
        ENDIF.
        B_ITAB-PERIOD = DATE(6).
        B_ITAB-PRICE  = A_ITAB-PRICE.
        B_ITAB-RESERC = A_ITAB-RESERC.
        APPEND B_ITAB.
      ENDDO.
    ENDLOOP.
    Regards,
    Ferry Lianto

  • Open HUB ( SAP BW ) to SAP HANA through DB Connection data loading , Delete data from table option is not working Please help any one from this forum

    Issue:
    I have SAP BW system and SAP HANA System
    SAP BW to SAP HANA connecting through a DB Connection (named HANA)
    Whenever I created any Open Hub as Destination like DB Table with the help of DB Connection, table will be created at HANA Schema level ( L_F50800_D )
    Executed the Open Hub service without checking DELETING Data from table option
    Data loaded with 16 Records from BW to HANA same
    Second time again executed from BW to HANA now 32 records came ( it is going to append )
    Executed the Open Hub service with checking DELETING Data from table option
    Now am getting short Dump DBIF_RSQL_TABLE_KNOWN getting
    If checking in SAP BW system tio SAP BW system it is working fine ..
    will this option supports through DB Connection or not ?
    Please follow the attachemnet along with this discussion and help me to resolve how ?
    From
    Santhosh Kumar

    Hi Ramanjaneyulu ,
    First of all thanks for the reply ,
    Here the issue is At OH level ( Definition Level - DESTINATION TAB and FIELD DEFINITION )
    in that there is check box i have selected already that is what my issue even though selected also
    not performing the deletion from target level .
    SAP BW - to SAP HANA via DBC connection
    1. first time from BW suppose 16 records - Dtp Executed -loaded up to HANA - 16 same
    2. second time again executed from BW - now hana side appaended means 16+16 = 32
    3. so that i used to select the check box at OH level like Deleting data from table
    4. Now excuted the DTP it throws an Short Dump - DBIF_RSQL_TABLE_KNOWN
    Now please tell me how to resolve this ? will this option is applicable for HANA mean to say like , deleting data from table option ...
    Thanks
    Santhosh Kumar

  • Need to Create Search Help Based on Condtions from one table to another tab

    Hi All,
    I have a table like ZGROUP Which contains the data below
    Filed name Filed Name Filed Name
    ZGROUP ZTYPE ZTEXT
    Entries
    ABC P TEXT FOR
    C P SDFNSDFKLN
    DDDD PSG TEPRTPERERTWERT
    DEF P TEST
    FFFFF PSG
    SEF PS SDFSDFLASLDFNASDLFN
    XYZ PS TESTING
    Whree P is Product , PS- Point of Sales, PSG-Sales Group
    Now i am going to crate another ZPROUDCT TABLE
    FIELDNAME FIELDDESCRITPON
    PRODUCT PROD_DESC
    Entry
    abc pRELATED ENTRY
    My Questions
    1) ZGROUPS table has 3 kinds of data P, PSG, PS type records,
    1) In Table ZPROUDCT , I want to create search help only P records for Table Zproduct of the field Product FROM zGROUPS table
    2) In Table Zsales , I want to create search help only PS records from ZGROUPS table
    3) In Table ZPSG, I want to create search help only PSG records from table ZGROUPS
    is it possible to create search help from One Master Table(ZGROUPS) table to other tables based on conditions.
    Please help me.
    very urgent
    Regards,
    Raju

    if  <condition>
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR <field>
    SELECT <field>
             FROM <table>
             INTO TABLE i_tab
      CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'                  "function module to provide f4 help to sold-to-party
        EXPORTING
          retfield        = "XXXX"
          dynpprog        = sy-repid
          dynpnr          = sy-dynnr
          dynprofield     = '<field name>'
          value_org       = 'S'
        TABLES
          value_tab       = i_tab
    endif.
    lkike this u can check the condition and selec the data from table and assign it into one internal table and then call the FM it will give the f4 help to particular field
    reward if helpful
    regards,
    Khan.

  • To get login details of portal into webdynpro application

    Hi All,
             How to get the portal login details(user name) into my webdynpro application.
    Thank you,
    Harsha P.

    Hi,
    If you want to have portal login details from backend system (with ABAP) you should ask this question in some portal forum and ask if it is possible. This has nothing to do with workflow or UWL. Even if you get the portal user ID to the backend system, then what? Do you want to manipulate the portal roles etc. from your ABAP WD application? Then you will have even more complicated requirements to achieve with ABAP. It is not that straightforward to call different portal functionalities from backend system. You might need to do some "portal development". And eventually your ABAP WD application might come just an unnecessary wrapper component for calling some web services or whatever in portal.
    Regards,
    Karri

  • F4 help on fields in the table

    Hi guyz,
    I have created table with 4 fields
    1.client
    2.language
    3.name
    4.text
    now I want f4 button next to all the fields , if I click on client all  client numbers should display and if I click language all possible languages should display , same for all other fields.
    I have done using search help but that bringing all the entries in table.
    Plz advise.
    regards

    Hi,
    If you use a standard data element for the table field a search help will automatiocally be assigned to it, to check whether a search help is already assigned to a element you can click on the Entry help/check tab of the table. if you find this statement -  Input help implemented with check table, there it means it already has a search help.
    If you creating data elements of your own then you need to create a search help in SE11and assign it manually to the field which you want to have an F4 help.
    To know how to create a search help visit the below link:
    [Creating Search helps|http://sap-img.com/abap/elementary-collective-search-help.htm]
    Regards,
    Amit

  • Any event for getting Wi_id no from table Swwwihead

    Hi ,
    I am getting wi_id using interface if_swf_ifs_workitem_exit  using method after creation but during this time workitem is not saved to table swwwihead. Is there any event or any other alternative to get the workittem from that table after saving the data and before it goes to the sap inbox.?
    Regards,
    Shwetang

    Hi ,
    I am getting the needed data from the paramenter but my problem is i had made one user decision activity which is going to sap inbox and i have to send thid decision box to lotus notes inbox which i am doing with a program rswuwfml2.
    I am writing this program exit to run this program when the workitem is created and these are getting from the method but the program   rswuwfml2 requires work id  and other details from table swwwiead as when method is populaed this details are not commited o the table.
    I don't want call his program explicity.
    Hope this will clear your doubts regarding my question.
    Thanks
    Shwetang

  • I cannot upload photos from iPhoto 9 to Flikr. When I attempt to do so, I get the message "the login details or auth token passed were invalid." Please help.

    I cannot upload photos from iPhoto 9 to Flikr. When I try, I get the message "the login details or auth token passed were invalid."  I am using iPhoto 9 version 8.1.2, and my OS is 10.9.5. My computer is a MacBook Pro. I do not have this trouble with my iMac.  This trouble started before I updated to OS10.9.5.  I do not have this problem when uploading to FaceBook or sending by e-mail.
    This problem started when I tried to upload some photos after hitting the "use other account" tab. This took me to a Flikr site asking me for permission to make my iPhoto information available to others.  I clicked "yes," and then I changed my mind and clicked "no." I haven't been able to upload to Flikr since.
    I searched Flikr and Yahoo for a solution, and Yahoo says the trouble is in iPhoto.  I checked my Flikr account, and iPhoto extensions are enabled.
    I need to upload some school and alumni photos, so I sure could use some help. I am Not computer proficient.  Thank you.

    1. You did not get an error message telling you that your iPhoto library was getting full. You got a message telling you that your HD was getting full, right?
    OS X needs about 10 gigs of hard drive space for normal OS operations - things like virtual memory, temporary files and so on.
    Without this space your Mac will slow down as the OS hunts for space on the disk, files will be fragmented, also slowing things down, apps will crash and the risk of data corruption - that is damage to your files, photos, music - increases exponentially.
    Your first priority is to make more space on that HD. Nothing else can be done until you do.
    Purchase an external HD and move your Photos and Music to it. Both iPhoto and iTunes can run perfectly well with the Library on an external disk.
    Your Library has been damaged from being run on an overfull disk.
    How much free space on it now?

Maybe you are looking for

  • Stock balance analysis

    Dear, I have a requirement regarding material stock analysis. For example-I have two stores in a plant.I want to see the stocks as well value of stock on a particular date suppose 25/06/2008 for a particular store. -If i will use MC.9,it will show th

  • Windows 7 clients suddenly unable to connect to SQL database

    Our environment in a nutshell: Server1: Small Business Server 2003 R2 (Active Directory domain, it is the sole domain controller [DC]) Server2: Dedicated to SQL Server 2005 and the SAP Business One database Server3: Windows Server 2003 R2 Standard Te

  • No access to setup utility of wrk54g; also no ping to 192.168.1.1 ....

    hi, I have an wrk54g wireless router and want to setup security. Internet connection works fine (hence this request for help ;-) but accessing setup utility (by entering address 191.168.1.1 of router) gives "page not found". Even a ping to 192.168.1.

  • Minimize browser won't stay minimized

    VERY Irritating PROBLEM! When I minimize browser pages then add a new page all of the trayed pages pop up. They cascade and cover up the screen. I uninstalled Firefox and re installed latest download and it still does it. Any ideas? == This happened

  • Class cannot access its superinterface

    We're migrating an application from jDeveloper 9 to jDeveloper 10g (10.1.3.5), and have got almost everything working on the new server. However, one thing is not working: whenever a DataTable is set up with an edittarget (to edit a row in a new webp