Extension php_oci8_11g.dll is not working in xampp linux

Hello everyone
i installed xampp from following link
http://www.apachefriends.org/en/xampp-linux.html
and its work fine.when i enable extension php_oci8_11g.dll from php.ini my php code is downloading when i am trying to execute.
what is the problem.can any one help me.
thank you.

What exactly did you do? Php_oci8_11g.dll is for Windows but xampp-linux.html is for Linux.
Try installing Oracle Instant Client 10.2 from http://www.oracle.com/technetwork/topics/linuxsoft-082809.html
Then follow: http://www.apachefriends.org/en/faq-xampp-linux.html#oci8
You might find this free book useful: http://www.oracle.com/technetwork/topics/php/underground-php-oracle-manual-098250.html
There is a dedicated Oracle PHP forum at http://www.oracle.com/technetwork/forums/php/index.html

Similar Messages

  • As soon as i downloaded firefox, this "mozctl.dll" is not working. What do i do?

    I downloaded firefox 3.6 and tried to run another program. My computer said "mozctl.dll was not working. What do i do?
    == This happened ==
    Not sure how often
    == I downloaded firefox 3.6

    Does this help http://www.dllnotfound.net/mozctl.dll.html

  • Dll soes not work after restart teststand

    Hi NI Team,
    I have an issue whereby i am using a 3rd part dll to program a device. At 1st it is able to program correctly using the designated dll. But after i've restart the teststand, it still able to point to the dll, but seems like the dll is not working as it should be. In order to make it work again, I need to change the dll path to another location in order to make it work.
    I've attached the following
    Sequence.jpg
    - Shows the module configuration
    return_result.jpg
    - Shows the return result of a weird return as the suppose return result suppose to be "1" or "0"
    Please do advice. Thanks
    Attachments:
    Sequence.JPG ‏190 KB
    return_result.JPG ‏21 KB

    Hi There - Thanks for the reply,
    The problem i am facing is the dll that i am using does not work as it should after restart teststand, unless i change the path or point the dll to another new path. The error that i am getting is, the return result shows that it can't open the file path that that has been defined in the dll call path name parameter. The weird thing is, the dll able to work (able to point to the right image again ) after i point the dll to another path, meaning if i create a new folder then dump in the same dll inside the folder and point the dll to new folder it able to work. But i will see the same problem again after i restart teststand. In terms of unloading the dll, i have tried the run options to unload module either after step end or sequence end. But the problem still exists.....

  • Ralink RA3290 does not work on Oracle Linux

    I have just bought a new HP Pavilion G6-2213so which seems to have a ralink rt3290 wifi chipset
    (Just so you know I'm not very experienced with linux when it comes to install new drivers etc)
    I have installed:
    Red Hat Enterprise Linux Server release 6.3 (Santiago)
    Linux hp-v074617 2.6.39-300.17.2.el6uek.x86_64
    I have downloaded a driver from mediatek, unzipped it and
    ran
    make
    make install
    modprobe rt3290sta
    When I run i got
    lsmod|grep rt3290
    rt3290sta 1255193 0
    iwconfig
    lo no wireless extensions.
    ra0 Ralink STA
    Link Quality:0 Signal level:0 Noise level:0
    Rx invalid nwid:0 invalid crypt:0 invalid misc:0
    eth0 no wireless extensions.
    rfkill list all
    0: hp-wifi: Wireless LAN
    Soft blocked: no
    Hard blocked: no
    1: hp-bluetooth: Bluetooth
    Soft blocked: yes
    Hard blocked: no
    dmesg|grep rt3290
    rt3290sta: module license 'unspecified' taints kernel.
    (Related to GPL I think but not sure if it has an impact)
    To me it seemes that the system are aware of my wifi card but still I can not get any wifi connection
    Apprecate if someone can tell me if I missed something or what other steps I need to do to make it work
    Best regards
    Magnus

    Support and demand for Wifi on a Linux enterprise server system (RHEL based) is generally limited and usually a desktop system requirement, for which other more suitable Linux distributions exist.
    You need to be 100 % about the model of your Wifi adapter.
    What is the output of lspci -v related to your Wifi adpater?
    Does the driver you download support the Oracle UEK2 kernel (2.6.39)?
    You could try your installation starting the system from the original RHEL kernel at the Grub menu to see if it makes any difference. If HP support nor the OS installation provides a driver for your hardware, check http://elrepo.org/tiki/tiki-index.php which focuses on hardware related packages to enhance Enterprise Linux.

  • Logging not working in RH Linux (ALUI portal 6.1MP1)

    Hi,
    we've installed the ALUI portal 6.1MP1 on a RedHat Enterprise Linux 4, and the logging does not seem to be working - PTSpy does not show anything.
    We've also installed the same portal version on a couple of Windows machines - there the logging works fine.
    Any ideas on where to look for possible causes?

    fwiw, I recently installed ALUI 6.1 MP1 on RHEL 4 Update 3 and was able to have both the Spy Logger and the consolelogger working locally on the RHEL console (running GNOME).
    I then tried to access the RHEL virtual machine from my host Windows OS where I access things via Cygwin (startx) and Putty (SSH). Spy Logger still does not work (because of the SWT issues I mentioned earlier) but consolelogger works fine.
    If you are still having issues I'd encourage you to open a case with tech Support.
    john

  • SetForeground in Applet does not work (Netbeans under Linux)

    I'm attempting to make a Breakout version of java (if I go through with it) and the first issue that I encountered is that I can't change the color of the moving rectangle (you know, the thing you hit the ball with). I tried the code under Textpad on a Windows machine and that worked fine, but not under Netbeans in Linux using jdk 1.6.0_01.
    import java.awt.*;
    import java.applet.*;
    import java.awt.event.*;
    public class Breakout extends Applet implements MouseListener, MouseMotionListener{
         int mouse_x, mouse_y;
         Thread t;
         public void init(){
              addMouseListener(this);
              addMouseMotionListener(this);
         public void start(){
              t= new Thread();
              t.start();
         public void run(){}
         public void mouseClicked(MouseEvent me){ }
         public void mouseEntered(MouseEvent me){ }
         public void mouseExited(MouseEvent me){ }
         public void mousePressed(MouseEvent me){ }
         public void mouseReleased(MouseEvent me){ }
         public void mouseDragged(MouseEvent me){ }
         public void mouseMoved(MouseEvent me){
              mouse_x = me.getX();
              if(mouse_x>=400)
                   mouse_x=400;
              repaint();
         public void stop() {}
         public void destroy(){ }
         public void paint(Graphics g){
              setBackground(Color.black);
              setForeground(Color.white); //doesn't work              
              g.drawRoundRect(mouse_x, 600, 50, 20, 20, 20);
    }I'm wondering if it's because the Applet under Linux uses the Native l&f theme while appets under Windows uses the Windows l&f theme.
    Any thoughts would be helpful!

    setForeground(Color.white); //doesn't work
    g.drawRoundRect(mouse_x, 600, 50, 20, 20, 20);Change this to:
    g.setColor(Color.WHITE);
    g.drawRoundRect(mouse_x, 600, 50, 20, 20, 20);You can move the background setting into method init(), calling it once is enough.
    I'm wondering if it's because the Applet under Linux
    uses the Native l&f theme while appets under Windows
    uses the Windows l&f theme.You use java.awt.Applet, so you use AWT which means there's no L&F theme (as in Swing) but it's native components being responsible.

  • Extension Mob Logout Timers not working after 4.2 Upgrade!!

    Got a customer who's Extension Mobility Logout timers have stopped working since upgrading to CCM4.2 sr1b This worked before and now their phones show as Logout Time Not Set even though the settings are set to True, 13:00, 3, AutoLogout, True and True within Ext Mob Sys Parameters.

    it is working on CCM Version 4.2(2.100). Try Bug - CSCse79942

  • Function HypSetSheetOption of the lib HsAddin.dll is not working good

    Hi all,
    i have a problem with a macro excel that uses the library HsAddin.dll.
    First of all, the macro excel runs on Microsoft Office 2003; the version of smart view installed is 9.3.1.1.2.004 and the server has Microsoft Windows Server 2003, with Service Pack 2.
    In my macro i have put a variable like this: varOpzione = HypSetSheetOption(R_NOME_FOGLIO, 16, 1). The macro takes a list of excel worksheets, refreshes those and then overwrite the refreshed sheets. With that variable initialized in that way, POV's members are displayed with member names and aliases. This is a problem for the users that work on the refreshed sheets, because, after the refresh they are not able to work on the sheets and refresh those again manually.
    I have read this page: http://www.tcclab.com/Fresh%20Upload/Hyperion/SmartView/Docs/help/frameset.htm?/Fresh%20Upload/Hyperion/SmartView/Docs/help/hsv_help-13-50.htm#546380
    in which is written that in order to display only member names i have to set parameter 0 instead of 1. I have done it, but in this way, macro does not retrieve any sheet. The error i got for every sheet is 'error during the retrieve'. I can't understand why this is happening.
    Is there someone that could help me solving this issue?
    Thank you in advance for your help.
    Anna

    The JDeveloper probably has a differnet vesion of the XDK - we have to be careful of the uptake of new versions to make sure we don't have any regressions.
    <?xslt:maximum?> in the RTF becomes
    <xsl:value-of select="xdoxslt:minimum(.//Measures.Dollars)" xdofo:field-name="xdoxslt:minimum(Measures.Dollars)" />
    with:
    <xsl:stylesheet version="2.0" xmlns:xdoxslt="http://www.oracle.com/XSL/Transform/java/oracle.xdo.template.rtf.XSLTFunctions">
    Of course that works ONLY in xml publisher. I also would strongly recommend that you try the RTF templates.
    Klaus
    Edited by: KlausFabian on Mar 17, 2010 1:08 PM - correct typo

  • C DLL does not working in LabVIEW-20​11, but works good in LabVIEW-20​09

    The C-Language dll which I have for an instrument is working good in LV2009 without any errors, but in 2011 it throws 1097 Error code.  In this link, it is mentioned that calling convention in "Call Library Node" is changed since LV2010 which I guess could be the reason for the error.  But trgically I need to develop my code in LV2011.  Does anyone have an workaround to make the dll work in LV2011?
    Thanks,
    Ajay. 
    Solved!
    Go to Solution.

    And the particular issue at hand is, that stdcall functions CAN have but DON'T have to have a particular naming decoration in their exported name (a @<number> appended to the name, and LabVIEW doesn't show this decoration in the drop down box). Before LabVIEW 2010 the Call Library Node automagically corrected a configured C calling configuration to stdcall if it recognized that decoration. They removed that in 2010 because it is possible, and most probably happened in the wild, for a C function to be explicitedly named with this pattern but get exported as C calling convention. With this automatic and hidden correction, LabVIEW is totally unable to call such a function.
    The not so nice thing about this would be IMHO that this automagic correction happened sneakily in the background without even being visible at all (the option in the Call Library Node stayed C calling convention, despite that LabVIEW really decided to use stdcall). And it got made even worse by the fact that 2010 removed this sneaky correction but did not add any mutation code to correct for that, when updating a VI from a previous LabVIEW version. That all said the evil has been done and can't be reversed now. Everybody just has to live with it.
    Rolf Kalbermatter
    CIT Engineering Netherlands
    a division of Test & Measurement Solutions

  • [Solved] Gnome extension "Hide Top Bar" not working.

    I copied the directory found in the zip file I got from the github into /usr/share/gnome-shell/extensions and ran gnome-shell-extensions-prefs. The extension shows in the menu, but when I select it I get the error message:
    Error: Schema org.gnome.shell.extensions.hidetopbar could not be found for extension [email protected]. Please check your installation.
    Stack trace:
    getSettings@/home/briggs5/.local/share/gnome-shell/extensions/[email protected]/convenience.js:89
    init@/home/briggs5/.local/share/gnome-shell/extensions/[email protected]/prefs.js:14
    Application<._getExtensionPrefsModule@resource:///org/gnome/shell/extensionPrefs/main.js:87
    wrapper@resource:///org/gnome/gjs/modules/lang.js:169
    Application<._selectExtension@resource:///org/gnome/shell/extensionPrefs/main.js:101
    wrapper@resource:///org/gnome/gjs/modules/lang.js:169
    Application<._extensionSelected@resource:///org/gnome/shell/extensionPrefs/main.js:121
    wrapper@resource:///org/gnome/gjs/modules/lang.js:169
    main@resource:///org/gnome/shell/extensionPrefs/main.js:278
    @<main>:1
    I checked two things at this point. First, that "org.gnome.shell.extensions.hidetopbar" is indeed present (which it is), and second that my version of Gnome is supported. I have Gnome 3.12, and according to "metadata.json" 3.12 is supported.
    [edit] Like an blind idiot I failed to see that README file which says:
    Installation:
    Compile the gsettings schema by running
    mkdir ./schemas/
    glib-compile-schemas --strict --targetdir=./schemas/ .
    Install this in your extensions directory:
    ~/.local/share/gnome-shell/extensions/
    Example:
    cd ~/.local/share/gnome-shell/extensions/
    git clone https://github.com/mlutfy/hidetopbar.git [email protected]
    cd [email protected]
    mkdir ./schemas/
    glib-compile-schemas --strict --targetdir=./schemas/ .
    gnome-shell-extension-tool -e [email protected]
    However when I followed the istructions I end up with the error
    $ glib-compile-schemas --strict --targetdir=./schemas/
    You should give exactly one directory name
    [edit2] I failed to notice the "." at the end of the "glib-..." line.
    ITs working now. Sorry for wasting Forum space.
    Last edited by nstgc (2014-07-02 16:37:25)

    Last edited by TyrantUT (2014-11-10 22:27:56)

  • Dlls are not working for me in Report server

    Hi,
    I am using SSRS 2008 and deployed some reports to the report server. For localization purpose we are having some Dlls which need to be registered in the report server. I am using some methods from the dll.
    Can someone please suggest how I can register these dlls to work in the report server for 2008, R2 and 2012.
    Thanks,
    sarat chandra sahoo

    Hi sarat,
    Per my understanding that you have issue when you registered an dll and use the method from it, right?
    Generally, You can follow steps below to make the custom assemblies works fine:
    Create a custom assembly
    Copy the custom assembly to the SQL Reporting Services folders
    Adding a reference to the custom assembly in Reporting Services
    Code access security if the custom assembly requires additional permissions
    Details information about the above steps below for your reference:
    How to use custom assemblies or embedded
    Some similar related:
    http://www.codeproject.com/Articles/294636/Localizing-SQL-Server-Reporting-Services-Reports
    http://stackoverflow.com/questions/19938268/using-external-assemblys-methods-results-as-a-dataset
    http://www.codeproject.com/Articles/30555/Adding-Custom-Assemblies-in-SQL-Server-Reporting-S
    If you still have any problem, please feel free to ask.
    Regards,
    Vicky Liu
    Vicky Liu
    TechNet Community Support

  • CHM-File: Glossary is not showing HHActiveX.dll does not work

    Hi guys,
    I'm sorry, I know the problem's been diskussed a lot. But I still have the problem, that after generating my CHM-File the glossary tab is empty. I already tried registering various HHActiveX.dlls i found in robohelps installation directory.
    I tried registering them by using %windir%\system32\cmd.exe and %windir%\syswow64\cmd.exe.
    The dlls I tried to register are:
    C:\Program Files (x86)\Adobe\Adobe RoboHelp 9\RoboHTML\HHActiveX.dll
    C:\Program Files (x86)\Adobe\Adobe RoboHelp 9\Redist\HHActiveX.dll
    C:\Program Files (x86)\Adobe\Adobe RoboHelp 9\Redist\x64\HHActiveX.dll
    I tried to register them all together and i tried to register only one at a time.
    The funny thing is, after generating and opening the file directly out of robohelp, the glossary showed up once. After closing and opening the same file, the glossary was again empty.
    I am using RoboHelp 9 on Windows 8.1. 64-bit.
    Is there a chance to get that CHM-File to work?
    Thank's in advance.

    Thank you for your answer.
    Sorry, I forgot to mention, when I was registering the dlls by using cmd.exe in the system32 directory and the syswow64 directory, I was typing "regsvr32 C:\Windows\System32\HHActiveX.dll"
    Also I have been using the cmd.exes that are located in system32 and syswow64, each time using the "regsvr32 <path><dll-name>"-command. The cmd.exes where executed with administator's rights. Isn't that the same procedure mentioned in your link?
    I was trying to have both the 32-bit-dll and the 64-bit-dll version registered at the same time and lateron for troubleshooting just one of them at a time. (now that I come to think of it, is it even possible to register two versions of the same dll at a time?)
    I'm starting to get really confused.
    Which Version of the DLL do I need to register by using which of the cmd.exes/regsvr32-versions?
    C:\Program Files (x86)\Adobe\Adobe RoboHelp 9\RoboHTML\HHActiveX.dll > in system32\cmd.exe oder syswow64\cmd.exe?
    C:\Program Files (x86)\Adobe\Adobe RoboHelp 9\Redist\HHActiveX.dll > in system32\cmd.exe oder syswow64\cmd.exe?
    C:\Program Files (x86)\Adobe\Adobe RoboHelp 9\Redist\x64\HHActiveX.dll > in system32\cmd.exe oder syswow64\cmd.exe?
    And does the dll have to be in the directory of the regsvr32.exe while registering? Does it take a reboot for the effect to show?

  • I can't find purchase add-ons file in my computer so I can't import it to Lr. I try using Adobe Extension but it still not working.

    it shows in creative cloud that it has been installed but I can't find the file in download folder or anywhere else. What should I do to install this in my Lr.
    I try Adobe Extension but didn't work too.

    We have identified a lag in obtaining products on Windows machines whereby a reboot is necessary to kick-start the product installation. We are investigating this. For Lightroom products, it is best to use only the CC Desktop App - available from http://creative.adobe.com/products/creative-cloud, rather than Extension Manager.

  • Extension installed but does not work

    Helo.
    I am creating a custom component, i created a mxp file and install using Extension Manager. After install de mxp, i open the Flash and the Component is not show on the Component Panel.
    Searching in the web, i found same problems, and i found to saing that this problem was because the language used. I am from Brazil and the Flash is installed as a English version, but the component is installed in the folder pt and not en.
    Again, searching i found a possibilit to create a mxp for multilanguage. I modify my mxi file, install and again, the component is not show in the Component Panel and its instaled in the pt folder.
    The mxi file its this:
    <macromedia-extension
      name="MyComponent"
      version="1.0.0"
      mxiversion="2.0"
      type="flashcomponent"
      icon="icon.png"
      ismultilingual="true"
      requires-restart="true">
    <defaultLanguage>en_US</defaultLanguage>
    <author name="My name" />
    <products>
      <product name="Flash" version="9" primary="true" />
    </products>
    <description>
    <![CDATA[
    MyComponent
    ]]>
    </description>
    <ui-access>
    <![CDATA[
    MyComponent
    ]]>
    </ui-access>
    <license-agreement>
    <![CDATA[
    ]]>
    </license-agreement>
    <files>
      <file source="MyComponent.swc" destination="$flash\Components\FlashLightBox\" />
    </files>
    </macromedia-extension>
    There is something wrong with this mxi? There is some chances do fix this? Another problem, i set a custon icon for this mxp, its a png file of 18x18px. When i install the extension, in the Extension Manager don't show that icon, but show a icon like a image not found. I have to do another thing?
    Thanks!

    Snapback is there as a dropdown menu option
    Click "History" in the Safari menu bar and then  select "Search Results Snapback" from the dropdown.
    Best.

  • Zenautil.dll (TID not working)

    I found a TID (10076950) on where the system path to C:\Program
    Files\Novell\ZENworks would have been deleted when receiving this error :
    Unable to load zenautil.dll
    Well that variable is in the user's path, and this is putting a crank in my
    remote mgmt. Only change, installed the patch mgmt update agent on it. Any
    ideas?
    Running NW 6.5 sp2, with ZfD4 IR5 on Windows XP pro.
    Thanks in advance,
    Jeremy

    > If you can start "wmsched" from the Start -> Run option the path
    > variable works.
    > If you reinstall the zen agent, does that work ?
    Actually, the path was there, and now she doesn't have that problem. I'll
    try your input in future cases. Thanks a lot!
    Jeremy

Maybe you are looking for

  • Changing Apple ID

    Yesterday I deleted the e-mail account associated with my Apple ID. I have still been able to sign into iTunes, however, I would obviously like to change my Apple ID to a current, recently acquired e-mail. When I go into the site to change the ID to

  • IMovie quit unexpectedly while importing videos. What is the solution?

    I searched through the Discussions and found that there were a lot of frustration among the users who had the same problem of iMovie quitting unexpectedly. However I did not find a solution in the discussion threads. For my case, it happened when iMo

  • Business Rule in BPC 5.1

    Dear all, I got 2 questions regarding business rule: 1. There are 2 types of business rule. Script-based = You write your own script ( MdX or SQL logic)? Table-based = The table is more like a parameter table. You configure the parameters in the busi

  • Debug RMI - Service with Sun One Studio

    Hi, I'm trying to debug an rmi - service with sun one studio 4u1 (win nt 4.0). To do so I start the rmid daemon via rmid -J-Xdebug -J-Xnoagent -J-Djava.compiler=NONE -J-Xrunjdwp:transport=dt_shmem,server=y,address=dime,suspend=n -J-Djava.security.pol

  • J2EE Web services and JAX-RPC

    Hello.. While working with J2EE web services using JDeveloper and OC4J, I noticed that it really doesn't confirm to Sun's JAX-RPC standard. The Web Service interface class does not extend the "Remote" and all methods don't throw "RemoteException" as