php-install Digest 14 May 2001 16:22:24 -0000 Issue 308

Topics (messages 3146 through 3153):

error on compilation
        3146 by: seckt0r

PHP and Javascript Programming Problem
        3147 by: perrin_lee.hongkong.com

Error on php4.05-installer.exe (Windows Installer)
        3148 by: Jack
        3150 by: Phil Driscoll

Error on Windows Installer
        3149 by: Jack

php4 SAP & mssql
        3151 by: Dimitri

PHP 4.05 & gd on windows
        3152 by: james

Apache won't start after PHP install
        3153 by: Rob James

Administrivia:

To subscribe to the digest, e-mail:
        [EMAIL PROTECTED]

To unsubscribe from the digest, e-mail:
        [EMAIL PROTECTED]

To post to the list, e-mail:
        [EMAIL PROTECTED]


----------------------------------------------------------------------


I can configure php-4.0.5 normaly with this: 

./configure --with-mysql=/usr/local/mysql 
--with-apxs=/usr/local/apache/bin/apxs --enable-track-vars

but when run make it gives me this error:

sapi_apache.c: In function `apache_php_module_main':
sapi_apache.c:80: `NOT_FOUND' undeclared (first use in this function)
sapi_apache.c:80: (Each undeclared identifier is reported only once
sapi_apache.c:80: for each function it appears in.)
make[3]: *** [sapi_apache.lo] Error 1
make[3]: Leaving directory `/usr/local/php-4.0.5/sapi/apache'
make[2]: *** [all-recursive] Error 1
make[2]: Leaving directory `/usr/local/php-4.0.5/sapi/apache'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/usr/local/php-4.0.5/sapi'
make: *** [all-recursive] Error 1

any help, i apreciate

      ==> seckt0r




Hi everybody,

Do you have some experience on PHP and Javascript Programming ? There are some problem 
for me.  Actually, I through Javascript program to get user input, and then pass to 
PHP program for examine the input data.

When I run the program and select the computer only after submit the form, but the 
result  are $user_select[0] = computer,
$user_select[1] = mouse, $user_select[2] = keyboard and $user_select[3] = monitor. Why 
it should be $user_select[0]=
computer only ? Because I chosen the computer only ! Could you help me ?

Here is the program :
====================================================================
<?php
session_register("user_select = array()");
?>

<html>
<body>
<form  name=form1>
 <table>
  <td>
      <select name="select1" size="4" >
       <option value="computer">Computer
      <option value="mouse">Mouse
       <option value="keyboard">Keyboard
       <option value="monitor">Monitor
      </select>
   </td>
  <td>
      <select name="select2" size="4" >
       <option value="">You Selected
       <option value="">============
      </select>
   </td>
 </table>
  <input type="button" value="Selected" onClick="createOptions()">
  <input type="Submit" name="Submit1" value="submit"
onClick="ViewOptions()">
  <input type="reset" name="Submit2" value="Reset">
</form>
</body>
</html>

<script>
<!--
function createOptions(){

      sel1 = document.form1.select1;
      sel2 = document.form1.select2;
      var num    = sel1.selectedIndex;
      var option = new Option(sel1.options[num].text);
      var item   = sel2.options.length;

      sel2.options[item] = option;
}


function ViewOptions() {

          var item  = document.form1.select2.options.length;

          <? php $user_select = "" ?>

           for(var i=2 ; i<item ; i++)
             {
                var temp = document.form1.select2.options[i].text;
                switch(temp) {
                      case "computer":
                           <?php  $user_select[0] = "computer"; ?>
                      break;

                      case "mouse":
                           <?php  $user_select[1] = "mouse"; ?>
                      break;

                      case "keyboard":
                           <?php  $user_select[2] = "keyboard"; ?>
                      break;

                      case "monitor":
                           <?php  $user_select[3] = "monitor"; ?>
                      break;
                }
          }
}
//-->
</script>


----------------------------------------------
 歡迎使用HongKong.com郵件系統
 Thank you for using hongkong.com Email system





Dear all
I had downloaded the php4.05-installer.exe (Windows Installer) from php.net,
after i install the program, there is one error in event viewer:
"The HTTP Filter DLL c:\PHP\php4ts.dll failed to load. The data is the
error"
Did anyone had the same case as i did?

Thanks for your attention

Jack






On Monday 14 May 2001 09:23, Jack wrote:
> I had downloaded the php4.05-installer.exe (Windows Installer) from
> php.net, after i install the program, there is one error in event viewer:
> "The HTTP Filter DLL c:\PHP\php4ts.dll failed to load. The data is the
> error"
> Did anyone had the same case as i did?
I think you must be suffering from some manual configuration you did before 
or after using the installer - the error message you are getting is to do 
with IIS/PWS not being able to start up an ISAPI filter. The installer 
software doesn't go anywhere near ISAPI setup.

You need to remove php from the filters list, and I guess things will come 
good.

Cheers
-- 
Phil Driscoll




Dear all
I had download the Windows Installer from php.net. (php4.05-Installer.exe)
After i installed the program and restart the computer, i found out that
there is a error occur from the event log of windows!
"The HTTP filter DLL c:\PHP\php4ts.dll failed to load. The data is the
error"
Did anyone have the same case as i did?

Thanks for your attention

Jack






                    Hello
        Is it possible to compile PHP4 for both SAP  and mssql  support ? I
Have successfully compiled and connected to each one individually but when I
try to compile for both I get errors.
        My PHP apache and SAP is on Linux ,  mssql is on NT
        (e-mail  [EMAIL PROTECTED])
                Thanks
                    Dimitri










Hi,
i keep receiving a 'missing extension' error in relation to the gd library.
i've tried
changing the extension_dir directive to point to where i have the library
installed
but it still comes up saying theat the path doesn't exist !
fustration has now set in so if anyone can help, i would be very grateful.

james






I have RedHat 6.1, Linux 2.2.12-20, Apache 1.3.9, PHP 4.0.5, MySQL
3.23.37

When I start apache, I get the following error message

Starting httpd: Syntax error on line 132 of /etc/httpd/conf/httpd.conf:
Cannot load /etc/httpd/modules/libphp4.so into server:
/etc/httpd/modules/libphp4.so: undefined symbol: uncompress
[60G[FAILED]



Reply via email to