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'...
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...
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...
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...
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...
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...
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...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.