Not signed in (Sign In)


  MalayalamSearch.com
is a new malayalam language search engine.It enables searching the web in your regional language malayalam.
Download Malayalam Browser Now


Please Note : All information contained in this forums is public information collected from media sources and respective websites.We cannot guarantee the accuracy or authenticity of the information contained in those listings.We make our best efforts to monitor the activity and information uploaded to the forums.
  1.  
    I'm having problems configuring PHP to work with Apache. It says it can't find httpd.h, but it'
    Soln:
    You need to tell the configure/setup script the location of the top-level of your Apache source tree. This means that you want to specify --with-apache=/path/to/apache and not --with-apache=/path/to/apache/src.
  2.  
    When I try to start Apache, I get the following message:


    fatal: relocation error: file /path/to/libphp4.so:
    symbol ap_block_alarms: referenced symbol not found

    Soln:
    This error usually comes up when one compiles the Apache core program as a DSO library for shared usage. Try to reconfigure apache, making sure to use at least the following flags:


    --enable-shared=max --enable-rule=SHARED_CORE
  3.  
    When I run configure, it says that it can't find the include files or library for GD, gdbm, or some other package!

    Soln:
    You can make the configure script looks for header files and libraries in non-standard locations by specifying additional flags to pass to the C preprocessor and linker, such as:

    CPPFLAGS=-I/path/to/include LDFLAGS=-L/path/to/library ./configure
    If you're using a csh-variant for your login shell (why?), it would be:
    env CPPFLAGS=-I/path/to/include LDFLAGS=-L/path/to/library ./configure
    • CommentAuthorrakesh
    • CommentTimeSep 1st 2008
     
    plz help me on send email in php
  4.  
    <?php
    $to = "recipient@example.com";
    $subject = "Hi!";
    $body = "Hi,\n\nHow are you?";
    if (mail($to, $subject, $body)) {
    echo("<p>Message successfully sent!</p>");
    } else {
    echo("<p>Message delivery failed...</p>");
    }
    ?>
    • CommentAuthordeepthi
    • CommentTimeJan 16th 2009
     
    when i access Php Wamp server over internet local area network connection following error 403 Forbidden' you are not authorized message is showing in browser.I have used my ip address instead of localhost.Please help me
  5.  
    Go to C:\wamp\Apache2\conf\extra\ Open httpd-vhosts.conf Find <VirtualHost *:80> ....... </VirtualHost> line Replace all the previous code with the following.



    <VirtualHost *:80>
    DocumentRoot "C:\wamp\www\WebsiteName"
    ServerName your.ip.addres.s
    ServerAlias your.ip.addres.s
    <Directory "C:\wamp\www\WebsiteName">
    AllowOverride All
    Options Indexes FollowSymLinks
    Order allow,deny
    Allow from all
    </Directory>
    </VirtualHost>

    Next Go to C:\Windows\System32\drivers\etc

    Open up hosts file in notepad

    add following line

    127.0.0.1 your.ip.addres.s

    This will work....