|
|
|||||||||
|
|||||||||
|
|||||||||
| |
|||
| |||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Display Modes |
|
|
|
Stay one step ahead of the competition. Evaluate and give feedback
on some of the hottest web development tools on the market today.
Make your opinion heard! Click
Here
|
|
#1
|
|||
|
|||
|
Membership Warning
win98, php4+, localhost, register globals off
members.php is suppose to call memberhandler.php, instead, i am getting this error: Warning: Failed opening 'lib/memberhandler' for inclusion (include_path='.;c:\php4\pear') in C:\...\htdocs\members\members.php on line 48 as you can see below, this is line 48: include("{$pm_path}lib/memberhandler$sfx"); members.php: <?php // Description: This file directs member management routines. // It must remain in the "members" directory. if (!isset($HTTP_GET_VARS['p'])) { $memdir = get_pref("memdir","1"); return header("location:$memdir$messagespage$sfx"); } switch ($HTTP_GET_VARS['p']) { case "addcomment" : include("{$pm_path}lib/comment.add$sfx"); break; case "addentry" : include("{$pm_path}lib/weblog.add$sfx"); break; case "sendmail" : deliver_the_mail($from, $subject, $message, $to); break; case "tellafriend" : send_to_friend($name,$to,$from,$message,$what,$pos tid,$where); break; case "activate" : member_activation_handler($id); break; case "pwreset" : reset_member_password($id); break; case "mlist" : add_remove_from_mailinglist($rem,$email); break; default : include("{$pm_path}lib/memberhandler$sfx"); break; } // END ?> |
|
#2
|
|||
|
|||
|
What path is stored in your $pm_path variable?
Just a quick note, what is the $sfx you have at the end of your filenames? What is stored in that variable?
__________________
____________________________________________ Developer Shed Weekly Writer | DevArticles Forum Moderator Build Your Own KlipFolio Klip With PHP FrankManno.com - Under Construction Design Interactive Group - Under Construction |
|
#3
|
|||
|
|||
|
thanks. got it to work.
![]() |
![]() |
| Viewing: Dev Articles Community Forums > Programming > General Programming Help > Membership Warning |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
|
|