|
[PHP Header] Right-Click Download in Firefox showing php filename I followed some of the examples that was on PHP header() http://us3.php.net/manual/en/function.header.php I am trying to have users download a file named 'Setup.msi', however under a PHP file with the sent header information, the default name to the user will be 'ApplicationSetup_v1_0.msi' -- I am sending the re... 4 Aug 2008 23:54
php.ini and pgsql extension issue Hi, i found and solved an interesting issue under PHP 5.2.6. when i use the standard installation file under windows XP (php-5.2.6-win32-installer.msi), i get several error message in apache error.log file, something like : PHP Warning: PHP Startup: Unable to load dynamic library 'D:\\webserver\\PHP\\ext\\ph... 7 Aug 2008 09:21
dynamic extension Hi, i do not see anymore the dynamic extension part in php.ini file, under PHP 5.2.6. is it normal ? thx -- Alain ------------------------------------ Windows XP SP2 PostgreSQL 8.2.4 / MS SQL server 2005 Apache 2.2.4 PHP 5.2.4 C# 2005-2008 ... 3 Aug 2008 07:56
PHP page completly blank Hi, i reinstalled on my computer (Win XP) PHP 5.2.4 (but the same happens with 5.2.6). when i run an index.php page or any other php page which works well before, now i get a blank page result on my browser without any error message. even if only HTML code is inside the PHP page nothing is displayed. it's enoug... 3 Aug 2008 11:00
PHP 5 auto-htmlentitizing strings? I just switched over an app from PHP 4 to PHP 5, and one of the weird things I'm noticing initially is that some of the html output seems to be html entitized. For example, a link that was showing up in html output as: "<a href="http://metaphilm.com/philm.php?id=29_0_2_0">Is Tyler Durden Hobbes?</a>" now get... 2 Aug 2008 21:45
PHP Memory Management I've been running the script below: <?php $appIds = getLotsOfAppIds(); foreach ($appIds as $appId) { echo "$appId\n"; //echo memory_get_usage() . "\n"; try { $getBundles = getBundles($appId); $numBundles = count($registeredBundles); echo $numBundles . "\n"; continue; ... 4 Aug 2008 17:45
Referencing files in cron jobs versus format when runningfrom URL ioannes wrote: I have a file that works from the URL like: www.mysite.com/cronjob.php and this file includes references to uploaded files like this: /home/mysite/public_html/dir/subdir/filename.xml and this is used in functions like filemtime(). The uploaded files are found on the se... 2 Aug 2008 12:32
Returning response includes HTML form data I have a PHP file which does an: echo "someresponse" to return some data. When I run it from a Windows client program, the response I am seeing is not only the "someresponse" above but also has the entire HTML form in the PHP file appended to it. Naturally I do not want the form to be included in the respo... 2 Aug 2008 19:42
E-Shop system Hi, i'm currently analyzing an e-shop system. i understand how to display products and so on, however i still have some question marks on the following topics: 1. what is the best way for showing product image ? - to store them in DB or onto filesystem as simple image files ? - each product should have 2 imag... 4 Aug 2008 13:38
Referencing files in cron jobs versus format when running from URL I have a file that works from the URL like: www.mysite.com/cronjob.php and this file includes references to uploaded files like this: /home/mysite/public_html/dir/subdir/filename.xml and this is used in functions like filemtime(). The uploaded files are found on the server using the above path in the cod... 2 Aug 2008 09:28 |