How to install Mysql pdo driver

We are working on a g5 server, Tried to recompiled PHP 5.2.5 but didn't work, then reinstalled PHP 5.2.4 entropy witch is suppose to have Mysql pdo driver but still doesn't work.
Please help me I'll do your dishes and wash your car!!!!

I (still) have the same problem.
I think that it's coming from the compilated php you used, I mean that your is compilated into 32bits whereas leopard is in 64bits.
So you have to compile php in 64bits.
I'm trying to compile the php integrated to leopard, but can't find any sources (like .configure) to do this.
So I've download new php sources and then, I try a compilation, but I can't find the directory where mysql is installed.
So I've download a new versions of mysql. But like a noob I install mysql 6 which is an alpha version, then I can't install older vesion of mysql.
I 'll try a hand install of mysql.
Try to make a new install of php, mysql and compile them into 64bits.
You will find easily a 64bit version on mysql website.
Or you can wait for the entropy package which will support leopard.
Or if you have a better idea.

Similar Messages

  • How to install in diffrent drive

    Hi,
    How to install at diffent drive?

    Heir72 which Adobe software or service is your inquiry in relation too?

  • How to install a flash drive?

    How to install a flash drive?

    If you simply mean a USB flash drive, or a USB hard drive. There should be no installation requirements. If the drive doesn't show up in Finder, you should check whether Disk Utility sees it, and whether the drive has a Mac readable filesystem. Disk Utility can be found with spotight if you do not know where it is.

  • I am required identifier. How to install MySQL??????????????????????

    During the MYSQL installation, i am required My Oracle Support credentials.
    The login to My Oracle is not recognized.
    On the first day i was required to verify my account.
    On the second day, when i try to login to My Oracle from:
    https://support.oracle.com/epmos/faces/MosIndex.jspx?_afrLoop=8629424932344&_afrWindowMode=0&_adf.ctrl-state=15aeb6uxup_4
    my credentials are accepted and i can see the following messages:
    " Support Identifiers are the "contract" between your organization and Oracle. They define the privileges you have to file service requests, download patches and more. These privileges are approved and set by an administrator in your organization. You need at least one support identifier in your account to get to most features. "
    "Note to the Approve: "
    "* Support Identifier: "
    "Validated Support Identifiers: "
    I have no approver, organisation - thus i can not provide the details i am required.
    How to install MySQL??????????????????????
    regards,
    gintare statkute

    I have changed MySQL installation type: used developer instead of Enterprise.
    I am not an enterprise, but it was written that enterprise version is free thus i have chosen it at first. Nevertheless it requires identifiers, which can be obtained as far as i understood only if one is paying for the customer support and has an Oracle representative in the company-organization.

  • Did somebody know how to install mysql in MacBook Air version 10.8.1 os x mountain lion?, Thanks in advance

    Did somebody know how to install mysql in MacBook Air version 10.8.1 os x mountain lion?, Thanks in advance

    Am following your doc now (https://discussions.apple.com/docs/DOC-3082) and wondering if the edit
    First, fix the MySQL client library. (credit)
    For Lion, type:
    sudo install_name_tool -id /usr/local/mysql-5.5.22-osx10.6-x86_64/lib/libmysqlclient.18.dylib /usr/local/mysql-5.5.22-osx10.6-x86_64/lib/libmysqlclient.18.dylib
    also applies to Mountain Lion.  Am guessing it does as your credit link resolves to an article re. the Snow Leopard install.  Thanks in advance.

  • How to install HP printer driver *****

    Hi,
    How to install HP printer driver , so that i can see new device type in SPAD.
    Thanks
    Lisa

    Hi Lisa,
    proceed as below.
    1)Log in to HP-UX as root (or an other username that controls the printers, and has all the rights to the directories).
    2)Type sam  on the command line and press enter.
    3)Scroll to Printer and Plotters with the vertical scrollbar.
    4)Click twice on Printers and Plotters.
    5)Double click on LP Spooler.
    6)Click twice on Printers and Plotters.
    7)Select Actions on the menu bar and click on Add Remote Printer/Plotter.
    8)For “Printer Name” type any name, “Remote System Name” use the DNS/Host name, or alternatively use the dotted-IP (200.200.200.11). ”Remote Printer Name” should be one of the destination ports on the Printnet (d1prn, d2prn, etc….). Also select Remote Printer is on a BSD System. Press OK and the server will install the printer.
    9)Click on OK.
    10)For a test print type lp –d Printername /etc/protocols.
    And finally  don’t forget to make this printer as the default printer if u have only this.
    Right click on the printer and and say make default.
    Regards,
    Bapu

  • How to register MySQL JDBC Driver in OC4J

    Does anyone know how to register the MySQL JDBC driver in OC4J ?

    When your application must connect to heterogeneous databases, use DataDirect JDBC drivers. DataDirect JDBC drivers are not meant to be used with an Oracle database but for connecting to non-Oracle databases, such as Microsoft, SQLServer, Sybase and DB2. If you want to use DataDirect drivers with OC4J, add corresponding entries for each database in the data-sources.xml file.
    Please see the DataDirect documentation for information on installing the DataDirect JDBC drivers.
    The following is an example of a data source entry for SQLServer. For more detailed information, see the DataDirect Connect JDBC User's Guide and Reference.
    <data-source
    class="com.evermind.sql.DriverManagerDataSource"
    name="MerantDS"
    location="jdbc/MerantCoreSSDS"
    xa-location="jdbc/xa/MerantSSXADS"
    ejb-location="jdbc/MerantSSDS"
    connection-driver="com.merant.datadirect.jdbc.sqlserver.SQLServerDriver"
    username="test"
    password="secret"
    url="jdbc:sqlserver//hostname:port;User=test;Password=secret"
    inactivity-timeout="30"
    />
    For a DB2 database, here is a data source configuration sample:
    <data-source
    class="com.evermind.sql.DriverManagerDataSource"
    name="MerantDS"
    location="jdbc/MerantDB2DS"
    xa-location="jdbc/xa/MerantDB2XADS"
    ejb-location="jdbc/MerantDB2DS"
    connection-driver="com.merant.datadirect.jdbc.db2.DB2Driver"
    username="test"
    password="secret"
    url="jdbc:sqlserver//hostname:port;LocationName=jdbc;CollectionId=default;
    inactivity-timeout="30"
    />
    For a Sybase database, here is a data source configuration sample:
    <data-source
    class="com.evermind.sql.DriverManagerDataSource"
    name="MerantDS"
    location="jdbc/MerantCoreSybaseDS"
    xa-location="jdbc/xa/MerantSybaseXADS"
    ejb-location="jdbc/MerantSybaseDS"
    connection-driver="com.merant.datadirect.jdbc.sybase.SybaseDriver"
    username="test"
    password="secret"
    url="jdbc:sqlserver//hostname:port;User=test;Password=secret"
    inactivity-timeout="30"
    />
    please link: http://otn.oracle.com/docs/products/ias/doc_library/903doc_otn/generic.903/a97690/ds3.htm#100612

  • How to install MySQL 5 and remove default install

    Hi all,
    I have some problems to make MySQL 5 works fine on Mac OS X server.
    I have installed the package (http://dev.mysql.com/downloads/mysql/5.0.html) but a instance of the old mysql still running.
    Can someone explain me how to remove the default install and make the new one works?
    PowerBook G4   Mac OS X (10.4.3)   Mac OS X Server

    "pwd in directory /usr/local/mysql return /usr/local/mysql"
    I didn't really address this in my previous post, but this could be a problem. This seems to indicate that there is an actual directory named mysql in /usr/local. That shouldn't be the case. If it's empty, you should remove it and replace it with a symbolic link to /usr/local/mysql-standard-5.0.16-osx10.3-powerpc (assuming that's the version you have installed).
    To create this link, cd to /usr/local and enter:
    ln -s /usr/local/mysql-standard-5.0.16-osx10.3-powerpc mysql
    Or you may want to run the installer again. I would hope that the installer would not fail without giving you an error, and since creating this link is not necessary for the installation, it probably just ignored it, but the presence of the directory would have prevented it from creating the link, so it could have interfered with the normal operation of the installer.
    Normally when you install MySQL it installs into the /usr/local directory, creating a folder with the full name of the version, e.g. "mysql-standard-5.0.16-osx10.3-powerpc" in the case of the current version. It then creates a symbolic link to that directory called "mysql" in the /usr/local directory. That's why, normally, if you cd to /usr/local/mysql and issue pwd it should give you the full path to the current MySQL installation directory.
    The beauty of this system is that it leaves your current installation intact, so if you need to back out, because some of your applications are not compatible with the new version, you only need to re-point that symbolic link to point back to the old version.
    It also allows you to transfer your data very easily. Even if you forget to extract the data folder from the old version before you installed the new one, your data is still there, safe and sound. (That's why I've been recommending leaving that folder alone until you sort out the problems with the installation of the new version.)

  • How to install Oracle ODBC driver...?

    TOM,
    Presently, I have oracle client version. But there no Oracle ODBC driver in my PC. But, I want to install only Oracle ODBC driver in my PC for ODBC Connectivity purpose.
    How to install & where can get the source?

    I found out the real answer!!!
    On another thread there was a link to the client 10g installation. I download that 480Meg monster. Unzipped the package and launced the setup.exe.
    You can then install just the ODBC using the custom option. But, it will not install the tnsnames.ora file. If you have ever done this from a VB app, copy the tsnnames.ora over to the \network\admin folder. It's usually under the oracle\product\client\10.0.2\ folder. Once installed you can launch the ODBC administer either from the link Oracle installs or from the control panel.
    Next, you need to make sure the folders where the .dll file is readable to the iis. Change the folder to add whatever permission group you use for iis (I happen to have setup a local users group {machinename\users}. Add them to the entire folder structure (check the embedded folders to ensure they are readable).
    While setting up the ODBC, the TSN names will now be listed from the tsnnames.ora file (if properly located). To make the connection work, the userid should be 'userid;pwd=password'. Otherwise the connection failed for me.
    Now, if your connection works okay from the odbc test connection, it will probably fail if accessing through iis (like from a .asp page). There are environment path variables that need to be set. Reboot the server for them to get set. Otherwise you will get a ODBC driver can not be loaded do to system error 1114 message.

  • How to install jTDS jdbc driver

    I've heard so much about this jTDS driver, and had it with the current jdbc driver i'm using. I'm using slserver 7. i would like to install the jtds driver. I just downloaded the .jar file. how do i install the driver. which directory do i put it in? pls help asap. thanks a million.

    "Install" it?
    The directory you put it in depends greatly on the application that's using it.
    If it's a desktop app, put in in the CLASSPATH for the app.
    If it's a Web app, put it in the WEB-INF/lib directory for your app.
    It's not a cut & dried answer. I don't think one JAR file will necessarily serve all apps. Expect to have duplicates as needed. I do.
    %

  • How to install Vista display driver on my Satellite M55?

    Hello
    I have Windows Vista on my laptop Satellite M55 but I cannot instal my display driver :(
    How can I install display driver on Vista?
    Vista knows Mobile Intel(R) 915GM/GMS/910GML Express Chipset Family (Microsoft Corporation - XDDM)
    I wanna instal my graphic card on Vista OS
    Pleas help me
    Thnx

    Hi!
    Sorry but you will not get drivers for this Intel chipset and Vista.
    I searched on the Toshiba and Intel website and there are no drivers for Vista available. So must use Windows XP, there is no support or drivers for this chipset and Vista.
    Bye

  • How to know the model of my Dv6 and how to install switchable graphics driver

    hi,
    I have a HP pavilion dv6 but I don't know what model is to download the drivers.
    Here are the specs:
    (this was purchase in Europe Portugal)
    - Intel core I5 M480 2.67Ghz
    - 500GB HDD 5600rpm
    - HD 6650
    - 4GB RAM
    - Finger print reader
    - 3x USB
    -Dvd Rom
    - x1 SD CARD reader
    - x1 esata
    - x1 HDMI
    - x1 Vga port
    - Camera HP trueVision
    - Dobly Advance Audio ALTEC lansing
    - Win7 Home Prem 64bit
    I need to install the AMD 6650 Driver with the switchable drivers options currently it only detects the Intel HD Graphics, installing the latest driver from AMD for the mobil 6650 will not work it doesn't dettect the graphics card.
    How can I know my laptop model ? and how to install the switchable and AMD drivers.. the laptop came with no CDs.
    Thank you,
    Arthur

    Get your full Model number or Product number from the Service Tag attached to bottom of laptop (may be under battery)
    How Do I Find My Model Number or Product Number
     Once you have the info, use the button at top of this page titled "Support", then click "Download drivers" from the menu. Enter your Product Number. After entering PN click 'Go". On the next page use the dropdown menu to select your Operating System, click Next. A list will populate with drivers/software.
    ******Clicking the Thumbs-Up button is a way to say -Thanks!.******
    **Click Accept as Solution on a Reply that solves your issue to help others**

  • How to install a JDBC driver?

    Hello, everybody!
    I'm new to Java and I'm trying to install a JDBC driver. So, I downloaded the JayBird,
    a JDBC driver for Firebird, and now I don't know how to install the driver. I keep
    getting this message from the compiler when I try to compile the example that comes
    with the driver:
    DriverExample.java:182: package org.firebirdsql.jdbc does not exist
    d = new org.firebirdsql.jdbc.FBDriver ();
    ^
    1 error
    So, in the directory that has the example file (DriverExample.java) I created the
    following directory structure:
    C:\Example\org\firebirdsql\jdbc
    and inside the jdbc directory I copied the driver files:
    firebirdsql.jar
    mini-concurrent.jar
    jaas.jar
    mini-j2ee.jar
    log4j-core.jar
    and I still keep getting the error from the compiler. I just would like to
    know what I have to do to install this driver correctly for the compiler to
    find its packages.
    Below are the instructions the comes with the help to install JayBird, but I
    think that I did everything and it still didn't work:
    ======================================================================
    The classes from firebirdsql.jar must be in the classpath of the Java
    application being compiled, or otherwise made available to your application.
    The classes from the following packages must also be available:
    mini-concurrent.jar
    jaas.jar (included in jdk 1.4)
    mini-j2ee.jar (now including JDBC classes)
    log4j-core.jar (if you want logging available)
    The firebirdsql-full.jar file has all of the needed files in one
    archive for ease of use.
    These archives are included in the binary package.
    ======================================================================
    Please can someone help me?
    Thank you...
    Marcos

    My file (DriverExample.java) is in the directory 'Example' and the driver files are in the directory 'Example\org\firebirdsql\jdbc'
    That's what I did inside the directory 'Example'
    javac -classpath org/firebirdsql/jdbc/firebirdsql.jar DriverExample.java
    And that compiled ok.
    Now how can I specify where the driver files are for the java.exe? Of course I tried:
    java DriverExample
    and it didn't work.

  • How to install USB flash drive in windows 7

    Could anyone please help to install USB flash drive to Windows 7. This will enable me to hook up keyboard and mouse to my laptop. Thank you so very much for any assistance.   

    Hi,
    Could you please help us to know what is your computer, Please use the following instructions for find out the model/product of your machine:
      http://h10025.www1.hp.com/ewfrf/wc/document?lc=en&​cc=us&docname=c00033108
    Regards.
    BH
    **Click the KUDOS thumb up on the left to say 'Thanks'**
    Make it easier for other people to find solutions by marking a Reply 'Accept as Solution' if it solves your problem.

  • How to install 32-bit driver as Additional Driver on Win 7 x64

    I have an x64 Win 7 machine with an HP4315 attached via USB. I have a few XP machines that need to access the printer on the X64 machine.
    When I "Add printer" and reference the share name on the x64 machine, it attempts to download a driver, which fails giving me an "access denied" error.  This happens even when I had installed the drivers onto the x32 machine as if the printer were locally attached.
    Ive seen a workaround that may solve the immediate problem here http://h30434.www3.hp.com/t5/Printer-Networking-and-Wireless/Unable-to-install-XP-drivers-for-Deskje...
    I will try this, but its not the right long term solution as these XP machines will be replaced by Win 7 x32 machines and I may not be around to laboriously apply the workaround again.
    Windows 7 x64 provides for this.  I right click the printer on the x64 machine, then  "printer properties" (not "properties"), Sharing and I then get the option to install an x86 driver solely for downloading to x32(x86) machines which want to access the printer. It asks for the location of a folder containing the .inf file for this printer.
    Great!  But where on earth do I find a folder that contains the 32-bit .inf file associated with the HP4315 printer? 
    I've downloaded the setup file from HP and executed it on the x32 machine running XP, thinking I'd copy the relevant files  and offer them to the x64 machine. But where are the files? What is the .inf file called? Are there any other files needed? 
    Ive seen a lot of people struggling with this and no solutions other than the workaround mentioned above.  It would be great if a "proper" method could be described.

    Hello colinobj,
    I have looked at the link that you have provided that gives the steps to resolve the installation issue. 
    Just so you are aware, this is the solution to the issue at hand.  Seeing that XP is on its way of being not supported, this is the best solution that Bob_Headrick has provided.
    Thank you.
    Click the “Kudos Thumbs Up" at the bottom of this post to say “Thanks” for helping!
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    W a t e r b o y 71
    I work on behalf of HP

Maybe you are looking for