Squirrelmail problem - data dir does not exist [solved]

After install package, configuration (conf.pl) and log in I see error:
Could not create initial preference file!
/var/lib/squirrelmail/data/ should be writable by user nobody
Please contact your system administrator and report this error.
When I run http://mydomain/squirrelmail/src/configtest.php I see:
FATAL ERROR: Data dir (/var/lib/squirrelmail/data/) does not exist!
Of course /var/lib/squirrelmail/data/ exists (created by pacman) and its is owned by nobody.
Problem is independent of /var/lib/squirrelmail/data/ permission.
Last edited by qwak (2007-06-18 16:20:50)

qwak wrote:
Soved.
It was php security issue and some changes in http (or php) configuration was required.
See: http://pl2.php.net/features.safe-mode
I just set:
php_admin_value open_basedir /
in my mail virtual host section.
I thing that squirrelmail package should include .../extra/http-squirrelmail.conf apache configuration file with required configuration or some info should by typed to user when squirrel package is installed.
I agree!  I just ran into this same problem!

Similar Messages

  • P16B Error : Entry pernr date VA does not exist in T5W/G

    Hi
    We are facing an error wherein we are not able to update the salary package details (FBP) using transaction P16B.
    It throws an error saying "Entry <pernr> <date> VA does not exist in T5W/G" before the screen loads.
    On debugging we found the error occurs in HR_SPA_VARIANT_GET function module where it checks for entry in the table T5W7G.
    The entry in the above table is not getting created even if update using P16B_ADMIN.
    The error is getting rectified if we manually create the entry in the table T5W7G and T5W7I for both VA and VB.
    I am unable to find a configuration node for creating the entries in the table's T5W7G and T5W7I .
    Please advice on how this error is to be rectified.

    Hi
    You have to either fix this in configuration through SPRO or If it is not solved through SPRO then you have search for an SAP note.
    Thanks & Regards
    Jyo

  • Data source does not exist

    Dear all,
    am extracting the data from Vistex datasource,IRM/LIS_RM_IPCRASP               IP CR Agreement Conditions
    after activating in RSA5 i can able to see in RSA6
    but while activating the data source after the extract structure has successfully generated,
    the system showing data source does not exist
    plz help me

    hi,
    when i click the maintain button save button will appear,
    but in my case this save button not highlighting...
    when i check in ST22 the system proposed error mesage is table illegal statement,
    i found this error in many forums but its not related to datasource actvation,
    plz anyone giv me solution as soon as possible...
    regards
    Edited by: gadhatharan thirunavukkarasu on Oct 15, 2011 7:57 AM

  • Secure store lib dir does not exist - unable to open config tool

    Hi we are using NW 7.0 with windows 2005 (AS java).
    when i click on configtool in central instance it says
    Error occured while working with configuration( scanning)
    Msg: Error occured : secure store lib Dir does not exist :
    server\sapmnt\SID\SYS\global\security\lib\tools
    please suggest
    Thanks
    KK

    HI ,
    Was config tool working earlier?
    Please check if direcories sapmnt & saploc exist are you are able to access them.Check permission on it.
    May be your windows server got patched and some security policy got changed.Worth a revisiting and checking.
    Other thing you can try is take a backup of bootstrap.properties file and modify the location of library from 
    server\sapmnt\J2EE\sys\global\security\lib\tools to \usr\sap\J2EE\sys\global\security\lib in the bootstrap file.
    Regards,
    Ashutosh

  • Data Source does not exist in version A.

    Dear Experts,
    I have created Data Source in R/3 ( ECC ) by t. code rso2. If am trying to display Data source by t.code RSA2 . It gives message
    Data Source does not exist in version A.
    Regrads,
    Anand Mehrotra.

    Hi Anand
    RSO2--->Put DataSource name -
    >Change button -
    >Save -
    >It should open a new screen with DS header data -
    > From Menu ( DataSource -
    >Generate).
    Now you should be able to see your datasource.

  • System Refresh problem - request/task does not exist

    I have a problem after system refresh, and when I am trying to import users and roles, I get the message - request/task XXXXXXX does not exist.
    Data/cofile are present.
    Can someone help me please ?
    Thanks in advance,
    Jordan

    I got it ... in SCC4, the client role must have been set to TEST instead of PRODUCTION, since the refresh is on Quality.

  • Compare data and output data that does not exist

    Hello,
    i wrote a procedure to insert the data into a 3rd table where i compare the data between two tables, if it matches it shouls insert into the test_a table. if the does not exist either one of the tables i.e. test_code and test_type it should output that data where it doesn't exist. my code works for only one table i.e. test_code. its not dbms outputing a row that is not in test_type table. could any tell my why?suppose if test_code a row that is not in test_type it should output saying this row mismatches with test_type and vice versa.
    --here is my code
    CREATE OR REPLACE PROCEDURE test.GET_data
    IS
    BEGIN
    DELETE test.test_a;
    FOR c IN (select a.cCODE ,
    a.type,
    a.indicator,
    rtrim (xmlagg (xmlelement (e, a.codenum || ',' )order by a.codenum).extract ('//text()'), ',') codeNUMber,
    b.ccode cc,
    b.type tp,
    b.indicator ind
    from test.test_code a, test.test_type b
    where a.ccode = b.ccode(+)
    AND a.type = b.type(+)
    AND a.indicator = b.indicator(+)
    Group by a.ccode, a.type, a.indicator, b.CCODE,b.type, b.indicator
    order by a.ccode)
    LOOP
    BEGIN
    IF (c.cCODE = c.CC
    AND C.type = C.tp
    AND C.indicator = C.ind
    AND C.SYS_IND = C.SYSIND) THEN
    insert into test.test_a (CCODE, type, indicator)
    values (C.cCODE, C.type, C.indicator);
    ELSE
    dbms_output.put_line('Rules Problem For cCODE: ' || C.cCODE);
         dbms_output.put_line('type: ' || C.type);
         dbms_output.put_line('indicator: ' || C.indicator);
    dbms_output.put_line('Rules Problem For CC: ' || C.CC);
    dbms_output.put_line('tp: ' || C.tp);
    dbms_output.put_line('ind: ' || C.ind);
    END IF;
    EXCEPTION
    WHEN OTHERS THEN
    dbms_output.put_line('Rules Problem For cCODE: ' || C.cCODE);
         dbms_output.put_line('type: ' || C.type);
         dbms_output.put_line('indicator: ' || C.indicator);
    dbms_output.put_line('Rules Problem For CC: ' || C.CC);
    dbms_output.put_line('tp: ' || C.tp);
    dbms_output.put_line('ind: ' || C.ind);
    END;
    end loop;
    commit;
    END;
    Thanks

    You need to use a FULL OUTER JOIN instead an OUTER JOIN for that.
    Just curious, why do you need to use dbms_output instead of running the SQL query with additional conditions (the if part of your procedure)?. You can use it twice, one to insert the ones that match, and one for selecting the others that do not match.
    Regards.

  • 0SD_C03 cube contains data that does not exist  in PSA

    Hi,
    We have a problem with data difference in cube and PSA. Firstly we deleted PSA extactly then extracted data from r3 to PSA. PSA has 2 records now. Then we extracted data to cube (0SD_C03) via DTP (using 2LIS_13_VDITM transformation rules). However, the cube contains approximately 300 000 data. Cube contains many records that does not exist in PSA.
    Where these data come from?
    thanks in advance,

    Hi,
    In your PSA overview, did you change the date that limits the PSA packages showing?
    (middle top of screen) and click refresh?
    it might be that you only have deleted the PSA from a certain date onwards.
    Success,
    Udo

  • JCoDestination Problem: JCO_ERROR_RESOURCE: Destination does not exist

    Hello Experts,
    I followed the JCo3 tutorial of accessing backend ABAP system.
    I implemented the following code:
    File configuration = new File(JCO_DESTINATION_APP +".jcoDestination");
    if(!configuration.exists() || updateprovider) {
       Properties properties = new Properties();
       properties.setProperty(DestinationDataProvider.JCO_ASHOST, Configuration.getInstance().ashost);
       properties.setProperty(DestinationDataProvider.JCO_SYSNR, Configuration.getInstance().sysnr);
       properties.setProperty(DestinationDataProvider.JCO_CLIENT, Configuration.getInstance().client);
       properties.setProperty(DestinationDataProvider.JCO_USER, Configuration.getInstance().user);
       properties.setProperty(DestinationDataProvider.JCO_PASSWD, Configuration.getInstance().passwd);
       properties.setProperty(DestinationDataProvider.JCO_LANG, Configuration.getInstance().lang);
       properties.setProperty(DestinationDataProvider.JCO_POOL_CAPACITY, "" + Configuration.getInstance().connections);
       properties.setProperty(DestinationDataProvider.JCO_PEAK_LIMIT, "" + Configuration.getInstance().connections);
       FileOutputStream fos = new FileOutputStream(configuration, false);
       properties.store(fos, JCO_DESTINATION_APP);
       fos.close();
    When I execute the following code:
    this.getDestination().getAttributes()
    I get the following error:
    com.sap.conn.jco.JCoException: (106) JCO_ERROR_RESOURCE: Destination JCO_DESTINATION_APP does not exist
         at com.sap.conn.jco.rt.DefaultDestinationManager.update(DefaultDestinationManager.java:163)
         at com.sap.conn.jco.rt.DefaultDestinationManager.searchDestination(DefaultDestinationManager.java:292)
         at com.sap.conn.jco.rt.DefaultDestinationManager.getDestinationInstance(DefaultDestinationManager.java:90)
         at com.sap.conn.jco.JCoDestinationManager.getDestination(JCoDestinationManager.java:61)
         at com.exz.app.common.helper.IntegrationPlatformAccessor.getDestination(IntegrationPlatformAccessor.java:83)
         at com.exz.app.common.helper.IntegrationPlatformAccessor.<init>(IntegrationPlatformAccessor.java:67)
         at com.exz.app.common.helper.IntegrationPlatformAccessor.getInstance(IntegrationPlatformAccessor.java:32)
         at com.exz.app.interfacemng.services.Template_WebService.<init>(Template_WebService.java:34)
         at com.exz.app.interfacemng.services.ConfigurationScenarioServiceClient.<init>(  ...
    What am I missing?
    Regards.

    As a starter it might be best to take try out the examples that ship with the JCo3 distribution. I cannot comment much on your code, as it's an excerpt and doesn't show everything. E.g. I have no clue what the line this.getDestination().getAttributes() means; usually you retrieve destinations via the class JCoDestinationManager and there you always have to at least provide the name of the destination.
    So let me give some generic comments instead:
    <ul style="list-style:circle">
    <li>Properties for destinations can be returned via a class that implements the interface DestinationDataProvider; you can register your own implementation (once) via static method Environment.registerDestinationDataProvider().</li>
    <li>SAP ships the JCo with a generic file handler for providing destination attributes: It basically searches in the current directory (i.e. from where you started your application) for client destinations with the given name and extension ".jcoDestination" (server destinations use extension ".jcoServer"). As far as I remember you can also change the directory where those destination property files are searched for by setting System property "jco.destinations.dir".</li>
    <li>I strongly recommend registering your own DestinationDataProvider (or ServerDataProvider) and so does SAP; this is especially true if you get your properties from somewhere else (as it seems to be in your case) or want some specific processing (e.g. use encrypted passwords in your properties that you decrypt upon loading).</li>
    <li>For troubleshooting your existing coding I'd verify that you did actually create the file with the properties and that the file name (without the extension) matches the name that you use when trying to retrieve the destination.</li>
    </ul>
    Cheers, harald

  • Oui Inventory dir does not exist or is not writable

    Hello there.
    So this is another problem when installing 9i on HP-UX 11.0.
    After entering the group the oui request to execute the /tmp/OrainstRoot.sh with root privileges.
    Finished the script without any errors as root
    the oui show an error
    The Oracle Universal Installer Inventory on this system does not exists or is not writable.
    - I checked that I really executed the script as root without any error
    - and the install user (oracle) is member of the install group (oinstall)
    So I checked every of the suggested problems without results.
    If you encountered the same problems somewhere...please let me know.
    Thanks
    Sigi

    I'm having exactly the same problem trying to install 10g on HPUX 11.23.
    The orainstRoot.sh script completed successfully but then I get the same error as you.
    Did you manage to resolve this issue? Sorry I'm no help to you,
    cheers,
    Scott

  • Problem - STD Task does not exist in ECC 6.0

    Hi All,
    While looking for SAP standard Workflows in ECC 6.0, I am able to go to
    Workflow --> Activiy --> Task, but after that I am not able to go inside the task and see the properties/ specifications of the task, its not giving any error msg, but its not navigating to the task screen.
    I have tried other way also, i have copied the task number and pasted it in task with task type as "standard task" in PFTC, n tried to display it , but it is throws the message as "task does not exist".
    Same thing happens if I copy any workflow number , paste it in task with task type as "Workflow Template" n try to display in PFTC.
    Because of this problem I am not able to use any standard task in my zworkflow.
    It will be great if someone can tell the possible cause and solution of this problem.
    Thanks
    Priya

    Hey Priya,
    Its standard Leave workflow's Standard Task, Then as Mark and others said, please check the authorization stuff. Also please remember not to give TS when you select the Standard Task.
    Regards
    <i><b>Raja Sekhar</b></i>

  • MIGO Posting problem show material does not exist

    hi,
    in migo i am not able to process it show me the following error message :-
    (Material M11 PLN1 S11 does not exist
    Message no. M7006
    Diagnosis
    For material M11, no material master data exists in plant PLN1, storage location S11.
    Procedure
    Make sure your entries are correct.
    If your entries are correct, then storage location data does not yet exist for the material.
    Storage location data is created when you maintain the Storage view for the material or use the 'Enter Storage Locations' function in the material master menu or post the first goods receipt (provided that automatic creation of storage location data is allowed for the given plant and movement type).
    Please help me out
    Kind regard
    maashish

    Hi,
    Check Material is maintain your plant and storage location with MM03.
    Enter MM03 t-code, enter material code and press enter then check material is maintain your plant and storage location.
    If no than first maintain it with below mention detail.
    Enter MM01 - For Material Master creation.
    Enter your material M11, Plant - PLN1, Storage location - S11.
    And maintain other required detail.
    Then check with migo.
    Regards,
    Mahesh Wagh

  • Punch Out Catalog problem business patner does not exists

    Dear experts,
    We configured punch out catalogs. When we check out the portal pages has the error "business patner does not exists".
    How do i resolve this. How to create the business partner on SRM system to get rid of this error.
    Thanks,
    vikas

    Hi Masa,
    I am enclosing the OCI Parameters returned from the external catalog.
    NEW_ITEM-shoppingcartID[1]                               SH95
    NEW_ITEM-DESCRIPTION[1]                                DISPENSER,FLAG&POST-IT
    NEW_ITEM-MATGROUP[1]     
    NEW_ITEM-EXT_CATEGORY[1]              44111501
    NEW_ITEM-EXT_SCHEMA_TYPE[1]              unspsc
    NEW_ITEM-MATNR[1]     
    NEW_ITEM-QUANTITY[1]                                   1.000
    NEW_ITEM-UNIT[1]     EA
    NEW_ITEM-PRICE[1]                                 6.64
    NEW_ITEM-PRICEUNIT[1]                                    1
    NEW_ITEM-CURRENCY[1]                                 USD
    NEW_ITEM-LEADTIME[1]                                    1
    NEW_ITEM-VENDOR[1]                              1000000000
    NEW_ITEM-VENDORMAT[1]                              A2C-313D
    NEW_ITEM-MANUFACTCODE[1]               MMM-C
    NEW_ITEM-MANUFACTMAT[1]              C-313D
    NEW_ITEM-CONTRACT[1]     
    NEW_ITEM-CONTRACTITEM[1]     
    NEW_ITEM-EXT_PRODUCT_ID[1]             A2C-313D
    NEW_ITEM-LONGTEXT_:132             DISPENSER,FLAG&POST-IT
    NEW_ITEM-SERVICE[1]     
    Once the external catalog returns to SRM it is throwing Null Value Exception. Is this exception is in regards to Material Group or something missing in the configuration.
    Error Message:
    The following error text was processed in the system : Access via 'NULL' object reference not possible.
    The termination type was: RABAX_STATE
    The ABAP call stack was:
          Method: /SAPSRM/IF_CLL_MAPPER~REFRESH of program /SAPSRM/CL_CH_WD_DOTM_SC_I_BD=CP
          Method: WDDOMODIFYVIEW of program /1BCWDY/IU0RHDVCLMQ4J466CPJC==CP
          Method: IF_WDR_VIEW_DELEGATE~WD_DO_MODIFY_VIEW of program /1BCWDY/IU0RHDVCLMQ4J466CPJC==CP
          Method: DO_MODIFY_VIEW of program CL_WDR_DELEGATING_VIEW========CP
          Method: MODIFY_VIEW of program CL_WDR_VIEW===================CP
          Method: DO_MODIFY_VIEW of program CL_WDR_CLIENT_COMPONENT=======CP
          Method: DO_MODIFY_VIEW of program CL_WDR_CLIENT_COMPONENT=======CP
          Method: DO_MODIFY_VIEW of program CL_WDR_CLIENT_COMPONENT=======CP
          Method: DO_MODIFY_VIEW of program CL_WDR_WINDOW_PHASE_MODEL=====CP
          Method: PROCESS_REQUEST of program CL_WDR_WINDOW_PHASE_MODEL=====CP
    Please let me know how to fix this.
    Thanks,
    Vikas

  • How to avoid this problem "tablespace 'USERS' does not exist"

    I dont want to create all source tablespaces in target.
    I have given unlimited tablespace priv to user.Still I get this error
    IMP-00003: ORACLE error 959 encountered
    ORA-00959: tablespace 'USERS' does not exist

    The situation, I understand is as follows:
    1. An original export file contains references to the USERS tablespace
    2. You want to import it, but you don't want to create the USERS tablespace
    3. You create a user and assign USERS as its default tablespace, even though you don't have it created and you don't want to create it.
    If you assign a default tablespace to a user, first thing, make sure this tablespace exists, when import is performed if tablespace defined at import file doesn't exist, then import will use the default user's tablespace, in this case the USERS tablespace.
    So, if you want to avoid this behaviour, then assign the user an existing tablespace when defining the default tablespace for this user.
    Once corrected, retry import.
    ~ Madrid

  • Can a trendline in Numbers be extended to see predictions without adding data that does not exist?

    The spread sheet that I'm working with adds daily data over a 6 month timeframe. The trendline stops at the newest data point. I would like to know what to expect in 6 months so I can make adjustments to adjust progress. I would like to do this without adding false data that I don't have yet.
    Thanks

    If you notice in my first response... the top screenshot shows a plot with a trend line that shows the equation.  I used the slope and offset in the formula that extend the "prediction"
    you could use the forecast() or linest() function to create this prediction with out the trend line.
    Here is another example:
    I entered actual (but made up) data in columns A and B
    then I calculate the slope and intercept of that data in column F
    F3=INDEX(LINEST(B2:B6,A2:A6,TRUE,TRUE), 1)
    F4=INDEX(LINEST(B2:B6,A2:A6,TRUE,TRUE), 2)
    now in columns C and D I enter X values and calculate predicted Y values using the slope and intercepts:
    D2=$F$3×C2+$F$4
    select D2 and fill down as needed

Maybe you are looking for