Jump to content

zohaib

Members
  • Posts

    12
  • Joined

  • Last visited

    Never

Posts posted by zohaib

  1. Hi all,

     

    My environment details as below

     

    PHP Version 5.2.0

     

    System Windows NT IIS07101 5.2

     

    Server API CGI/FastCGI

     

    I am getting following error message on some pages .

     

    These pages working fine on xampp(php 5.2,Apache)

     

    "The specified CGI application misbehaved by not returning a complete set of HTTP headers."

     

    and sometimes

     

    "

    ERROR

    The requested URL could not be retrieved

    "

    any ideas?

     

  2.  

     

    Hi all,

     

    My environment details as below

     

    PHP Version 5.2.0

     

    System Windows NT IIS07101 5.2

     

    Server API CGI/FastCGI

     

    I am using Drupal 6.5

     

    I am getting following error message on some pages .

     

    These pages working fine on xampp(php 5.2,Apache)

     

    "The specified CGI application misbehaved by not returning a complete set of HTTP headers."

     

    and sometimes

     

    "

    ERROR

    The requested URL could not be retrieved

    "

    any ideas?

     

  3. Hi all,

     

    In my project i have folder name "my_project"

     

    I have placed my php.ini file in "my_project\php.ini"

     

    how can i call and load it

     

    by default it is calling default php.ini

     

    ini_set("Loaded Configuration File","E:\xampp\htdocs\my_project\php.ini");

    ini_set("upload_max_filesize","50M");

    phpinfo();

    echo 'display_errors = ' . ini_get('display_errors') . "\n";

    echo 'register_globals = ' . ini_get('register_globals') . "\n";

    echo 'post_max_size = ' . ini_get('upload_max_filesize') . "\n";

     

     

    or any other way to create custom php.ini file

     

    any other way from ini_set and .htacess file

     

    SetEnv PHPRC "E:/xampp/htdocs/my_project/php.ini"

    SetEnv PHPRC "E:/xampp/htdocs/my_project/"

    export PHPRC="E:/xampp/htdocs/my_project/"

     

     

  4. Hi all,

     

    In my project i have folder name "my_project"

     

    I have placed my php.ini file in "my_project\php.ini"

     

    how can i call and load it

     

    by default it is calling default php.ini

     

    ini_set("Loaded Configuration File","E:\xampp\htdocs\my_project\php.ini");

    ini_set("upload_max_filesize","50M");

    phpinfo();

    echo 'display_errors = ' . ini_get('display_errors') . "\n";

    echo 'register_globals = ' . ini_get('register_globals') . "\n";

    echo 'post_max_size = ' . ini_get('upload_max_filesize') . "\n";

     

     

    or any other way to create custom php.ini file

     

    any other way from ini_set and .htacess file

     

     

    i have gone through following link but not gettting

     

    http://www.php.net/manual/en/configuration.php#configuration.file

  5. Hi all,

     

    In my project i have folder name "my_project"

     

    I have placed my php.ini file in "my_project\php.ini"

     

    how can i call and load it

     

    by default it is calling default php.ini

     

    ini_set("Loaded Configuration File","E:\xampp\htdocs\my_project\php.ini");

    ini_set("upload_max_filesize","50M");

    phpinfo();

    echo 'display_errors = ' . ini_get('display_errors') . "\n";

    echo 'register_globals = ' . ini_get('register_globals') . "\n";

    echo 'post_max_size = ' . ini_get('upload_max_filesize') . "\n";

     

     

    or any other way to create custom php.ini file

     

    any other way from ini_set and .htacess file

  6. file1

    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=shift_jis">
    <title>Untitled Document</title>
    <script language="javascript">
    var xmlHttp
    
    function showCustomer(str)
    {
    xmlHttp=GetXmlHttpObject();
    if (xmlHttp==null)
      {
      alert ("Your browser does not support AJAX!");
      return;
      }
    
    var url="file2.php";
    url=url+"?q="+str;
    //url=url+"&sid="+Math.random();
    alert(url);
    
    
    xmlHttp.onreadystatechange=stateChanged;
    xmlHttp.open("GET",url,true);
    xmlHttp.send(null);
    }
    
    function stateChanged()
    {
    if (xmlHttp.readyState==4)
    {
    document.getElementById("txtHint").innerHTML=xmlHttp.responseText;
    
    //alert(document.getElementById("txtHint").innerHTML);
    
    }
    }
    
    function GetXmlHttpObject()
    {
    var xmlHttp=null;
    try
      {
      // Firefox, Opera 8.0+, Safari
      xmlHttp=new XMLHttpRequest();
      }
    catch (e)
      {
      // Internet Explorer
      try
        {
        xmlHttp=new ActiveXObject("Msxml2.XMLHTTP");
        }
      catch (e)
        {
        xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");
        }
      }
    return xmlHttp;
    }
    </script>
    
    </head>
    
    <body>
    
    
    <form action="" method="get" enctype="multipart/form-data" name="frmAjax" id="frmAjax">
    
    <table width="100" border="1">
      <tr>
        <td>Country</td>
        <td>
    <select name="country" id="country" onchange="showCustomer(this.value)">
     <option value="1">India</option>
     <option value="2">United States</option>
        </select>
    
    </td>
      </tr>
      <tr>
        <td>State</td>
        <td><p><div id="txtHint">
    <select name="state" id="state" style="width:110px; ">
    			 <option value="0">Select</option>
          </select>
    </div>
    </p></td>
      </tr>
    </table>
    
    </form>
    
    </body>
    </html>
    
    

     

    file2

    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=shift_jis">
    <title>Untitled Document</title>
    </head>
    <body>
    
    <form action="" method="post" enctype="multipart/form-data">
    <table width="100" border="1">
      <tr>
        <td>
    <select name="state" id="state">
    			 <?php if($_REQUEST['q']=="1") {  ?>
    			 <option  value="" >Maharasthra</option>
    			 <?php } ?>
    			 <?php if($_REQUEST['q']=="2") {  ?>
    			 <option  value="">California</option>
    			 <?php } ?>
          </select>
      </td>
      </tr>
    </table>
    </form>
    
    </body>
    </html>
    
    
    

×
×
  • 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.