Jump to content

Thomas_Bode

New Members
  • Posts

    4
  • Joined

  • Last visited

Everything posted by Thomas_Bode

  1. I just described a very trivial example of php codes that cause the condition. My production code is much more refined and rigorous. As I indicated previously, this code works on a windows system so I believe that it is something Linux version related. 72.241.40.98 - - [26/Sep/2024:03:07:36 +0000] "GET /index1.php HTTP/1.1" 200 7808 72.241.40.98 - - [26/Sep/2024:03:07:50 +0000] "POST /as1.php HTTP/1.1" 302 - 72.241.40.98 - - [26/Sep/2024:03:07:50 +0000] "GET /au1.php HTTP/1.1" 200 63 72.241.40.98 - - [26/Sep/2024:03:07:50 +0000] "GET /index1.php?message=4 HTTP/1.1" 200 8015 Linux, then Windows
  2. Having an issue with a form working on a Windows server but not on a Linux box. Session Variables initialized in one form do not appear to be available in another. Index1 submits input to as1.php. as1.php assigns input to session variables, then calls au1.php. au1.php detects any errors and sets an error message index and returns to index1.php. Index1.php displays error message and should contain the session variable values but they are empty. This works correctly on a Windows system, but not on the Linux box.
  3. Adding more what? This is an error msg i get: In read_production_data Array ( [0] => Array ( [0] => IMSSP [SQLSTATE] => IMSSP [1] => -16 => -16 [2] => An invalid PHP type for parameter 1 was specified. [message] => An invalid PHP type for parameter 1 was specified. ) )
  4. $myPMSource = "FANESTRA5"; $period = -8; $myDB = "dog"; $myCLSource = "cat"; $sql = "{CALL retrieveproductiondata(?,?)}"; $params = array(array($myPMSource, SQLSRV_PARAM_IN, $period, SQLSRV_PARAM_IN), array($myDB, SQLSRV_PARAM_INOUT, $myCLSource, SQLSRV_PARAM_INOUT)); $stmt = sqlsrv_query($aconn, $sql, $params); All of the web examples show and work with just one parameter of each. I have not been able to find the proper syntax for multiples.
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.