Php flex settings

i hav mde an application form thats connects with a php database uSING WAMP.
now the problem i m facing is that i want to deploy this application in to my own server....
i dnt knw wat to put in webroot=? and rooturl=?......
in wamp i used to put webroot=the server (www folder) and rooturl=localhost....
do i hav to make changes also into the http request that calls the php file...??

I believe Development has to be done locally.  After you're done devloping you can deploy wherever...
The c:\ and the http://localhost you initially enter is for development, the definition you do for HTTPService is important, you should be using relative paths to root or if you want you can do a hard http://www.yourdomain.com/directoryname

Similar Messages

  • 500 Internal server error while running sqlsrv_query in PHP

    Hello everyone I am having a problem with sqlsrv_query I will be grateful to you please provide some help.
    I am running a query through php:
    $ls_parcel_query = "select  * from  ParcelDetail order by ExtractDate";
    $result = sqlsrv_query($conn, $ls_parcel_query, array(), array("Scrollable"=>"keyset","QueryTimeout"=>300));
    $no_of_rows = sqlsrv_num_rows($result);
    echo "<br/>".$no_of_rows;
    It gives (After 30 seconds):
    500 - Internal server error.
    There is a problem with the resource you are looking for, and it cannot be displayed.
    I have php.ini settings like below:
    max_execution_time = 90
    memory_limit = 128M
    While running this query in SQL SERVER 2008 R2, it successfully gives result in some times in 1 minute and sometimes in 2 minutes.

    Hello,
    A 500 Error will be caused due to many reason.To troubleshooting this issue, you can try to check out the error log and get more information on what is causing the error.
    Reference :
    "500 Internal Server Error" while running PHP
    HTTP Error 500 Internal server for php pages and solution
    Regards,
    Fanny Liu
    Fanny Liu
    TechNet Community Support

  • How to move a money value from java to Flex

    According to
    http://livedocs.adobe.com/flex/2/docs/wwhelp/wwhimpl/common/html/wwhelp.htm?context=LiveDo cs_Parts&file=00001103.html
    I can pass a Double, Float, Long, Short, BigDecimal or the primative equivalent types from java to Flex and they will be converted into a number.
    My testcase says that only BigDecimal actually shows up on the Flex side.
    Am I missing something or is there a problem in BlazeDs/Flex somewhere?
    Bill Tims
    P.S. If you would like my sample code, I'll be glad to post it.

    Pete
    After looking at it I see why you were confused. Here is the Java object, the receiving Flex object, and the debug info from the SystemOut.log out of JBos 4.2. All of this is using Java 1.6 and Flex 3.0. I'm using the December, 2008 BlazeDs jar files.
    The variable bCd is being serialized as BCd. If I change it to bcd, everything works fine. We also tested this with php->flex and that works fine, which suggests the problem is in Blaze.
    public class Test2 implements Serializable{
    private static final long serialVersionUID = 1805176418478176484L;
    private String abc = "abc";
    private String bCd = "bcd";
    public Test2() {
    public String getAbc() {
    return abc;
    public void setAbc(String abc) {
    this.abc = abc;
    public String getBCd() {
    return bCd;
    public void setBCd(String cd) {
    bCd = cd;
    ============================================================
    package jdbcTables.businessdelegate {
    import mx.rpc.soap.types.*;
    import org.slsot.mis.jdbc.*;
    [RemoteClass(alias="org.slsot.mis.value.inquiry.Test2")]
    [Bindable]
    public class Test2
    public var abc:String;
    public var bCd:String;
    } /* Test2*/
    =============================================================
    12:24:22,084 INFO [STDOUT]-btims [BlazeDS]03/03/2009 12:24:22.084 [Endpoint.General] Channel endpoint slsot-amf received request.
    12:24:22,084 INFO [STDOUT]-btims [BlazeDS]03/03/2009 12:24:22.084 [Endpoint.AMF] Deserializing AMF/HTTP request
    Version: 3
    (Message #0 targetURI=null, responseURI=/4)
    (Array #0)
    [0] = (Typed Object #0 'flex.messaging.messages.RemotingMessage')
    operation = "callFunction"
    source = null
    destination = "accessor"
    timestamp = 0
    headers = (Object #1)
    DSEndpoint = "slsot-amf"
    DSId = "nil"
    clientId = null
    timeToLive = 0
    messageId = "9530B236-243F-4965-4252-CD944C3430F1"
    body = (Array #2)
    [0] = "Test"
    [1] = "test2"
    [2] = (Array #3)
    12:24:22,084 DEBUG [Accessor]-btims Begin Test.test2()
    12:24:22,099 DEBUG [Security]-btims t2=org.slsot.mis.value.inquiry.Test2@1b89df3
    12:24:24,678 DEBUG [Accessor]-btims End Test.test2()
    12:24:24,678 INFO [STDOUT]-btims [BlazeDS]03/03/2009 12:24:24.678 [Service.Remoting] Adapter 'java-object' called 'org.slsot.mis.Accessor.callFunction(java.util.Arrays$ArrayList (Collection size:3)
    [0] = Test
    [1] = test2
    [2] = java.lang.Object[] (Array length:0)
    12:24:24,693 INFO [STDOUT]-btims [BlazeDS]03/03/2009 12:24:24.693 [Service.Remoting] Result: 'org.slsot.mis.value.inquiry.Test2
    abc = abc
    BCd = bcd
    12:24:24,693 INFO [STDOUT]-btims [BlazeDS]03/03/2009 12:24:24.693 [Endpoint.AMF] Serializing AMF/HTTP response
    Version: 3
    (Message #0 targetURI=/4/onResult, responseURI=)
    (Externalizable Object #0 'DSK')
    (Typed Object #1 'org.slsot.mis.value.inquiry.Test2')
    abc = "abc"
    BCd = "bcd"
    1.236104664693E12
    (Byte Array #2, Length 16)
    (Byte Array #3, Length 16)
    (Byte Array #4, Length 16)

  • Upload file in Webserver using Flex

    I am currently working in Flex and in a requirement I need to upload a file from local file system to a webserver. The webserver I am using is Apache Tomcat web server . I tried doing that using FileReference class but got IOException when tried to call upload function. Anybody know how to upload
    file in Flex please help me out. Its very urgent for me.
    Thanks
    Purna

    You can't upload files to the server directly by using only Flex. You'll need a server-side script that can handle the actual writing of the data. I posted an example on a simple PHP + Flex file uploader back a while, you can take a look at it here: http://blog.wisebisoft.com/2009/01/28/simple-flex-file-uploader/ Good luck.

  • Flex 3.2 & 3.3 Framework Issue w/ Eclipse Plugin

    Hey Guys,
    I'm having an issue with using the 3.2 and 3.3 frameworks with the eclipse plugin (not an issue with the stand alone flex builder) (eclipse v3.3.2).  Pretty much everything works but the code hinting and auto importing doesn't work on some items.  For example anything in the "flash" package structure (ie: Event) will not import, and even worse within actionscript files, if the imports are manually typed out, the next time it does auto import something it'll actually run clean up on the file and delete the manually typed imports.  Also when typing out in mxml certain components, for example an mx:Button, the code hinting will not recognize certain attribues such as "click".  At compile time all is well and works fine as long as everything is manually typed in there.  Of course to really be an efficient coder manually typing and retyping certain imports over and over is not the answer.
    Thanks in advance!
    ~Jamie

    I've been using the FB Eclipse plugin (with Eclipse 3.4 and SDK 3.2.0) quite a bit and haven't had this problem at all, so I'm just taking a stab in the dark here to try to help.  It sounds to me like there might be an incorrect setting in your Flex Build Path properties or something related.  Make sure your project has the correct Flex SDK selected in the Library path, and make sure all the .swc files are showing up underneath it.  In particular, look for playerglobal.swc (that's the file that contains e.g. flash.events.Event).
    If that doesn't help, you really need to provide a little more information in your question, like:
    What have you already tried doing to fix the problem?  (For example, have you completely uninstalled and then reinstalled the Flex Builder Plugin since switching SDKs?  I didn't need to do this the last time I upgraded the SDK, but I'd say it's worth a try, since the installation process is pretty painless.)
    Have you changed any of the Flex settings in Eclipse?
    If you're working with a project you created previously, have you tried creating a brand new Flex project in Eclipse to see if the problem persists in a new project?

  • [svn:fx-trunk] 12087: Dev only. Checking in Flash Builder 4 " Library Projects" for building Flex SDK SWCs in trunk.

    Revision: 12087
    Revision: 12087
    Author:   [email protected]
    Date:     2009-11-21 20:56:09 -0800 (Sat, 21 Nov 2009)
    Log Message:
    Dev only. Checking in Flash Builder 4 "Library Projects" for building Flex SDK SWCs in trunk. These projects are easier to import and do not require linked resource variables to be specified.
    Note: although the trunk does not build textLayout.swc, there appears to be a legitimate compiler error in FlowGroupElement.as as a cast is missing. I'll follow up with TLF.
    QE notes: N/A
    Doc notes: N/A
    Bugs: N/A
    Reviewer: N/A
    Tests run: N/A
    Is noteworthy for integration: No
    Modified Paths:
        flex/sdk/trunk/build.xml
    Added Paths:
        flex/sdk/trunk/frameworks/projects/airframework/.actionScriptProperties
        flex/sdk/trunk/frameworks/projects/airframework/.flexLibProperties
        flex/sdk/trunk/frameworks/projects/airframework/.project
        flex/sdk/trunk/frameworks/projects/airframework/.settings/
        flex/sdk/trunk/frameworks/projects/airframework/.settings/org.eclipse.core.resources.pref s
        flex/sdk/trunk/frameworks/projects/airspark/.actionScriptProperties
        flex/sdk/trunk/frameworks/projects/airspark/.flexLibProperties
        flex/sdk/trunk/frameworks/projects/airspark/.project
        flex/sdk/trunk/frameworks/projects/airspark/.settings/
        flex/sdk/trunk/frameworks/projects/airspark/.settings/org.eclipse.core.resources.prefs
        flex/sdk/trunk/frameworks/projects/flex/.actionScriptProperties
        flex/sdk/trunk/frameworks/projects/flex/.flexLibProperties
        flex/sdk/trunk/frameworks/projects/flex/.project
        flex/sdk/trunk/frameworks/projects/flex/.settings/
        flex/sdk/trunk/frameworks/projects/flex/.settings/org.eclipse.core.resources.prefs
        flex/sdk/trunk/frameworks/projects/framework/.actionScriptProperties
        flex/sdk/trunk/frameworks/projects/framework/.flexLibProperties
        flex/sdk/trunk/frameworks/projects/framework/.project
        flex/sdk/trunk/frameworks/projects/framework/.settings/
        flex/sdk/trunk/frameworks/projects/framework/.settings/org.eclipse.core.resources.prefs
        flex/sdk/trunk/frameworks/projects/halo/.actionScriptProperties
        flex/sdk/trunk/frameworks/projects/halo/.flexLibProperties
        flex/sdk/trunk/frameworks/projects/halo/.project
        flex/sdk/trunk/frameworks/projects/halo/.settings/
        flex/sdk/trunk/frameworks/projects/halo/.settings/org.eclipse.core.resources.prefs
        flex/sdk/trunk/frameworks/projects/osmf/.actionScriptProperties
        flex/sdk/trunk/frameworks/projects/osmf/.flexLibProperties
        flex/sdk/trunk/frameworks/projects/osmf/.project
        flex/sdk/trunk/frameworks/projects/osmf/.settings/
        flex/sdk/trunk/frameworks/projects/osmf/.settings/org.eclipse.core.resources.prefs
        flex/sdk/trunk/frameworks/projects/rpc/.actionScriptProperties
        flex/sdk/trunk/frameworks/projects/rpc/.flexLibProperties
        flex/sdk/trunk/frameworks/projects/rpc/.project
        flex/sdk/trunk/frameworks/projects/rpc/.settings/
        flex/sdk/trunk/frameworks/projects/rpc/.settings/org.eclipse.core.resources.prefs
        flex/sdk/trunk/frameworks/projects/spark/.actionScriptProperties
        flex/sdk/trunk/frameworks/projects/spark/.flexLibProperties
        flex/sdk/trunk/frameworks/projects/spark/.project
        flex/sdk/trunk/frameworks/projects/spark/.settings/
        flex/sdk/trunk/frameworks/projects/spark/.settings/org.eclipse.core.resources.prefs
        flex/sdk/trunk/frameworks/projects/sparkskins/.actionScriptProperties
        flex/sdk/trunk/frameworks/projects/sparkskins/.flexLibProperties
        flex/sdk/trunk/frameworks/projects/sparkskins/.project
        flex/sdk/trunk/frameworks/projects/sparkskins/.settings/
        flex/sdk/trunk/frameworks/projects/sparkskins/.settings/org.eclipse.core.resources.prefs
        flex/sdk/trunk/frameworks/projects/textLayout/.actionScriptProperties
        flex/sdk/trunk/frameworks/projects/textLayout/.flexLibProperties
        flex/sdk/trunk/frameworks/projects/textLayout/.project
        flex/sdk/trunk/frameworks/projects/textLayout/.settings/
        flex/sdk/trunk/frameworks/projects/textLayout/.settings/org.eclipse.core.resources.prefs
        flex/sdk/trunk/frameworks/projects/wireframe/.actionScriptProperties
        flex/sdk/trunk/frameworks/projects/wireframe/.flexLibProperties
        flex/sdk/trunk/frameworks/projects/wireframe/.project
        flex/sdk/trunk/frameworks/projects/wireframe/.settings/
        flex/sdk/trunk/frameworks/projects/wireframe/.settings/org.eclipse.core.resources.prefs

    Status Update - don't know if this is a bug, design flaw, install problem or my misunderstanding.
    I got it to work by first changing my Flex library to 4.5.0 - still didn't work with current
    app and update mxml files using "2.6" for their namespace versions. But I did at least
    get the popup error number 16815 - indicating an error in the update version namespace.
    By leaving my application namespace version at "2.6" and changing the update version to "2.5" ... bingo!
    I got my new update installed autiomatically.
    Is this how it's supposed to work - or are my runtimes mixed up?
    Will this work the same using the Flex 4.5.1 SDK? I'll find out shortly
    Hope this helps others.

  • Flex upload problem - Help!

    Hi. I've got a JSP page that works fine when I upload a file
    to it from another JSP page, using simple Browse and Submit
    buttons. I've deployed the Flex 3 SWF to the same folder as the JSP
    page and am trying to upload a file from the Flex app and keep
    getting this error:
    Error #2044: Unhandled IOErrorEvent:. text=Error #2038: File
    I/O Error.
    at
    TV_Schedule()[C:\flexTest\_workspace\TV_Schedule\src\TV_Schedule.mxml:9]
    at _TV_Schedule_mx_managers_SystemManager/create()
    at
    mx.managers::SystemManager/initializeTopLevelWindow()[E:\dev\3.0.x\frameworks\projects\fr amework\src\mx\managers\SystemManager.as:2438]
    at mx.managers::SystemManager/
    http://www.adobe.com/2006/flex/mx/internal::docFrameHandler()[E:\dev\3.0.x\frameworks\proj ects\framework\src\mx\managers\SystemManager.as:2330
    On the Tomcat server's error log, it has the following,
    [Fri Aug 22 12:16:19 2008] [error] [client xxx.xxx.xx.xxx]
    mod_security: Access denied with code 403.
    Error processing request body: Multipart: final boundary
    missing [hostname "myhost.mydomain.org"] [uri
    "/myfolder/upload.jsp"]
    I've read that if we put the following in an .htaccess file
    in the root, it will get rid of the problem,
    SecFilterEngine Off
    SecFilterScanPOST Off
    However, this opens us up to all kinds of attacks. I've read
    that the "Multipart: final boundary missing" is a known issue. Is
    this true? Are there documents on this? Will the next version of
    Flex fix this?

    Adobe Newsbot hopes that the following resources helps you.
    NewsBot is experimental and any feedback (reply to this post) on
    its utility will be appreciated:
    All Classes (Flex 3):
    mx.automation, The Flex automation framework uses the
    AutomationID class to ..... The FileReference class provides a
    means to upload and download files
    Link:
    http://livedocs.adobe.com/flex/3/langref/class-summary.html
    Flex cookbook beta - Uploading files from Flex using PHP:
    Flex cookbook beta - Code a control so that end users can
    upload a file ... text=Error #2038: File I/O Error. And the
    permissions for the folder are 777 so
    Link:
    http://www.adobe.com/cfusion/communityengine/index.cfm?event=showdetails&postId=5241&produ ctId=2
    F (Flex 3):
    The FileReference class provides a means to upload and
    download files ...... handle error messages, and bind your form
    data to the Flex data model to
    Link:
    http://livedocs.adobe.com/flex/3/langref/all-index-F.html
    Flex Solutions:
    MORE FLEX FRAMEWORK LIBRARIES AND UTILITIES. 709. 12.
    Excerpted from Flex Solutions, .... invoked if an error occurs in
    the upload phase of the file:
    Link:
    http://www.adobe.com/devnet/flex/articles/upload_files/uploading_files_to_the_server.pdf
    [#FP-292] uploading of files: io error 2038 on Apache - app
    ok on:
    Actual Results: Expected Results: Upload file Workaround (if
    any): ... This error is also seen when using Flex 3 and has been
    pending for a really long time
    Link:
    http://bugs.adobe.com/jira/browse/FP-292
    Disclaimer: This response is generated automatically by the
    Adobe NewsBot based on Adobe
    Community
    Engine.

  • RSS Feeds in Flex

    i have a page that displays live rss feeds. The thing is that, it works correctly when the project is just a Flex Project and run as a flex application. But when i create a Flex project that runs on a server (Tomcat 5.5) with Blaze DS, the rss feeds are not available any more.
    Thanks Ravi

    Hi there,
    I think that you are missing a crossdomain.xml file. It's a policy file that tells the application that "it's ok to read data from location X". Read up here:
    http://labs.adobe.com/wiki/index.php/Flex:Accessing_Data
    http://www.cflex.net/showFileDetails.cfm?ObjectID=287&Object=Fi
    With best regards,
    Barna Biro
    Blog: http://blog.wisebisoft.com

  • Fatal error on php image upload

    I'm trying to test a popular CMS system on my mac and I'm getting the following error when trying to upload a single image.
    Fatal error: Allowed memory size of 10485760 bytes exhausted (tried to allocate 7776 bytes) in /Library/WebServer/Documents/FlashModX/assets/snippets/maxigallery/watermark/Th umbnail.class.php on line 183
    My php.ini settings are:
    memory 128
    post max size 8
    upload max filesize 2m
    max execution time 30
    max input time -1
    what do I need to change?

    thanks for googling. You know I did google and found something similar and did try to add the init to my php file but it really did not work. I was up to 80m which seems a bit much when trying to load a single 480kb file. This is why I posted here in the mac discussions.
    I normally trust the information that I get here and not necessarily from google results.

  • Where is the php command line executable on Linux?

    Hi, I am trying to configure my PHP Runtime Settings, but I have installed PHP5 from a tar.gz on Linux and I dont know where is my "php command line executable",
    somebody knows?
    Thanks.

    Hi,
    Should be in /usr/local/bin/php
    or try this...
    [root@mmkserv root]# find / -name "php"
    /usr/local/bin/php
    /usr/local/include/php
    /usr/local/lib/php
    /usr/local/apache/.LoL/LOST-FOUND/Forms/php
    [root@mmkserv root]#

  • Macromedia Dreamweaver "Unidentified Error" PHP MySQL, help please

    Ok,
    I've been developing web applications with with PHP/MySQL for some time now, but had been unable to afford dreamweaver to help me out. Thus every website I made came from strait "notepad" style typeing. Everything always worked just fine. Recently though I got my hands on Macromedia Studio MX, but have been having troubles ever since then.
    I wrote my own PHP script to connect to my MySQL database on my computer (localhost), and it worked like a charm. Then I went over to dreamweaver, followed all the steps, entered the information, clicked the "test" button and I get the an error "an unidentified error occured".
    At this point I checked everything tried again, and then that rendered the same result, I went online and found the same problem at Macromedia's webstie: http://www.macromedia.com/cfusion/knowledgebase/index.cfm?id=tn_16515
    I've tried everything mentioned there to no avail. I was hopeing someone out there would know what is wrong with my connection. Quick summary:
    Trying to connect with Dreamweaver to localhost MySQL database, with PHP MySQL settings. I get "an unidentified error occured". But the informaiton has been verified as correct with my own PHP script.

    Sorry, but it doesn't help JTANNA.
    What is your definition of "more efficiently"? If it's limitation of search results, branded search, and limitation of styling your results then google search is more efficient. Real developers rely on their own developments. For example: how can google search display results from a password-protected site? They can't.
    best,
    Shocker

  • Macromedia Flex app talking to Portal

    Hi All,
    I need my Macromedia Flex app to communicate with my Portal. I was wondering what is the best way to achieve this:
    1. Calling a JSP and sending some XML containing the data, or
    2. Developing a Portal Service then exposing it as a Web Service.
    Also, with the Portal service how do i get hold of the request object?
    Thanks in advance,
    Raj

    1. in my opinion option 1 would be better and you can easily massage the data and send it as the way you want it.
    2. other option would be use Flex-Ajax Bridge. where you can create flex controls at runtime from javascript.
    <a href="http://labs.adobe.com/wiki/index.php/Flex-Ajax_Bridge">Flex-Ajax Bridge</a>
    look about for my weblog on FA bridge with BSP in couple of days time.
    Regards
    Raja

  • FDS and Tomcat : Flex Sample App - Contact Manager

    http://localhost:8080/samples/dataservice/contact/contactmgr.mxml
    When loading, I see the contact list load with Randy Carter
    as the default.
    1. Click on New
    2. Fill in my First and Last Name
    I get the following error messages:
    Error
    Unable to access UserTransaction in DataService.
    I followed these directions for Tomcat for installing JOTM
    and editing the conf/server.xml for Tomcat
    http://labs.adobe.com/wiki/index.php/Flex:Install_Instructions
    Please advise on how I can get this sample app to be able to
    add new Contact details.

    If you're getting the error message - "Unable to access
    UserTransaction in DataService", then your transaction services is
    not set up correctly. There is not enough detail in your message to
    diagnosis what the issue is but this is what I would recommend and
    the configuration that works for me.
    (a) During development, get in the habit of running the
    server in debug mode and check for errors in the server console and
    logs frequently, especially when you encounter errors on the
    client.
    For FDS, you'll want to set debug level logging in
    enterprise-services.xml. Restart the server after making changes.
    (b) Double-check that JOTM is configured correctly.
    These are the steps I used to get Flex running with Tomcat
    5.5.17 and JOTM 2.0.10 - the latest versions.
    With Tomcat, there are several different ways of configuring
    the server so this is not the only way of doing things. The
    directions under 'Configuring Tomcat' seems to have the most
    details for all versions of Tomcat -
    http://static.raibledesigns.com/downloads/howto-tomcat-jotm.html
    i. drop the JOTM jars into <tomcat>/common/lib
    ii. add the following line to my application configuration
    file <tomcat>/conf/Catalina/localhost/samples.xml
    <Context
    docBase="c:/dev/flex/enterprise/apps/j2ee/samples"
    privileged="true" antiResourceLocking="false"
    antiJARLocking="false">
    <Transaction
    factory="org.objectweb.jotm.UserTransactionFactory"
    jotm.timeout="60"/>
    </Context>
    iii. restart the server for good measure, check the logs
    localhost-xxxx.log and catalina-xxx.log to be sure that everything
    started correctly.
    (c) Verify that transactions are working correctly with this
    test JSP page. Just drop the jsp page into your web application and
    access from the browser. If you see an exception, go back to the
    JOTM setup. If you see, 'success'. Then proceed with the contact
    manager example.
    <%@ page import="javax.naming.*,javax.transaction.*" %>
    <%
    Context ctx = new InitialContext();
    UserTransaction tx =
    (UserTransaction)ctx.lookup("java:comp/UserTransaction");
    tx.begin();
    tx.commit();
    %>
    success!
    (d) Run the contact manager sample and try to update a
    contact. If you see "Unable to access UserTransaction in
    DataService", then check the server console and server logs for
    errors and/or exceptions.
    - Cathy

  • Joomla on Sun webserver 7 php safe_mode

    Hi,
    Trying to install joomla on solaris 10 with sun webserver 7 and mysql. Got php installed and working fine, but when going through the joomla config, it needs safe_mode to be set to Off. However, when I make this change in the php.ini file its not reflected in phpinfo(). Its like its still set to on. I have confirmed that the php.ini settings are being read as other changes are reflected. Just seems to have a problem with this setting. Any ideas?
    Thanks,
    Darren

    I installed php using the phppack and followed the sun docs. sun/webserver7/plugins/php
    Also, with suns pack I think safe_mode is On by default from what I can tell.
    Thoughts?
    OUTPUT:
    PHP Version 5.2.0
    System SunOS joomla.lethbridgecollege.ab.ca 5.10 Generic_118833-33 sun4u
    Build Date Jan 29 2007 22:23:57
    Configure Command './configure' '--prefix=/java/re/phppack/5.2.0/nightly/ws/b01-2007-01-29/solaris-sparc/dist/5.2.0/SunOS5.8_OPT.OBJ/php' '--bindir=/java/re/phppack/5.2.0/nightly/ws/b01-2007-01-29/solaris-sparc/dist/5.2.0/SunOS5.8_OPT.OBJ/php/bin/' '--libdir=/java/re/phppack/5.2.0/nightly/ws/b01-2007-01-29/solaris-sparc/dist/5.2.0/SunOS5.8_OPT.OBJ/php/lib/' '--libexecdir=/java/re/phppack/5.2.0/nightly/ws/b01-2007-01-29/solaris-sparc/dist/5.2.0/SunOS5.8_OPT.OBJ/php/libexec/' '--enable-force-cgi-redirect' '--disable-rpath' '--enable-safe-mode' '--enable-ftp' '--enable-sockets' '--enable-memory-limit' '--enable-inline-optimization' '--enable-zlib' '--enable-soap' '--with-dba' '--enable-sysvmsg' '--enable-sysvsem' '--enable-sysvshm' '--enable-sqlite-utf8' '--enable-zend-multibyte' '--enable-bcmath' '--enable-exif' '--enable-magic-quotes' '--enable-wddx' '--enable-mbstring' '--enable-mbstr-enc-trans' '--enable-mbregex' '--enable-gd-native-ttf' '--with-pcre-regex=/h/iws-files/s/b/c/pcre/6.7/SunOS5.8_OPT.OBJ' '--with-iconv-dir=/h/iws-files/s/b/c/libiconv/1.11/SunOS5.8_OPT.OBJ' '--with-libxml-dir=/h/iws-files/s/b/c/libxml2/2.6.27/SunOS5.8_OPT.OBJ' '--with-zlib=/h/iws-files/s/b/c/zlib/1.2.3/SunOS5.8_OPT.OBJ' '--with-mysql=/h/iws-files/s/b/c/mysql/5.0.27/SunOS5.8_OPT.OBJ' '--with-mysqli=/h/iws-files/s/b/c/mysql/5.0.27/SunOS5.8_OPT.OBJ/bin/mysql_config' '--with-pgsql=/h/iws-files/s/b/c/postgresql/8.1.5/SunOS5.8_OPT.OBJ' '--enable-cli' '--enable-cgi' '--enable-fastcgi' '--enable-debugger'
    Server API CGI/FastCGI
    Virtual Directory Support disabled
    Configuration File (php.ini) Path /java/re/phppack/5.2.0/nightly/ws/b01-2007-01-29/solaris-sparc/dist/5.2.0/SunOS5.8_OPT.OBJ/php/lib/
    PHP API 20041225
    PHP Extension 20060613
    Zend Extension 220060519
    Debug Build no
    Thread Safety disabled
    Zend Memory Manager enabled
    IPv6 Support enabled
    Registered PHP Streams php, file, data, http, ftp, compress.zlib
    Registered Stream Socket Transports tcp, udp, unix, udg
    Registered Stream Filters string.rot13, string.toupper, string.tolower, string.strip_tags, convert.*, consumed, convert.iconv.*, zlib.*
    This program makes use of the Zend Scripting Language Engine:
    Zend Engine v2.2.0, Copyright (c) 1998-2006 Zend Technologies
    PHP Credits
    Configuration
    PHP Core
    Directive Local Value Master Value
    allow_call_time_pass_reference On On
    allow_url_fopen On On
    allow_url_include Off Off
    always_populate_raw_post_data Off Off
    arg_separator.input & &
    arg_separator.output & &
    asp_tags Off Off
    auto_append_file no value no value
    auto_globals_jit On On
    auto_prepend_file no value no value
    browscap no value no value
    default_charset no value no value
    default_mimetype text/html text/html
    define_syslog_variables Off Off
    detect_unicode On On
    disable_classes no value no value
    disable_functions no value no value
    display_errors On On
    display_startup_errors Off Off
    doc_root no value no value
    docref_ext no value no value
    docref_root no value no value
    enable_dl On On
    error_append_string no value no value
    error_log no value no value
    error_prepend_string no value no value
    error_reporting no value no value
    expose_php On On
    extension_dir /java/re/phppack/5.2.0/nightly/ws/b01-2007-01-29/solaris-sparc/dist/5.2.0/SunOS5.8_OPT.OBJ/php/lib//extensions/no-debug-non-zts-20060613 /java/re/phppack/5.2.0/nightly/ws/b01-2007-01-29/solaris-sparc/dist/5.2.0/SunOS5.8_OPT.OBJ/php/lib//extensions/no-debug-non-zts-20060613
    file_uploads On On
    highlight.bg #FFFFFF #FFFFFF
    highlight.comment #FF8000 #FF8000
    highlight.default #0000BB #0000BB
    highlight.html #000000 #000000
    highlight.keyword #007700 #007700
    highlight.string #DD0000 #DD0000
    html_errors On On
    ignore_repeated_errors Off Off
    ignore_repeated_source Off Off
    ignore_user_abort Off Off
    implicit_flush Off Off
    include_path .:/java/re/phppack/5.2.0/nightly/ws/b01-2007-01-29/solaris-sparc/dist/5.2.0/SunOS5.8_OPT.OBJ/php/lib//php .:/java/re/phppack/5.2.0/nightly/ws/b01-2007-01-29/solaris-sparc/dist/5.2.0/SunOS5.8_OPT.OBJ/php/lib//php
    log_errors Off Off
    log_errors_max_len 1024 1024
    magic_quotes_gpc On On
    magic_quotes_runtime Off Off
    magic_quotes_sybase Off Off
    mail.force_extra_parameters no value no value
    max_execution_time 30 30
    max_input_time -1 -1
    memory_limit 16M 16M
    open_basedir no value no value
    output_buffering 0 0
    output_handler no value no value
    post_max_size 8M 8M
    precision 14 14
    realpath_cache_size 16K 16K
    realpath_cache_ttl 120 120
    register_argc_argv On On
    register_globals Off Off
    register_long_arrays On On
    report_memleaks On On
    report_zend_debug On On
    safe_mode On On
    safe_mode_exec_dir /usr/local/php/bin /usr/local/php/bin
    safe_mode_gid Off Off
    safe_mode_include_dir no value no value
    sendmail_from no value no value
    sendmail_path /usr/lib/sendmail -t -i /usr/lib/sendmail -t -i
    serialize_precision 100 100
    short_open_tag On On
    SMTP localhost localhost
    smtp_port 25 25
    sql.safe_mode Off Off
    track_errors Off Off
    unserialize_callback_func no value no value
    upload_max_filesize 2M 2M
    upload_tmp_dir no value no value
    user_dir no value no value
    variables_order EGPCS EGPCS
    xmlrpc_error_number 0 0
    xmlrpc_errors Off Off
    y2k_compliance On On
    zend.ze1_compatibility_mode Off Off
    bcmath
    BCMath support enabled
    ctype
    ctype functions enabled
    date
    date/time support enabled
    Timezone Database Version 2006.14
    Timezone Database internal
    Warning: phpinfo() [function.phpinfo]: It is not safe to rely on the system's timezone settings. Please use the date.timezone setting, the TZ environment variable or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We had to select 'UTC' because your platform doesn't provide functionality for the guessing algorithm in /opt/sun/webserver7/https-www-live/docs/info.php on line 1
    Default timezone UTC
    Directive Local Value Master Value
    date.default_latitude 31.7667 31.7667
    date.default_longitude 35.2333 35.2333
    date.sunrise_zenith 90.583333 90.583333
    date.sunset_zenith 90.583333 90.583333
    date.timezone no value no value
    dom
    DOM/XML enabled
    DOM/XML API Version 20031129
    libxml Version 2.6.27
    HTML Support enabled
    XPath Support enabled
    XPointer Support enabled
    Schema Support enabled
    RelaxNG Support enabled
    exif
    EXIF Support enabled
    EXIF Version 1.4 $Id: exif.c,v 1.173.2.5.2.4 2006/10/10 22:22:43 tony2001 Exp $
    Supported EXIF Version 0220
    Supported filetypes JPEG,TIFF
    filter
    Input Validation and Filtering enabled
    Revision $Revision: 1.52.2.25 $
    Directive Local Value Master Value
    filter.default unsafe_raw unsafe_raw
    filter.default_flags no value no value
    ftp
    FTP support enabled
    hash
    hash support enabled
    Hashing Engines md4 md5 sha1 sha256 sha384 sha512 ripemd128 ripemd160 whirlpool tiger128,3 tiger160,3 tiger192,3 tiger128,4 tiger160,4 tiger192,4 snefru gost adler32 crc32 crc32b haval128,3 haval160,3 haval192,3 haval224,3 haval256,3 haval128,4 haval160,4 haval192,4 haval224,4 haval256,4 haval128,5 haval160,5 haval192,5 haval224,5 haval256,5
    iconv
    iconv support enabled
    iconv implementation unknown
    iconv library version unknown
    Directive Local Value Master Value
    iconv.input_encoding ISO-8859-1 ISO-8859-1
    iconv.internal_encoding ISO-8859-1 ISO-8859-1
    iconv.output_encoding ISO-8859-1 ISO-8859-1
    json
    json support enabled
    json version 1.2.1
    libxml
    libXML support active
    libXML Version 2.6.27
    libXML streams enabled
    mbstring
    Multibyte Support enabled
    Multibyte string engine libmbfl
    Multibyte (japanese) regex support enabled
    Multibyte regex (oniguruma) version 4.4.4
    Multibyte regex (oniguruma) backtrack check On
    mbstring extension makes use of "streamable kanji code filter and converter", which is distributed under the GNU Lesser General Public License version 2.1.
    Directive Local Value Master Value
    mbstring.detect_order no value no value
    mbstring.encoding_translation Off Off
    mbstring.func_overload 0 0
    mbstring.http_input pass pass
    mbstring.http_output pass pass
    mbstring.internal_encoding ISO-8859-1 no value
    mbstring.language neutral neutral
    mbstring.script_encoding no value no value
    mbstring.strict_detection Off Off
    mbstring.substitute_character no value no value
    mysql
    MySQL Support enabled
    Active Persistent Links 0
    Active Links 0
    Client API version 5.0.27
    MYSQL_MODULE_TYPE external
    MYSQL_SOCKET /tmp/mysql.sock
    MYSQL_INCLUDE -I/h/iws-files/s/b/c/mysql/5.0.27/SunOS5.8_OPT.OBJ/include
    MYSQL_LIBS -L/h/iws-files/s/b/c/mysql/5.0.27/SunOS5.8_OPT.OBJ/lib -lmysqlclient
    Directive Local Value Master Value
    mysql.allow_persistent On On
    mysql.connect_timeout 60 60
    mysql.default_host no value no value
    mysql.default_password no value no value
    mysql.default_port no value no value
    mysql.default_socket no value no value
    mysql.default_user no value no value
    mysql.max_links Unlimited Unlimited
    mysql.max_persistent Unlimited Unlimited
    mysql.trace_mode Off Off
    mysqli
    MysqlI Support enabled
    Client API library version 5.0.27
    Client API header version 5.0.27
    MYSQLI_SOCKET /tmp/mysql.sock
    Directive Local Value Master Value
    mysqli.default_host no value no value
    mysqli.default_port 3306 3306
    mysqli.default_pw no value no value
    mysqli.default_socket no value no value
    mysqli.default_user no value no value
    mysqli.max_links Unlimited Unlimited
    mysqli.reconnect Off Off
    pcre
    PCRE (Perl Compatible Regular Expressions) Support enabled
    PCRE Library Version 6.7 04-Jul-2006
    PDO
    PDO support enabled
    PDO drivers sqlite2, sqlite
    pdo_sqlite
    PDO Driver for SQLite 3.x enabled
    PECL Module version (bundled) 1.0.1 $Id: pdo_sqlite.c,v 1.10.2.6 2006/01/01 12:50:12 sniper Exp $
    SQLite Library 3.3.7
    pgsql
    PostgreSQL Support enabled
    PostgreSQL(libpq) Version 8.1.5
    Multibyte character support enabled
    SSL support disabled
    Active Persistent Links 0
    Active Links 0
    Directive Local Value Master Value
    pgsql.allow_persistent On On
    pgsql.auto_reset_persistent Off Off
    pgsql.ignore_notice Off Off
    pgsql.log_notice Off Off
    pgsql.max_links Unlimited Unlimited
    pgsql.max_persistent Unlimited Unlimited
    posix
    Revision $Revision: 1.70.2.3.2.6 $
    Reflection
    Reflection enabled
    Version $Id: php_reflection.c,v 1.164.2.33.2.31 2006/10/18 16:35:15 johannes Exp $
    session
    Session Support enabled
    Registered save handlers files user sqlite
    Registered serializer handlers php php_binary wddx
    Directive Local Value Master Value
    session.auto_start Off Off
    session.bug_compat_42 On On
    session.bug_compat_warn On On
    session.cache_expire 180 180
    session.cache_limiter nocache nocache
    session.cookie_domain no value no value
    session.cookie_httponly Off Off
    session.cookie_lifetime 0 0
    session.cookie_path / /
    session.cookie_secure Off Off
    session.entropy_file no value no value
    session.entropy_length 0 0
    session.gc_divisor 100 100
    session.gc_maxlifetime 1440 1440
    session.gc_probability 1 1
    session.hash_bits_per_character 4 4
    session.hash_function 0 0
    session.name PHPSESSID PHPSESSID
    session.referer_check no value no value
    session.save_handler files files
    session.save_path no value no value
    session.serialize_handler php php
    session.use_cookies On On
    session.use_only_cookies Off Off
    session.use_trans_sid 0 0
    SimpleXML
    Simplexml support enabled
    Revision $Revision: 1.151.2.22.2.15 $
    Schema support enabled
    soap
    Soap Client enabled
    Soap Server enabled
    Directive Local Value Master Value
    soap.wsdl_cache 1 1
    soap.wsdl_cache_dir /tmp /tmp
    soap.wsdl_cache_enabled 1 1
    soap.wsdl_cache_limit 5 5
    soap.wsdl_cache_ttl 86400 86400
    sockets
    Sockets Support enabled
    SPL
    SPL support enabled
    Interfaces Countable, OuterIterator, RecursiveIterator, SeekableIterator, SplObserver, SplSubject
    Classes AppendIterator, ArrayIterator, ArrayObject, BadFunctionCallException, BadMethodCallException, CachingIterator, DirectoryIterator, DomainException, EmptyIterator, FilterIterator, InfiniteIterator, InvalidArgumentException, IteratorIterator, LengthException, LimitIterator, LogicException, NoRewindIterator, OutOfBoundsException, OutOfRangeException, OverflowException, ParentIterator, RangeException, RecursiveArrayIterator, RecursiveCachingIterator, RecursiveDirectoryIterator, RecursiveFilterIterator, RecursiveIteratorIterator, RecursiveRegexIterator, RegexIterator, RuntimeException, SimpleXMLIterator, SplFileInfo, SplFileObject, SplObjectStorage, SplTempFileObject, UnderflowException, UnexpectedValueException
    SQLite
    SQLite support enabled
    PECL Module version 2.0-dev $Id: sqlite.c,v 1.166.2.13.2.5 2006/10/20 21:28:31 tony2001 Exp $
    SQLite Library 2.8.17
    SQLite Encoding UTF-8
    Directive Local Value Master Value
    sqlite.assoc_case 0 0
    standard
    Regex Library Bundled library enabled
    Dynamic Library Support enabled
    Path to sendmail /usr/lib/sendmail -t -i
    Directive Local Value Master Value
    assert.active 1 1
    assert.bail 0 0
    assert.callback no value no value
    assert.quiet_eval 0 0
    assert.warning 1 1
    auto_detect_line_endings 0 0
    default_socket_timeout 60 60
    safe_mode_allowed_env_vars PHP_ PHP_
    safe_mode_protected_env_vars LD_LIBRARY_PATH LD_LIBRARY_PATH
    url_rewriter.tags a=href,area=href,frame=src,form=,fieldset= a=href,area=href,frame=src,form=,fieldset=
    user_agent no value no value
    sysvmsg
    sysvmsg support enabled
    Revision $Revision: 1.20.2.3.2.1 $
    tokenizer
    Tokenizer Support enabled
    wddx
    WDDX Support enabled
    WDDX Session Serializer enabled
    xml
    XML Support active
    XML Namespace Support active
    libxml2 Version 2.6.27
    xmlreader
    XMLReader enabled
    xmlwriter
    XMLWriter enabled
    zlib
    ZLib Support enabled
    Stream Wrapper support compress.zlib://
    Stream Filter support zlib.inflate, zlib.deflate
    Compiled Version 1.2.3
    Linked Version 1.2.3
    Directive Local Value Master Value
    zlib.output_compression Off Off
    zlib.output_compression_level -1 -1
    zlib.output_handler no value no value
    Additional Modules
    Module Name
    sysvsem
    sysvshm
    Environment
    Variable Value
    PHPRC /opt/sun/webserver7/plugins/php
    PHP_FCGI_CHILDREN 2
    PHP_FCGI_MAX_REQUEST 200
    FCGI_WEB_SERVER_ADDRS 127.0.0.1
    LD_LIBRARY_PATH /opt/sun/webserver7/plugins/php
    LD_LIBRARY_PATH_64 /opt/sun/webserver7/plugins/php/64
    PHP Variables
    Variable Value
    _SERVER["PHPRC"] /opt/sun/webserver7/plugins/php
    SERVER["PHPFCGI_CHILDREN"] 2
    _SERVER["PHP_FCGI_MAX_REQUEST"] 200
    _SERVER["FCGI_WEB_SERVER_ADDRS"] 127.0.0.1
    _SERVER["LD_LIBRARY_PATH"] /opt/sun/webserver7/lib:/opt/sun/webserver7/jdk/jre/lib/sparc/server:/opt/sun/webserver7/jdk/jre/lib/sparc:/opt/sun/webserver7/jdk/jre/lib/sparc/native_threads::/opt/sun/webserver7/lib:
    _SERVER["LD_LIBRARY_PATH_64"] /opt/sun/webserver7/plugins/php/64
    _SERVER["FCGI_ROLE"] RESPONDER
    _SERVER["HTTP_ACCEPT"] image/gif, image/x-xbitmap, image/jpeg, image/pjpeg, application/x-shockwave-flash, application/vnd.ms-excel, application/vnd.ms-powerpoint, application/msword, */*
    _SERVER["HTTP_ACCEPT_LANGUAGE"] en-us
    _SERVER["HTTP_ACCEPT_ENCODING"] gzip, deflate
    _SERVER["HTTP_USER_AGENT"] Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727)
    _SERVER["HTTP_HOST"] joomla
    _SERVER["HTTP_CONNECTION"] Keep-Alive
    _SERVER["PATH"] /opt/sun/webserver7/bin:/opt/sun/webserver7/lib:/bin:/usr/sbin:/usr/bin:/usr/dt/bin:/usr/openwin/bin:/bin:/opt/sfw/bin:/export/root
    _SERVER["TZ"] Canada/Mountain
    _SERVER["SERVER_SOFTWARE"] Sun-Java-System-Web-Server/7.0
    _SERVER["SERVER_PORT"] 80
    _SERVER["SERVER_NAME"] joomla
    _SERVER["SERVER_URL"] http://joomla
    _SERVER["REMOTE_HOST"] 172.20.200.11
    _SERVER["REMOTE_ADDR"] 172.20.200.11
    _SERVER["HTTPS"] OFF
    _SERVER["GATEWAY_INTERFACE"] CGI/1.1
    _SERVER["SERVER_PROTOCOL"] HTTP/1.1
    _SERVER["REQUEST_METHOD"] GET
    _SERVER["SCRIPT_NAME"] /info.php
    _SERVER["PATH_TRANSLATED"] no value
    _SERVER["SERVER_HOSTNAME"] www-live
    _SERVER["SERVER_ADDR"] *
    _SERVER["ORIG_PATH_TRANSLATED"] /opt/sun/webserver7/https-www-live/docs/info.php
    _SERVER["ORIG_SCRIPT_NAME"] /info.php
    _SERVER["SCRIPT_FILENAME"] /opt/sun/webserver7/https-www-live/docs/info.php
    _SERVER["PATH_INFO"] no value
    _SERVER["PHP_SELF"] /info.php
    _SERVER["REQUEST_TIME"] 1177075610
    _SERVER["argv"] Array
    _SERVER["argc"] 0
    _ENV["PHPRC"] /opt/sun/webserver7/plugins/php
    _ENV["PHP_FCGI_CHILDREN"] 2
    _ENV["PHP_FCGI_MAX_REQUEST"] 200
    _ENV["FCGI_WEB_SERVER_ADDRS"] 127.0.0.1
    _ENV["LD_LIBRARY_PATH"] /opt/sun/webserver7/lib:/opt/sun/webserver7/jdk/jre/lib/sparc/server:/opt/sun/webserver7/jdk/jre/lib/sparc:/opt/sun/webserver7/jdk/jre/lib/sparc/native_threads::/opt/sun/webserver7/lib:
    _ENV["LD_LIBRARY_PATH_64"] /opt/sun/webserver7/plugins/php/64
    _ENV["FCGI_ROLE"] RESPONDER
    _ENV["HTTP_ACCEPT"] image/gif, image/x-xbitmap, image/jpeg, image/pjpeg, application/x-shockwave-flash, application/vnd.ms-excel, application/vnd.ms-powerpoint, application/msword, */*
    _ENV["HTTP_ACCEPT_LANGUAGE"] en-us
    _ENV["HTTP_ACCEPT_ENCODING"] gzip, deflate
    _ENV["HTTP_USER_AGENT"] Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727)
    _ENV["HTTP_HOST"] joomla
    _ENV["HTTP_CONNECTION"] Keep-Alive
    _ENV["PATH"] /opt/sun/webserver7/bin:/opt/sun/webserver7/lib:/bin:/usr/sbin:/usr/bin:/usr/dt/bin:/usr/openwin/bin:/bin:/opt/sfw/bin:/export/root
    _ENV["TZ"] Canada/Mountain
    _ENV["SERVER_SOFTWARE"] Sun-Java-System-Web-Server/7.0
    _ENV["SERVER_PORT"] 80
    _ENV["SERVER_NAME"] joomla
    _ENV["SERVER_URL"] http://joomla
    _ENV["REMOTE_HOST"] 172.20.200.11
    _ENV["REMOTE_ADDR"] 172.20.200.11
    _ENV["HTTPS"] OFF
    _ENV["GATEWAY_INTERFACE"] CGI/1.1
    _ENV["SERVER_PROTOCOL"] HTTP/1.1
    _ENV["REQUEST_METHOD"] GET
    _ENV["SCRIPT_NAME"] /info.php
    _ENV["PATH_TRANSLATED"] no value
    _ENV["SERVER_HOSTNAME"] www-live
    _ENV["SERVER_ADDR"] *
    _ENV["ORIG_PATH_TRANSLATED"] /opt/sun/webserver7/https-www-live/docs/info.php
    _ENV["ORIG_SCRIPT_NAME"] /info.php
    _ENV["SCRIPT_FILENAME"] /opt/sun/webserver7/https-www-live/docs/info.php
    _ENV["PATH_INFO"] no value

  • Advice with Flex-Java

    Hi All,
    I need a little help, I'm starting with Flex and Java, I've experience with php-flex and i need to make a Flex-Java J2ee application using MySql and store procedures... and what i'm asking is that you put me on the right position...
    where can i start ... please tell me what to use i'm totally lost.. on this... what can i use.... please give me any advice....
    Well i'll wait for all your advices....
    Thanks a Lot.... and regards...
    Cesar Glez.

    Here are some great links that will answer your question:
    http://www.adobe.com/devnet/flex/flex_java.html
    http://learn.adobe.com/wiki/display/Flex/Flex+and+Java
    http://www.adobe.com/devnet/flex/articles/java_flex.html
    http://www.javaworld.com/javaworld/jw-01-2009/jw-01-javaee-flex-1.html
    If this post answers your question or helps, please mark it as such.

Maybe you are looking for

  • [Solved]dual boot windows 7 and arch linux

    I have successfully installed arch linux dual boot with the original win7 on my PC. If I only use linux, then the system works well. The problem is that once I boot into Win7 then after reboot, the linux boot manager will stop working and the system

  • How to use elements in .css file with javascript in the jsp

    I have a jsp in which i need to show some links with the background colour.The links depends on certain conditions which is known.But the requirement is that the background color should be grey and white alternatively. I could have hardcoded the back

  • How to Comunicate with JIRA through standalone application?

    Hi All, I have a requirement to use JIRA( A open source bug tracking tool) in my application so as to get information from JIRA and can show it in my application but i didn't find a starting point in this, so please if any one can help me or if some

  • Where can I purchase a Satellite 3000-514 motherboard?

    I need to replace the system board (?), motherboard (?) on my Toshiba Satellite S3000-514. Question: Where can I go to purchase the motherboard? Question 2: How much in sterling can I expect to pay? Thank you.

  • 1itunes 11.1.1.11 for windows 7 32-bit BEX error. HELP!!!!!!!!!!

    When I try to open itunes, I get this message: Problem Event Name:    BEX   Application Name:    iTunes.exe   Application Version:    11.1.1.11   Application Timestamp:    524a8521   Fault Module Name:    StackHash_0a9e   Fault Module Version:    0.0