Basic WWW Authentication function fails122 (8/30/2004 3:55:29 PM) comp.lang.php [PHP] /*-------------------------------------------------------------------------------------------- This function will utilize the ability to use HTTP-based WWW Authentication, checking for the global autho... soazine
Logout fails to log out318 (8/27/2004 2:54:37 PM) comp.lang.php [PHP] class LoginSessionGenerator extends MethodGenerator { function LoginSessionGenerator() {} /** * Logout * * @access public */ function &logout() { // STATIC VOID METHOD global $p... soazine
PHP class inheritance bug?128 (8/3/2004 12:09:04 AM) comp.lang.php http://www.phpbuilder.com/board/showthread.php?s=b93aeba2a407ce463fee98450a599299&postid=10541092#post10541092 I can't explain it better than to show you my thread Environments: PHP 4.1.2 and 4.3.2 Scenario:... soazine
Defined class becomes undefined154 (8/2/2004 10:46:42 PM) comp.lang.php [PHP] class OptionsView extends PaginationView { /** * Constructor * * @access public */ function OptionsView() {} // CONSTRUCTOR } [/PHP] This class exists in the same script as both the parent... soazine
cannot unlink file that Apache and I have permissions to delete526 (7/28/2004 5:14:40 PM) comp.lang.php [PHP] print_r(is_file("$logPath/$logFileName")); // RETURNS 1 unlink("$logPath/$logFileName"); // RETURNS WARNING: PERMISSION DENIED [/PHP] This code should tell me that the file located at $logPath/$logFileNa... soazine
Use to use mogrify to create a thumbnail of an image130 (7/27/2004 10:35:38 PM) comp.lang.php [PHP] $mogResponse = exec("mogrify -size ${width}x$height " . $this->locationPath . '/' . $this->fileName . ' -resize ' . $width . "x$height > +profile " . ... soazine
Could this be a PHP 4.3.6 "feature"?324 (7/26/2004 4:15:54 PM) comp.lang.php [PHP] echo "val = $val"; list($mySection, $myDisplay) = explode('|', $val); echo "mySection = $mySection and myDisplay = $myDisplay"; [/PHP] In using PHP 4.3.6 here are my results: [Quote] val = imag... soazine
Weirdest PHP problem of all time?!428 (7/23/2004 9:46:08 PM) comp.lang.php [PHP] print_r("2hasResult = $hasResult"); /*--------------------------------------------------------------------------------------------------------------------------------------------------------- Bloc... soazine
unset($_SESSION['var']) fails327 (7/23/2004 5:41:20 PM) comp.lang.php PHP: unset($_SESSION['mainDisplay']); In my original environment (PHP 4.3.2) this line will delete the session variable 'mainDisplay'. But in the testing environment (PHP 4.3.6) the variable persists eve... soazine
Basic WWW Authentication function fails122 (8/30/2004 3:55:29 PM) comp.lang.php [PHP] /*-------------------------------------------------------------------------------------------- This function will utilize the ability to use HTTP-based WWW Authentication, checking for the global autho... soazine(375)
Pagination926 (7/7/2004 12:11:30 AM) comp.lang.php Anyone know of a up-to-date tutorial for pagination where I can have it like: Prev 1 2 3 4 Next Thanks. -- Sharif T. Karim ....you don't know wrath yet... ... sharif(23)
OO in PHP5139 (7/8/2004 6:21:30 AM) comp.lang.php Please, someone, tell me why OO in PHP is better than procedural. ... mark1822(188)
PHP/MySQL and Zone Alarm821 (7/8/2004 10:26:39 PM) comp.lang.php I have a typical username/password check against mysql type logon that Zone Alarm Pro seem to break... I haven't bought or troubleshooted this yet, I'm hoping this is a know issue with a simple fix?? ;) :) TIA... maylar69(27)
How to do PHP "require()" or TCL "source" in bash script768 (7/9/2004 8:25:12 PM) comp.os.linux.misc I'm sorry but I can't figure out how to explain this any better than this. In PHP we have a command "require()" that obtains a file and logically places it into another file. I cannot figure out how to do thi... soazine(375)
How to keep from cacheing images...726 (7/10/2004 5:50:22 AM) comp.lang.php I have a script that outputs images directly using the 'image' functions. I have googled quite a bit but cannot seem to find the correct method of sending headers to keep the images from being cached... these... npeelman(502)
unset($_SESSION['var']) fails327 (7/23/2004 5:41:20 PM) comp.lang.php PHP: unset($_SESSION['mainDisplay']); In my original environment (PHP 4.3.2) this line will delete the session variable 'mainDisplay'. But in the testing environment (PHP 4.3.6) the variable persists eve... soazine(375)
class can not inherit from another class, why ?631 (7/23/2004 8:06:29 PM) comp.lang.php Is this a valid class definition? class McBase { // 06-14-04 - I may or may not later add something here. This will // be the top of the PDS content management system hierarchy. I'm // leaving it blank f... lkrubner(905)
header("Location: ..."); Problem1118 (8/25/2004 11:15:02 PM) comp.lang.php I get the following message when trying to run my script: "Warning: Cannot modify header information - headers already sent by (output started at /var/www/html/newcustomer.php:23) in /var/www/html/newcustomer.... iframe(12)
Logout fails to log out318 (8/27/2004 2:54:37 PM) comp.lang.php [PHP] class LoginSessionGenerator extends MethodGenerator { function LoginSessionGenerator() {} /** * Logout * * @access public */ function &logout() { // STATIC VOID METHOD global $p... soazine(375)