Loading extentions on windows

Ask a Question related to PHP Development, Design and Development.

  1. #1

    Default Loading extentions on windows

    In my ini file I have;

    ; Directory in which the loadable extensions (modules) reside.
    extension_dir = "c:\PHP\extensions"

    extension=php_gd2.dll
    extension=php_tidy.dll
    extension=php_pdf.dll
    extension=php_domxml.dll
    extension=php_xslt.dll

    Now the funny thing is PHP loads the first three but is complaining that it
    can't find the last two?

    The errors I get :
    Unknown(): Unable to load dynamic library
    'c:\PHP\extentions\php_domxml.dll' - kan opgegeven module niet vinden(=can't
    find module)
    Unknown(): Unable to load dynamic library 'c:\PHP\extentions\php_xslt.dll' -
    kan opgegeven module niet vinden(=can't find module)
    (ignore typos in these two lines....;-) )


    And yes they all resides in the c:\PHP\extensions folder...
    I downloaded all files today so they are the last versions available

    I am running Apache 2.1, PHP 4.3.8 on window xp home.

    I like to use the domxml and xslt on my windows box. How can I get this to
    work?
    Why can't PHP find these modules but it can find the others?

    I hope somebody can help me,
    Thanks in advance

    Rob



    Rob Guest

  2. Similar Questions and Discussions

    1. Sell my extentions?
      http://www.adobe.com/exchange/help/upload_help.html Would I just follow that? Or do I need to do something else? Thanks! :)
    2. Extentions error in CS3
      After installing DreamWeaver cs3 I installed the DreamWeaver Toolbox. While installing the Toolbox I kept getting this window pop up, a normal...
    3. DW8 Extentions!
      :disgust;Hi,everybody! First Thanks for Macromedia supplying so best forum for us ,so we can learn many ! Today I have a problem Puzzling me long...
    4. Problem loading PS-6 into Windows XP
      I've tried several times to load my Photoshop 6.0 program into a new computer with Windows XP. When I click on some of the tools such as the paint...
    5. .gz file extentions
      AFAIK the inbuilt utility only does zip files (though it can do self extracting zips if you rename it from exe to zip). XP also has a second program...
  3. #2

    Default Re: Loading extentions on windows


    "Rob" <reply_@news_group.please> schreef in bericht
    news:weh0d.30553$Ew5.26618@amsnews03.chello.com...
    > In my ini file I have;
    >
    > ; Directory in which the loadable extensions (modules) reside.
    > extension_dir = "c:\PHP\extensions"
    >
    > extension=php_gd2.dll
    > extension=php_tidy.dll
    > extension=php_pdf.dll
    > extension=php_domxml.dll
    > extension=php_xslt.dll
    >
    > Now the funny thing is PHP loads the first three but is complaining that
    it
    > can't find the last two?
    >
    > The errors I get :
    > Unknown(): Unable to load dynamic library
    > 'c:\PHP\extentions\php_domxml.dll' - kan opgegeven module niet
    vinden(=can't
    > find module)
    > Unknown(): Unable to load dynamic library
    'c:\PHP\extentions\php_xslt.dll' -
    > kan opgegeven module niet vinden(=can't find module)
    > (ignore typos in these two lines....;-) )
    >
    >
    > And yes they all resides in the c:\PHP\extensions folder...
    > I downloaded all files today so they are the last versions available
    >
    > I am running Apache 2.1, PHP 4.3.8 on window xp home.
    >
    > I like to use the domxml and xslt on my windows box. How can I get this to
    > work?
    > Why can't PHP find these modules but it can find the others?
    >
    > I hope somebody can help me,
    > Thanks in advance
    >
    > Rob
    >
    >
    >
    I found the solution in the bug reports of PHP
    ([url]http://bugs.php.net/bug.php?id=21245[/url])

    It turns out that all the files in the dll's folder of the distribution
    package must be copied into the windows/system32 folder. and the error goes
    away...


    Rob


    Rob Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139