Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. solaris5

    What is PHP libtool --finish php_src/libs doing?

    I'm trying to figure out what the libtool is doing in php. After running 'make install' it shows that the modules were properly copied over to apache's libexec folder like I would expect. The part I don't fully understand is it tells me to run `libtool --finish /home/solaris5/php-5.2.3/libs'...
  2. solaris5

    Drop down menu hiding underneath marquee

    Sorry, I replied to the wrong thread. But While I'm here I can add some insight to a similar situation. Browser rendered controls such as text boxes alway stay on top of divs despite the z-index. I have gotten around this by dynamically creating an iframe with the percise dimensions of my drop...
  3. solaris5

    Removing space between header and navigation bar

    Actually, I ran into this issue when I started converting my HTML pages to XHTML pages (Which you are using). This issue is due to the way the <img> tag is rendered in XHTML vrs HTML which most people learned how to mark up. With HTML images tags block by default. In XHTML they are inline by...
  4. solaris5

    Drop down menu hiding underneath marquee

    Actually, I ran into this issue when I started converting my HTML pages to XHTML pages (Which you are using). This issue is due to the way the <img> tag is rendered in XHTML vrs HTML which most people learned how to mark up. With HTML images tags block by default. In XHTML they are inline by...
  5. solaris5

    Rather unusual php problem, not sure what's wrong.

    I do think your trying to access an undefined index in two of your arrays. $statnCntChk = $row2["count(Stn_Seq)"]; $statnCnt = $row2["count(Stn_Seq)"]; I suspect you really want to do the following: $statnCntChk = $row2[count(Stn_Seq)]; $statnCnt = $row2[count(Stn_Seq)]; Fixing one piece at a...
  6. solaris5

    exec call for htpasswd on new host

    The first thing I would check is that your new host actually allows the use of that function. Create a file "phpinfo.php" with the contents: <?php phpinfo(); ?> Run it and look for the section that shows disabled functions. If exec is disabled your going to need to find another way. Also...
  7. solaris5

    Pathing between PHP and Apache2

    When in doubt check the apache error log. I can't tell you were that is at on Windows but on Unix it is typically /var/apache2/logs/error_log. So I would imagine wherever your htdocs folder is it there is also a folder in there called logs. I will also have to agree with everyone else that you...

Part and Inventory Search

Back
Top