Php-5.2.5 and postgres-8.3.1 in leopard

Hi,
i am trying to maintain my web site with my brand new MacBook Pro ...
after enabling php in the httpd.conf file
apache would display my index.php page
but when it got to a page using pg_connect ... no go ..
problem is no postgres support with php-5.2.5 out of the box
so i do the configure, make and install of the postgres-8.3.1
and php-5.2.5 --with-apxs2=/usr/sbin/apxs --with-pgsql=/usr/local/pgsql
but now the apache 2.2.8 can't make a connection to localhost
also even if i configure the php-5.2.5 without the pgsql apache won't even display the index.php page
anyone know what my problem may be ...
thanks,
Tom Lindner

i solved my own problem and this is how i did it
without screwing anything up!
i installed httpd-2.2.8, php-5.2.5 and postgresql-8.3.1 like this
note i am lindner
/* postgres */
sudo mkdir /usr/local/pgsql
sudo chown lindner /usr/local/pgsql
./configure --prefix=/usr/local/pgsq
make
make install (note no sudo)
mkdir /usr/local/pgsql/data
mkdir /usr/local/pgsql/logs
blah blah blah
/* httpd (apache) */
sudo mkdir /usr/local/apache2
sudo chown lindner /usr/local/apache2
./configure --prefix=/usr/local/apache2
make
make install (note no sudo)
/* php */
sudo mkdir /usr/local/php
sudo chown lindner /usr/local/php
./configure --prefix=/usr/local/php --with-apxs2=/usr/local/apache2/bin/apxs --with-pgsql=/usr/local/pgsql
make
make install (note no sudo)
/* then i modified the /usr/local/apache2/conf/httpd.conf file like this */
from
#LoadModule php5_module modules/libphp5.so
to
LoadModule php5_module modules/libphp5.so
from
# DocumentRoot "/usr/local/apache2/htdocs"
to
DocumentRoot "/Users/lindner/Code/lindner514.com"
from
# <Directory "/usr/local/apache2/htdocs">
to
<Directory "/Users/lindner/Code/lindner514.com">
from
# ScriptAlias /cgi-bin/ "/usr/local/apache2/cgi-bin/"
to
ScriptAlias /cgi-bin/ "/Users/lindner/Code/lindner514.com/cgi-bin/"
from
# <Directory "/usr/local/apache2/cgi-bin">
to
<Directory "/Users/lindner/Code/lindner514.com/cgi-bin">
from
#Include conf/extra/httpd-userdir.conf
to
Include conf/extra/httpd-userdir.conf
then added this at the bottom
<IfModule php5_module>
AddType application/x-httpd-php .php
AddType application/x-httpd-php-source .phps
<IfModule dir_module>
DirectoryIndex index.html index.php
</IfModule>
</IfModule>
/* then i modified the /usr/local/apache2/conf/extra/httpd-userdir.conf file like this */
UserDir Sites
<Directory "/Users/*/Sites">
/* finally */
make sure you system server is turned off (System Preferences:Sharing .. turn off Web Sharing)
sudo /usr/local/apache2/bin/apachectl start
and point your browser to localhost or in my case localhost/~lindner
and the php can find pg_connect

Similar Messages

  • How to include Php Files in SrcView and Release Build

    Dumb question
    For a long time I have been manually copying any changes to my php files from the debug to the release folder manually. I know they can be linked so they do so on compile (and I am hoping also included in srcview) but never took the time to figure out what the proceedure is.
    About time I guess Suggestions?

    What I have been doing is creating a new folder in your src maybe like "scripts" or something.  Then you can create a .php file in there and when you double click to open it should open your default .php editor.  Now when you do a release build it will include the folder "scripts" in your bin-release.
    Then do something like
    <s:HTTPService id="my_http_service" url="./scripts/script.php" result="my_http_service_resultHandler(event)" resultFormat="e4x">
    The only problem I have run into is when testing locally you will need to have a copy on a server, unless you have apache running locally.
    Hope this helps!

  • Apple's Apache 2.0.54, PHP 5.0.4 and MySQL 5.0.18

    Hello
    Using OSX Server 10.4.4.
    I'm considering using Apple's /opt Apache 2.0.54 with the builds of PHP 5.0.4 and MySQL 5.0.18. Has anyone any experience with this combination and any warnings / advice?
    MySQL 5.0.18 is an installer straight from MySQL and PHP 5.0.4 installer is straight from Marc Liyanage's entropy site.
    Thanks in advance...
    David.
    XServe G5   Mac OS X (10.4.4)  

    Hi there MartynC
    Just wanted to let you know that I screwed up - as usual, the simplest of errors.... I created a script around apachectl to start apache and prior to the apachectl start line I inserted
    ORACLE_HOME=<my oracle home>; export ORACLE_HOME
    ...only I mistyped <my oracle home> so apache wasn't finding it
    I've corrected that, restarted Apache and now PHP, Apache and Oracle are working fine!
    Thanks very much for your offer of help (the only consolation I can take is that possibly this will someone reading this will take note and double check the dumb stuff and save themselves a lot of time and heartache)
    Also I should note for anyone interested that my Linux installation is actually Centos 4.1 (a Redhat "clone")

  • Oracle support under PHP / 8i or 9 and a RedHat 9 / Apache 1.3.X machine

    Hi,
    I have a server (currently 7.1) with apache + php
    compiled with oracle (and mcrypt, imap, gettext) support.
    In order to do so I've installed the 8i linux
    version, make a tar.gz of the libs directory and
    installed in my server.
    I runs fine accessing a remote (not mantained by me)
    oracle database.
    I am planning to switch to a newer distribution and
    was considering the RH9 but with the "old" 1.3.x apache.
    Since I do not actually use Oracle (just enable php
    scripts to do so) I am kind of lost if the combo (old
    8i libs with redhat 9) are stable enough or should I
    try a newer version, such as oracle 9.
    And in that case if is there a "developers" package/installation that enables me just to install the required libs/headers without having to actually install the whole db.
    Since the answer can be slighty OT fell free to send
    me directly.
    Thanks.

    I'm in a similar situation where i'm migrating from Win2k + PHP & want oracle support to connect to a remote server.
    I got as far as installing redhat 9 & installing the oracle client.
    I still can't get oracle to work in PHP though. doing a bit of research I dont think the redhat 9 RPM's come with oracle support compiled. I really dont want to be maintaining custom compiled php versions i'd rather just have up2date do it all. I hear you can get ODBC to work with oracle, but most of the stuff i've looked at covers doing this on windows, not linux.
    If anyone out there has manager to get PHP & oracle working on RH9, without re-compiling PHP please let me know!

  • Heterogeneous connection between Oracle and Postgres.

    Hi All,
    I'm trying to make an heterogeneous connection between Oracle and Postgres since few days but i still having this error : "lost RPC connection".
    First of all : I'm using Windows 7, Oracle 10g and PostgreSQL 8.4.
    I have done the following operations :
    1) Create a System DNS named "PG". (Test connection is OK)
    2) Create the file "initPG.ora" in "$ORACLE_HOME/hs/admin" :
    # This is a sample agent init file that contains the HS parameters that are
    # needed for an ODBC Agent.
    # HS init parameters
    HS_FDS_CONNECT_INFO = PG
    HS_FDS_TRACE_LEVEL = ON
    # Environment variables required for the non-Oracle system
    #set <envvar>=<value>
    3) Configure the file "listener.ora" (in "$ORACLE_HOME/NETWORK/ADMIN") :
    SID_LIST_LISTENER =
    (SID_LIST =
         (SID_DESC =
    (SID_NAME = PLSExtProc)
    (ORACLE_HOME = C:\oraclexe\app\oracle\product\10.2.0\server)
    (PROGRAM = extproc)
    (SID_DESC =
    (SID_NAME = CLRExtProc)
    (ORACLE_HOME = C:\oraclexe\app\oracle\product\10.2.0\server)
    (PROGRAM = extproc)
         (SID_DESC =
    (SID_NAME = PG)
    (ORACLE_HOME = C:\oraclexe\app\oracle\product\10.2.0\server)
    (PROGRAM = hsodbc)
    LISTENER =
    (DESCRIPTION_LIST =
    (DESCRIPTION =
         (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC_FOR_XE))
    (ADDRESS = (PROTOCOL = TCP)(HOST = Cédric-PC)(PORT = 1521))
    DEFAULT_SERVICE_LISTENER = (XE)
    4) Configure the file "tnsnames.ora" (in "$ORACLE_HOME/NETWORK/ADMIN") :
    XE =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = TCP)(HOST = Cédric-PC)(PORT = 1521))
    (CONNECT_DATA =
    (SERVER = DEDICATED)
    (SERVICE_NAME = XE)
    PG =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = tcp)(HOST = Cédric-PC)(PORT = 1521))
    (CONNECT_DATA =
    (SERVICE_NAME = PG)
    (HS = OK)
    EXTPROC_CONNECTION_DATA =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC_FOR_XE))
    (CONNECT_DATA =
    (SID = PLSExtProc)
    (PRESENTATION = RO)
    ORACLR_CONNECTION_DATA =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC_FOR_XE))
    (CONNECT_DATA =
    (SID = CLRExtProc)
    (PRESENTATION = RO)
    5) Finally, i create my DB-Link and test it :
    CREATE DATABASE LINK "CENTRALE_POSTGRES" CONNECT TO "user_login" IDENTIFIED BY "user_password" USING 'PG';
    SELECT * FROM "dual"@CENTRALE_POSTGRES;
    I got this error :
    ORA-03135 : lost RPC connection.
    As you can see, i have activated the trace level (HS_FDS_TRACE_LEVEL = ON), but the directory "$ORACLE_HOME/NETWORK/trace" still empty.
    Any ideas ?
    Regards

    the tnsnames.ora alias PG is wrong - you need to have 2 closing brackets after the SERVICE_NAME so that HS=OK is outside of the CONNECT_DATA like:
    PG =
    <space>(DESCRIPTION =
    <space><space>(ADDRESS = (PROTOCOL = tcp)(HOST = Cédric-PC)(PORT = 1521))
    <space><space>(CONNECT_DATA =
    <space><space><space>(SERVICE_NAME = PG))
    <space><space>(HS = OK)
    <space>)
    Please be also aware HSODBC up to release 10.2 has been desupported since March 2008 and it was replaced by its follow up product DG4ODBC V11

  • SUN AS PE 8 and postgres

    Hi everybody,
    I'd like to know your experiences about using SUN AS PE 8 and postgres. I have read that actual version has problems with this database manager. It's true?
    Thanks...

    I found another tread that talks about this problem, http://forum.java.sun.com/thread.jsp?forum=136&thread=509737
    A workaround for me was to disable privacy control in my firewall, not a viable solution but will do for now. I am interested in hearing about a real solution to this problem.
    Theodor

  • POSTURL opening PHP in new window (and shouldn't)

    We are calling a PHP file from Authorware 7. Originally,
    nothing would
    happen when the php file was called and the server would time
    out and act as
    though the php file could not be found (with a 5006 error).
    But we finally
    realized that it wanted to open the php file in a new window
    - with a popup.
    We are using a normal posturl:
    temp2 :=PostURL(NetLocation^"gSysSet.php","",30)
    All the php file has in it is 1 line with a echo command.
    Does anyone know why the php would open in its own window?
    There was a posting earlier about POSTurl and php and we have
    checked the
    same things that they had in the php.ini file, but cannot
    make it just
    execute from Authorware and return a result - instead of
    returning the
    result in a new window. What happens is we still get the 5006
    error in
    Authorware because the result is returned in a new window and
    opened in a
    new window so Authorware isn't really communicating with the
    php file.
    Any suggestions would be appreciated.
    Julia

    Does your html page access it as HTTPs?
    "Julia" <[email protected]> wrote in message
    news:[email protected]...
    > Yes, I have created a dummy forum in html and it returns
    the value
    > correctlys.
    > Also, the value passed is returned ONLY when run under
    HTTPs - nor with
    > HTTP.
    > Julia
    >
    >
    > "Amy Blankenship *AdobeCommunityExpert*"
    > <[email protected]>
    > wrote in message
    news:[email protected]...
    >> Usually if it returns back what you sent, an error
    occurred. Does the
    >> php
    >> page work if you hit it from an HTML page with the
    same value passed from
    > a
    >> form field?
    >>
    >> -Amy
    >>
    >> "Julia" <[email protected]> wrote in
    message
    >> news:[email protected]...
    >> > Thank you Steve for the link.
    >> >
    >> > I made the change per your blog (I passed a
    variable-name pair to the
    > php
    >> > file) and now the php does not open in a new
    window and returns the
    > result
    >> > correctly.
    >> >
    >> > This is step one. Now it still doesn't work
    under SSL/HTTPs (which is
    > why
    >> > we
    >> > were going the POSTurl route). The PHP file
    doesn't open in its own
    > window
    >> > anymore (which it did under http AND https),
    but the difference now
    > under
    >> > HTTPs is that the variable-name pair I sent the
    PHP is being returned -
    >> > not
    >> > the actual result from the echo command in the
    php. I also tried
    >> > putting
    >> > the
    >> > variable-name pair as a ? after the filename
    and it didn't make any
    >> > difference. I also went ahead and put in a
    $_POST to receiev the
    > variable
    >> > and it didn't make any difference. Still
    getting the 5006 error as
    > though
    >> > it
    >> > can't find the file.
    >> >
    >> > We are getting the same symptoms that Chris
    Volkman got back in
    > 2-28-2006.
    >> > He was able to correct the problem by changing
    the php.ini file. I
    > checked
    >> > all of our settings and they are already
    exactly like the changes he
    > made.
    >> >
    >> > Any ideas?
    >> > Julia
    >> >
    >> > -----------------------------
    >> > THE AUTHORWARE CODE:
    >> >
    >> > temp2
    :=PostURL(NetLocation^"gSys.php","myvar=true",20)
    >> > -------------------
    >> >
    >> >
    >> > THE PHP CODE:
    >> > -----------------
    >> > <?PHP
    >> > header("cache-control: no-cache,
    must-revalidate");
    >> > //header("Pragma: no-cache");
    >> > ?>
    >> > <?php
    >> > $myvar = "strange";
    >> > if (isset($_POST['myvar'])) {
    >> > $myvar = (get_magic_quotes_gpc()) ?
    $_POST['myvar'] :
    >> > addslashes($_POST['myvar']);
    >> > }
    >> > echo "myvar is now=".$myvar."\n\rI'm in the
    gSys.php file.";
    >> > ob_end_flush();
    >> > ?>
    >> > ---------------------------------
    >> >
    >> >
    >> >
    >> >
    >> >
    >> >
    >> > "Steve Howard **AdobeCommunityExpert**"
    > <steve@$NoSpam$tomorrows-key.com>
    >> > wrote in message
    news:[email protected]...
    >> >>
    >> >> "Julia" <[email protected]>
    wrote in message
    >> >> news:[email protected]...
    >> >> > We are calling a PHP file from
    Authorware 7. Originally, nothing
    > would
    >> >> > happen when the php file was called
    and the server would time out
    >> >> > and
    >> > act
    >> >> > as
    >> >> > though the php file could not be found
    (with a 5006 error). But we
    >> > finally
    >> >> > realized that it wanted to open the
    php file in a new window - with
    >> >> > a
    >> >> > popup.
    >> >> >
    >> >> > We are using a normal posturl:
    >> >> >
    >> >> > temp2
    :=PostURL(NetLocation^"gSysSet.php","",30)
    >> >> >
    >> >> > All the php file has in it is 1 line
    with a echo command.
    >> >> >
    >> >> > Does anyone know why the php would
    open in its own window?
    >> >>
    >> >> Check this out
    >> >>
    >> >>
    >> >
    >
    http://stevehoward.blogspot.com/2005/02/cold-fusion-and-authorware-posturl.html
    >> >>
    >> >>
    >> >> I ran into the same thing a coupe of years
    ago.
    >> >>
    >> >>
    >> >> Steve
    >> >>
    >> >>
    >> >> --
    >> >> EuroTAAC eLearning 2007
    >> >>
    http://www.eurotaac.com
    >> >>
    >> >> Adobe Community Expert: Authorware, Flash
    Mobile and Devices
    >> >> My blog -
    http://stevehoward.blogspot.com/
    >> >> Authorware tips -
    http://www.tomorrows-key.com
    >> >>
    >> >
    >> >
    >>
    >>
    >
    >

  • Floating Date and Time icon is gone in Leopard

    This may seem like a trivial matter, but under Tiger I was able to have the date and time "Calendar and Clock" Icon on the desktop. It was handy to look at quickly for reference. Under Leopard, I can't seem to get it back. I can have date and time in the menubar, but not the floating icon on the desktop. Did they drop this idea in Leopard?

    I saw this hint, but it seems a bit technical to be generally useful.
    http://www.macosxhints.com/article.php?story=20071111053947248
    A better hint may to enable Dashboard Development Mode
    http://www.macosxhints.com/article.php?story=20050422172929402
    and find a widget to your liking that displays date and time.

  • My hard drive on my Mac Book Pro failed last week.  I replaced the hard drive today and had to use my snow leopard disc that came with the computer to get teh thing going.  I was running Mt Lion which I had purchased last year on the old dr

    The hard drive on my Mac Book Pro failed last week.  I just put a new Samsung SSD in this thing and had to load the Snow Leopard OS that came with the computer.  I had Mt. Lion on the old drive that I had purchased last year but no boot disc made.  I have made several attempts to get the Mt lion soft ware on the computer but the Apple store does not have it only mavericks but my Snow Leopard version is too old for it so I cant get it either.  How do I get something to run the software that I had on the old drive?

    Unfortunately I lost my life and am trying to rebuild.  Isn't the technical era great.
    Backup, backup, backup
    As a minimum, use 3-2-1 (or even more)
    3 copies of your data (original copy counts as 1)
    2 different backup utilities/storage formats (protects from bugs in the software)
    1 copy off-site (protects against theft, fire, and natural disaster)
    More backup copies are even better.
    Backup disks are cheap compared to the lost of personal data that does not exist anywhere else.

  • Pros and cons of having OSX Snow leopard and OSX Lion on the same Computer

    Disclaimer : I am not an expert,my experience with Computers is trial and catastrophic errors.
    If one owns an early Intel Mac say 2009 and want to have OSX Lion and or Snow Leopard on a partitioned HD.My setup is typical I use my Bundled DVD and clean format HD ,intall Snow Leopard ,update all and then go to App store download Lion and then you chose your set up .
    Most would upgrade to lion by installing on top of snow leapard.
    I chose to install lion alone on a partition.
    Today I was talking to Apple about an issue with accessing repair and disk permissions on an encrypted volume in Lion recovery Disk Utilities usually greyed out because one must turn off File Vault then go to Lion Recovery Disk Utilities by Start up ,press options the 2 partitioned volumes 1 Lion 2 Snow Leopard 3rd volume  Lion recovery Disk Utilities.
    ,If File Vault is on it will not be there but when one selects volume 1 Lion and Command and R  Lion recovery Disk Utilities appears but Lion Volumeo Recovery Disk Utilities will be greyed out you go tho unmount and it will prompt you for a Lion Password.
    While doing this and repairing I encounted a Storage can not be repaired Error in red, Apple told me that  Lion Recovery Disk Utilities related issues are not supported if one has Snow Leoopard and Lion on a partitoned HD.
    So one must upgrade on top of SnowLeaopard or use the Snow Leopard Bundled DVD to erase the volume 2 SnowLeopard ,then all will be well !
    So what happens with Mountain Lion when using Snow Leopard Macs ?
    Again Disclaimer : I am not an expert and my experience with Computers is trial and catastrophic errors.

    frenchtribe wrote:
    obviously increased security with wall on but slows computer ?
    Doesn't slow anything.
    But what does that have to do with this 2 year old thread?

  • HT1338 I have iMac 105.8 and want to upgrade to Snow Leopard, so got the disc from apple on line store and it will not install, just keeps ejecting from my desktop

    I have iMac 105.8 and want to upgrade to Snow Leopard, so got the disc from apple on line store and it will not install, just keeps ejecting from my desktop

    You have entirely too little free space on the boot drive, for best performance it's best to have hard drives only 50% filled max and never more than 80% filled.
    See Storage Drive here and reduce some space also make a seperate bootable clone backup of all your data BEFORE upgrading
    Most commonly used backup methods
    see here for how to find your disk space
    Why is my computer slow?
    If you upgrade and it doesn't go right or slows the machine down you might need to erase and install, which all your programs will have to be reinstalled from original sources and files from backup.
    How to erase and install Snow Leopard 10.6
    If you can't do this, then hire a local PC/Mac specialist.
    Do not upgrade to 10.7 or 10.8 on that older machine, it will slow down and you will lose all your PPC based programs.
    Leave the Lions for a brand new machine with a SSD drive.

  • Windows 7 computer, and my macbook pro on snow leopard don't see each other?

    My windows 7 computer, and my macbook pro on snow leopard don't see each other. I have configured the windows section under the network prefrences with the required information, and still no luck. Does anyone have any sugestions for me?

    Shouldn't they see each other and let me use each of their files?
    Please pardon the obvious here, but have you checked to make sure that you have enabled the File Sharing option on both computers? You may have already done this, but your post did not mention this, so we can only go with the info that we have.
    If you have not enabled File Sharing, I can't help on Windows, but on your Mac...
    Open System Preferences (gear icon on the dock)
    Open Sharing
    Enter a check mark next to File Sharing
    I imagine that there is a similar setting for the Windows machine
    It would be a good idea to power cycle your entire network as well to make sure that the network is sequenced correctly. Power everything down, order is not important.
    Start your modem first and let it run a moment by itself
    Then start your main router the same way
    Continue starting each device the same way until everything is powered back up

  • Re: New Garage Band - I have Mac OS X 10.6.8, Snow Leopard, and Garage Band 11.  If I download/install the new GB, will I lose GB 11?  And will it run on Snow Leopard?

    Re: New Garage Band - I have Mac OS X 10.6.8, Snow Leopard, and Garage Band 11.  If I download/install the new GB, will I lose GB 11?  And will it run on Snow Leopard?

    then had to find out (same as with this issue) that I presently have other software that will not run on Maverics.
    You could create a clone of your drive with all your current software, so you could continue to work with your Snowleopard software by booting from the clone, and upgrade your main system to Mavericks, if your computer supports Mavericks.    This way, you could have both, if the new features of Mavericks are interesting to you -  e.g-, iCloud syncing of multiple Macs, new sharing features, and for GarageBand automatic drummers and arpeggiators.

  • I have a Mac OS X v 10.4.11 and trying to upgrade to snow leopard but it says I don't have enough RAM, what do I do?

    I have a Mac OS X v 10.4.11 and trying to upgrade to snow leopard but it says I don't have enough RAM, what do I do?

    What machine are you running on?
    As far as I recall, Snow Leopard's memory requirements were 1GB of RAM. All Intel-based Macs have shipped with at least that much, so I don't understand how you have a machine that doesn't have enough memory.

  • Preview and Hebrew Support - An Issue in Leopard

    I discovered that when doing searches in "Preview" for Hebrew documents (i.e. right to left language), in order to have "Preview" properly perform the search, I would have to type in the word backwards to perform the search properly - an issue of lack of support for Hebrew in Preview. For example, to search for the word "צפור", I need to type in "רופצ" to search properly. I would recommend this be resolved for Leopard. Has this issue been addressed and resolved for "Preview" in "Snow Leopard"?
    (Just as a note - The software for my iPod (2.0) did not have Hebrew support (so Hebrew words from iCal showed up written backwards), but in 3.0 there is Hebrew support and the words show up properly.)

    Here is an example of "Preview" only working for reverse searches. I had to type in "הז" to effectively search for the word "זה". The first example is of the search not picking up the word "זה" in Preview when searched properly, as "זה". The 2nd is the example of the search working only in reverse. (By the way, this is not a problem in Adobe - including on Macs). I'll also let Apple know directly through the Feedback link you gave me. Thanks.
    Here's the links:
    1) http://pic1.piccdrop.com/i/3/1247875723.png
    2) http://pic.piccdrop.com/i/0/1248041430.png
    This is an issue in Tiger and Leopard.

Maybe you are looking for

  • Numbers not displaying certain text.

    I use Numbers to create invoices. Previous versions of numbers would display and print but not export certain text. In version 9 the same text will not even display. Any way to fix without opening all my old invoices in a previous version of Numbers?

  • General method to fetch data from transparent tables with cluster field

    Hi, I want to know is there any general method to fetch data from the transparent tables which have cluster type field. For example MDTC, STXL, PCL1. thanks

  • Clearing a JList

    I have an app which presents results from a search into a JList after an action button is clicked. The problem I have is that each subsequent search concatenates the results in the JList to the previous results. I have tried calling listModel.removeA

  • Photoshop Elements 6 und Lightroom

    Hallo zusammen, habe Lightroom und Photoshop Elements 6 und hatte gehofft damit würde es besser funktionieren .Zum einen klappt das Zusammmenspiel mit LR und PS Elements 6 nicht da ich von LR aus meine Bilder nicht an Photoshop Elements 6 übergeben k

  • SYS_CONNECT_BY_PATH Upside-down (over Bills of Material)

    Hello all, I'm trying to use this function, in order to check the most upper assemblies for a component. The input I enter us a lower component, which I'd like to know who it the top assembly for it. I'm using the following select: select distinct(LP