Is there a easy proven method of getting php working with oracle?

I am trying to get php 4.3.11 working oracle instant client + suse9.2 + apache2 to connect to a remote oracle db. Recompling php and apache2 from source with oci8 in mind.
Facing a lot of Recompling errors. Is there any rpm with all libs.
What is the best combinations? (dont mind starting from scratch)
Any hints or help will be greatly appreciated.

Until Zend Core for Oracle* is available, keep compiling.
What errors are you getting?
-- CJ
* For reference, the Zend Core FAQ is at
http://www.oracle.com/technology/tech/php/htdocs/oracle_zend_faq.html

Similar Messages

  • Hey guys, having a problem with my itunes. Basically it wont open when prompted and it wont respond to anything including my iphone. ive tried reinstalling but no luck. Really desperate! ive tried so many methods to get it working with no luck :( help!

    Please help!

    Whew... never buy an iMac or Laptop from Apple without the 3 year extended AppleCare... well 2 years extended... & I think they should be called on this, they should come with a 5 year Warranty, with more available if you want.
    I think, "hmm... should it take this long?"
    No way, Houston, we haave a problem, not sure what... RAM, Logic Board, etcd.
    Tough without the Install disc, but some things to try...
    Does it boot to Single User Mode, CMD+s keys at bootup, if so try...
    /sbin/fsck -fy
    Repeat until it shows no errors fixed.
    (Space between fsck AND -fy important).
    Resolve startup issues and perform disk maintenance with Disk Utility and fsck...
    http://docs.info.apple.com/article.html?artnum=106214
    Report outcome please.

  • I have a problem with mail.  the spelling and grammer check box before sending the messege is no longer there.  I did everything but cannot get it back.  is ther anyone who knows how to get the box with spelling and grammer checks before sending

    i have a problem with mail.  the spelling and grammer check box before sending the messege is no longer there.  I did everything but cannot get it back.  is ther anyone who knows how to get the box with spelling and grammer checks before sending the mail.
    Also the mail is acting very funny by not getting the rules work in a proper method.  Is ther a software to repair mail.

    i did both of them, but still the while sending the mail the diolog box is not showing up and also the spelling and grammer does not do the spelling check. 
    This problem just started for about 3 to 4 days now.  earlier it was working normally.

  • Is there an easy way to convert from a String with a comma, ie. 1,000.00 to

    Is there an easy way to convert from a String with a comma, ie. 1,000.00 to a float or a double?
    thanks,
    dosteov

    Like DrClap said: DecimalFormat. However, make sure you understand the Locale things, as explained at http://java.sun.com/j2se/1.3/docs/api/java/text/DecimalFormat.html (which refers to NumberFormat as well) and use them explicitly. Like
    public class FormatTest
      public static void main(String args[])
        try
          // see NumberFormat.getInstance()
          DecimalFormat fmt = new DecimalFormat();
          Number num = fmt.parse("1,000.01");
          System.out.println(num.doubleValue());
        catch(ParseException pe)
          System.out.println(pe);
    }most likely seems OK on your system, but may print "1.0" (or even fail) on some non-English platforms!
    When performing calculations, also see http://developer.java.sun.com/developer/JDCTechTips/2001/tt0807.html
    a.

  • TS3694 My ipod touch encountered some water and wont turn on. Is there  anything we can do to get it working again? It says error 3104 when trying to restore it. Thank you

    My ipod touch encountered some water and wont turn on. Is there anything we can do to get it working? It says error 3104 when trying to restore. thank you

    Maybe here:
    Errors 3000-3999 (3004, 3013, 3014, 3018, 3164, 3194, and so on): Error codes in the 3000 range generally mean that iTunes cannot contact the update server (gs.apple.com) on ports 80 or 443.
    Update to the latest version of iTunes.
    Verify the computer's date and time are accurate.
    Check that your security or firewall software is not interfering with ports 80 or 443, or with the server gs.apple.com.
    Follow Troubleshooting security software. Often, uninstalling third-party security software will resolve these errors.
    An entry in your hosts file may be redirecting requests to gs.apple.com (see "Unable to contact the iOS software update server gs.apple.com" above).
    Internet proxy settings can cause this issue. If you are using a proxy, try without using one.
    Test restoring while connected to a known-good network.

  • How to get exact match when working with Oracle Text?

    Hi,
    I'm running Oracle9i Database R2.
    I would like to know how do I get exact match when working with Oracle Text.
    DROP TABLE T_TEST_1;
    CREATE TABLE T_TEST_1 (text VARCHAR2(30));
    INSERT INTO T_TEST_1 VALUES('Management');
    INSERT INTO T_TEST_1 VALUES('Busines Management Practice');
    INSERT INTO T_TEST_1 VALUES('Human Resource Management');
    COMMIT;
    DROP INDEX T_TEST_1;
    CREATE INDEX T_TEST_1_IDX ON T_TEST_1(text) INDEXTYPE IS CTXSYS.CONTEXT;
    SELECT * FROM T_TEST_1 WHERE CONTAINS(text, 'Management')>0;
    The above query will return 3 rows. How do I make Oracle Text to return me only the first row - which is exact match because sometimes my users need to look for exact match term.
    Please advise.
    Regards,
    Jap.

    But I would like to utilize the Oracle Text index. Don't know your db version, but if you slightly redefine your index you can achieve this (at least on my 11g instance) :
    SQL> create table t_test_1 (text varchar2(30))
      2  /
    Table created.
    SQL> insert into t_test_1 values ('Management')
      2  /
    1 row created.
    SQL> insert into t_test_1 values ('Busines Management Practice')
      2  /
    1 row created.
    SQL> insert into t_test_1 values ('Human Resource Management')
      2  /
    1 row created.
    SQL>
    SQL> create index t_test_1_idx on t_test_1(text) indextype is ctxsys.context filter by text
      2  /
    Index created.
    SQL> set autotrace on explain
    SQL>
    SQL> select text, score (1)
      2    from t_test_1
      3   where contains (text, 'Management and sdata(text="Management")', 1) > 0
      4  /
    TEXT                             SCORE(1)
    Management                              3
    Execution Plan
    Plan hash value: 4163886076
    | Id  | Operation                   | Name         | Rows  | Bytes | Cost (%CPU)| Time     |
    |   0 | SELECT STATEMENT            |              |     1 |    29 |     4   (0)| 00:00:01 |
    |   1 |  TABLE ACCESS BY INDEX ROWID| T_TEST_1     |     1 |    29 |     4   (0)| 00:00:01 |
    |*  2 |   DOMAIN INDEX              | T_TEST_1_IDX |       |       |     4   (0)| 00:00:01 |
    Predicate Information (identified by operation id):
       2 - access("CTXSYS"."CONTAINS"("TEXT",'Management and
                  sdata(text="Management")',1)>0)
    Note
       - dynamic sampling used for this statementJust read that you indeed mentioned your db version in your first post.
    Not sure though if above method is already available in 9i ...
    Message was edited by:
    michaels

  • [svn] 1317: Updates to get flex working with the Vector stuff.

    Revision: 1317
    Author: [email protected]
    Date: 2008-04-20 12:12:54 -0700 (Sun, 20 Apr 2008)
    Log Message:
    Updates to get flex working with the Vector stuff. Had to add support for the new name type, and new applytype opcode to the Optimizer/Merger that flex uses. Also had to slightly change how the instantiated vector classes find their declared methods. Previously they were copied into the new class, but now they just point to the original vector class.
    Modified Paths:
    flex/sdk/trunk/modules/asc/src/java/macromedia/abc/ConstantPool.java
    flex/sdk/trunk/modules/asc/src/java/macromedia/abc/Decoder.java
    flex/sdk/trunk/modules/asc/src/java/macromedia/abc/Encoder.java
    flex/sdk/trunk/modules/asc/src/java/macromedia/abc/OpcodeVisitor.java
    flex/sdk/trunk/modules/asc/src/java/macromedia/abc/Opcodes.java
    flex/sdk/trunk/modules/asc/src/java/macromedia/abc/Printer.java
    flex/sdk/trunk/modules/asc/src/java/macromedia/abc/Scanner.java
    flex/sdk/trunk/modules/asc/src/java/macromedia/abc/Visitor.java
    flex/sdk/trunk/modules/asc/src/java/macromedia/asc/parser/Parser.java
    flex/sdk/trunk/modules/asc/src/java/macromedia/asc/semantics/ConstantEvaluator.java
    flex/sdk/trunk/modules/asc/src/java/macromedia/asc/semantics/FlowAnalyzer.java
    flex/sdk/trunk/modules/asc/src/java/macromedia/asc/semantics/ReferenceValue.java

    despite the workaround, it doesn't fix the real problem. It shouldn't be a huge deal for adobe to add support for multiple svn versions. Dreamweaver is the first tool i've used that works with svn that doesn't support several types of svn meta data. If they're going to claim that Dreamweaver supports svn is should actually support svn, the current version, not a version several years old. This should have been among the first patches released, or at least after snow leopard came out (and packaged with it the current version of svn).
    does anyone know if the code that handles meta data formatting is something that is human readable, or where it might be, or is it in compiled code.
    i signed up for the forums, for the sole purpose of being able to vent about this very frustrating and disappointing situation.

  • Can't get PHP working

    Hi all...
    I'm trying (despeartely) to edit my apache httpd.conf file so that I can switch on PHP on my Mac (OSX 10.5.8). I've tried every link on google for tutorials to get it to work, but I can't get it. I've used all sorts of goofy command line tools from terminal, but none seem to work. And, I can't even locate the file using Spotlight. Eergh. Very frustrating. I work on a PC laptop and have regularly had to install Apache and PHP and I've never had a problem locating either the root directory or any of the conf and ini files I need, but with Mac, everything seems to be hidden or it requires using cryptic command line tools to accomplish what should be a very simple thing.
    Apache is up and running. Localhost serves up the pages I expect and I can and and edit folders in my sites folder without issue. I just can't seem to get PHP working. I don't want to install a utility (like xamp) because I really should have to. I just need to make a small edit to my httpd.conf file in a text editor and I'm baffled as to why this is so difficult.
    And anyone give me good directions or point to a resource that could help?

    Well I just went through setting up Apache for the first time and I tried a few different sets of instructions, before I found a set that was easy to understand.
    This was the easiest most straightforward way that I found.
    Basically you just use textwrangler(or something similar) to open the http.config file located at: +*Macintosh HD:private:etc:apache2:httpd.conf*+
    Then just remove the # pound symbol from the beginning of that line. PHP is now enabled on your Mac.
    You should continue to the next steps to make a copy of your php.ini file as well: but, I haven't found out what I need to do to set this up to my own personal preferences.

  • How to get QTP11 work with FF17. Unable to get Quicktest Proffessional11 plugin

    How to get QTP11 work with FF17. I have already installed Patch_090 and 0122.
    Unable to get Quicktest Proffessional11 plugin even after creating temp directory, into FF “extensions” directory.
    Please help

    If I may ask is there a recommended version of Firefox for the extension? [http://www.qatutorial.com/files/QTP_Install_Guide.pdf] is all I could find on how to install the software, is this the right add on?

  • Is it possible to create the adhoc network and get it work with WLAN APIs (WlanConnect) instead of netsh commands...?

    Hi All,
    I am facing issues in creating  adhoc network in Windows 8.1. After searching in internet, I found that adhoc works with 
    netsh commands.
    1. I have tried neths commands and able to get it work on windows 8.1, 
     but I want to do it through the WLAN APIs ie. WlanConnect ,
    2. I am able to initiate the adhoc network(on Windows 8.1) by using WlanConnect API and other device are also able to connect to the Windows8.1 initiated adhoc  network  but the DHCP is not working.
    -> clients are not able to get the IP address.
    Is it possible to create the adhoc network and get it work with WLAN APIs (WlanConnect) instead of netsh commands...?
    Thanks
    akhil

    Hi,
    Did you mean to write a program to implement that creating adhoc via UI? This should be development issue.
    But this is Windows 8.1 client forum and there is no professional on develop.
    To help you better, I suggest you submit a new case on MSDN forum to help to check your code as they will be more professional on your issue:
    This is the MSDN forum link.
    http://social.msdn.microsoft.com/Forums/ 
    The reason why we recommend posting appropriately is you will get the most qualified pool of respondents, and other partners who read the forums regularly can either share their knowledge or learn from your interaction with us.  Thank you for your understanding.
    Kate Li
    TechNet Community Support

  • My hard drive crashed on my Imac 24" 2009, i put in a new hard drive 2TB and a SSD drive 240 GB and removed the opticdrive. What external DVD can I get to work with the IMac? The Apple super drive is not compatible.

    My hard drive crashed on my Imac 24" 2009,  I installed a new hard drive 2TB and a SSD drive 240 GB and removed the optical drive.
    What external DVD can I get to work with the IMac?                              The Apple super drive is not compatible.

    Virtually any DVD burner that can connect to your Mac will work. They start at $40 on Amazon.

  • Is there a driver for Windows 8.1 that works with HP Scanjet 5500c

    Is there a driver for Windows 8.1 that works with HP Scanjet 5500c
    Thank you.

    Hi,
    I afraid you will not be able to use the scanner with Windows 8.1, it is not compatible with the OS.
    Regarding VueScan, I afraid it would not be an option as well, the application only support your scanners if there are drivers for the OS:
    If there isn't an HP scanner driver at www.hp.com for your operating system, then unfortunately VueScan won't work with this scanner.
    You may try using the Vista drivers by running the drivers using the Program Compatibility Troubleshooter as listed below.. select Not Listed from the programs list and browse to the installation file for Vista:
    http://h10025.www1.hp.com/ewfrf/wc/document?cc=us&dlc=en&docname=c03401961&lc=en#N63
    The installation file for Vista can be downloaded below:
    http://h10025.www1.hp.com/ewfrf/wc/softwareDownloadIndex?softwareitem=sj-47405-1&cc=us&dlc=en&lc=en&...
    Shlomi
    Say thanks by clicking the Kudos thumb up in the post.
    If my post resolve your problem please mark it as an Accepted Solution

  • Is there a portable battery operated printed that will work with my iPad 2

    Is there a portable battery operated printer that will work with my iPad 2? Need to print out invoices while I'm in my truck.

    There is another, rather lengthy, thread on this. Might be worth having a read:
    https://discussions.apple.com/message/18042767#18042767

  • After sharing a folder of images with someone, is there an easy/fast way to view the images with comments?

    I shared a folder of 100 images with a friend.  She commented on the images she would like edited.  Is there an easier way to view the photos she commented on, other than clicking on each image to view the activity? 
    Thank you!

    You will likely get better program help in a program forum (maybe Photoshop?)
    The Cloud forum is not about using individual programs
    The Cloud forum is about the Cloud as a delivery & install process
    If you will start at the Forums Index https://forums.adobe.com/welcome
    You will be able to select a forum for the specific Adobe product(s) you use
    Click the "down arrow" symbol on the right (where it says All communities) to open the drop down list and scroll

  • Is there a USB 3.0 Hub that really works with the Mac Mini?

    My Mac Mini's four USB 3.0 ports work fine with my four USB Seagate GoFlex 3.0 hard drives. The drives mount at startup, and perform at expected USB 3.0 speeds. But, when I connect the drives to a USB 3.0 HUB to free up the Mac's USB ports for other devices, typically two of the USB Seagate drives will mount at startup, but two won't. There's a fix for this: after startup, I simply disconnect AC power from the drives that didn't mount, and reconnect the power a few seconds later. Now all my drives are mounted, they perform properly, and other USB devices connected to other Mac Mini USB ports (a mouse, a USB midi interface) work just fine as well. It's annoying, though, to have to perform this extra disconnect-reconnect step every time. I've tried two different USB 3.0 HUBs -- one from Uspeed and one from Satechi -- and I have exactly the same problem with both. Question: Is anybody else experiencing the same thing with a late 2012 Mac Mini and a USB 3.0 Hub? Has anybody found a 3.0 Hub that doesn't have this issue with the Mac Mini?

    The USB 3.0 hub instability problems extend beyond the Mac-Mini, as addressed below.
    At long last we're seeing progress in getting 2012 Macs to work with USB 3.0 hubs. As discussed on this and other discussion groups I've had a horrible time with my MacBook Pro Retina  being unstable with USB 3.0 hubs. I know many of you have also or you wouldn't be reading this posting. 
    In June 2012 I bought one of the first 2012 MacBook Pro's with a Retina display. It's been a battle since with Apple selling what appears to be an incompatible or unstable system to effectively communicate with the USB 3.0 hubs. You'll see vendors now making comments that Apple is the source of the problem.
    I've been through USB 3.0 issues with two MacBook Pro Retina laptops. I've also tested a Uspeed hub, with 3 portable USB 3.0 drives connected, at the Apple Store. This was on a newer model MacBook Pro Retina, and also on a 27" iMac. All had instances where drives failed to mount during the short period allowed for testing. (Because of time constraints, we were unable to test at the Store for spontaneous and unprovoked unmounting of drives connected to the hub. These problems have existed since the beginning on my rMBP.)
    I am now on my 20th hub that has been purchased, or provided for testing. They varied from 4-Port to 10-Port powered hubs and involved 11 brand names. Comments were posted on Amazon, Tiger, and others for most of the ones purchased, and some that were tested. Some, like the HooToo specifically warned against use with Macs in the manufacturer's manual and, as I learned, for good reason. That was reflected in my comments for the drive on Amazon.
    The Plugable 7-Port USB 3.0 powered aluminum-finish hub that I have been testing since October 13 was provided  by Plugable after the first one, purchased through Amazon, was returned as unreliable. This 3rd, and newer generation Plugable hub uses the VIA VL812 chipset with the new version 90.81 firmware. My experience over the last 4+ weeks with this hub has been solid. While there have been problems with Eject errors, none were traced to the hub electronics. (Problems with intermittent connections at the cable connectors  appeared to be the cause of the disconnect errors. Almost all of the failures were traced to intermittent Micro-B connectors, but that's another story.)
    In addition to the greatly improved reliability of this hub, I find several features of this Plugable to be a plus including:
    The plug engages fully to the "hilt" when plugged into the hub giving a solid connection, as occurs on the MacBook Pro Retina USB 3.0 ports. Others hubs typically had a gap between the "hilt" of the connecting end, and the hub allowing for lateral movement. With some hubs this allowed for intermittent connections if the cable was disturbed.
    The on/off switch on the hub allows the hub to be powered down when not in use.
    The full size Type-B connectors on the cable at the hub end engage solidly. Hubs with Micro-B connectors have presented intermittent connections in the cable connector.
    The aluminum case looks attractive with Macs, IMO, but not a reason to buy.
    Overall, Plugable's support is the best I've encountered. I've found their response to questions to be prompt and thorough. This, coupled with their online support articles has put them at the top of my list. They provide news and information that I've not found with other hub vendors.
    The article titled "Plugable USB 3.0 7 Port Hub Firmware History" at the below link gives insight into the history of the problems that we've been having with the USB 3.0 hubs on Macs and the firmware updates, regardless of the brand of hub you have.  Apparently, if you have the VIA VL 812 chipset, firmware version 85.81, you're in safe territory.
    http://plugable.com/2013/10/30/plugable-usb-3-0-hub-firmware-upgrades2
    (One of the Plugable hubs appears identical to the black 7-Port Uspeed hub, and both use the VIA VL 812 chipset. They appear to be from the same manufacturer with the real difference appearing to be in the VL812 version of the firmware in the hub.)
    Some of the firmware can be upgraded, and some can't. Contact Plugable or Anker if you're affected.
    Uspeed has made improvements, but they were still unstable as of the last one I received for testing. In her last reply on 10/13/13 Sunnie with AnkerDirect Customer Support stated:
    Unfortunately, the new Firmware version (908x) does not work with the model "68UNHUB-B7U" you have. The hub bellow has much less complaints about Mac issue. We suggest that you order this one.
    http://www.amazon.com/gp/product/B009Z9M3DY
    AnkerDirect Customer Support
    Note that the above hub recommended by Anker has an 8th port just for charging iOS devices. Some will see this as a plus. However, the lack of such a port is not seen as a big problem. It's easy and relatively inexpensive to purchase extra 5V power adapters for charging, which is my preference. Plugging and unplugging devices on a hub that is powered "On" presents the potential for movement of the cables. This could interrupt a cable connection  and disconnect a drive during data transfer resulting in corrupted files. With 7 and 10 port hubs, and all the cables needed, this gets risky.
    I believe the USB 3.0 hub issues we're having are the result of poor design of the Mac's USB 3.0 implementation at the start. Unstable hubs that I've had a friend with Windows 7 test, said they "performed like a dream" on his PCs. This indicates the problem is with Macs, not the (twenty) hubs I've used.
    A statement from a support person dealing with USB 3.0 hubs tells what's I've long suspected: " -- the evidence is pointing to something specific to the Apple design (perhaps external to the chipset, like the signal re-driver….."
    If you're having USB 3.0 problems, be sure to let Apple know by sending in a Feedback comment to Apple at:
    http://www.apple.com/feedback/ 
    I'm told they read and treat the feedback seriously (although the duration of this USB 3.0  problem makes me wonder if Mavericks and iOS 7 haven't had a higher priority and distracted from this. Microsoft got USB 3.0 right, how about it Apple?)

Maybe you are looking for

  • Hiding gap in a table control - Column is invisible

    Hi All, I'm hiding a column in a table control based on a condition. My requirement is I need to remove the gap occupied by the column that is invisible. <b><REMOVED BY MODERATOR></b> Thanks, Bhaskar. Message was edited by:         Alvaro Tejada Gali

  • Adobe Captivate 5 Simulation package giving an error.

    Hi, We are getting "Adobe® Captivate® has encountered a problem and needs to close. We are sorry for the inconvenience." at the enf of recording in simulation feature. Strange part is we are getting this message after we create MSI through Adobe cust

  • Mail not sent using SO_NEW_DOCUMENT_SEND_API1

    Hi, I am using report RSCONN01 after the FM SO_NEW_DOCUMENT_SEND_API1 to send email. Eg: submit rsconn01 with mode = 'INT'                 with output = 'X'                 and return. But this report gives a popup which is creating a problem. Is the

  • Need help in modify statement

    Hi all , I have a problem in MODIFY statement. I have 2 internal statement. 1. It_final and 2. it_tab. The number of datas in it_tab is greater than it_final. But i want to loop it_tab and modify the fields of it_final. How can i do this. Please help

  • Where to add code to populate form parameters in forms 6i?

    Hi everyone!! I have the following scenario: I have a form that has a button that takes the user to a new window which too contains a button to take the user to the third window. In the third window i have two t lists that show the database values fo