RE: [PHP] can't start apache
did you have --activate-module=src/modules/php4/libphp4.a John Ashton > -Original Message- > From: Scott Wagner [mailto:[EMAIL PROTECTED]] > Sent: March 1, 2001 11:55 PM > To: php > Subject: [PHP] can't start apache > > > Hi > I just installed mysql, apache and php4 on Linux Mandrake 7.0. > After installing apache it seemed ok and started normally. But > after installing PHP4 I get the following error message when I > try to start apache: > > Syntax error on line 207 of httpd. config: cannot load > /usr/apache_1.3.12/libexec/libphp4.so into server: > /usr/loca/apache_1.3.12/libexec/libphp4.so: undefined symbol: mysql_init > > I used the following command to build php4: > ./configure > --with-mysql=/usr/local/mysql-3.22.32-pc-linux-gnu-i686/ > --with-apxs=/usr/local/apache_1.3.12/bin/apxs > > Any hints in a newbie-friendly format would be greatly appreciated. > Thanks, > SW > > -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]
RE: [PHP] can't start apache
http://www.php.net/manual/en/install.apache.php all noted there ;) What a thing. John Ashton > -Original Message- > From: Scott Wagner [mailto:[EMAIL PROTECTED]] > Sent: March 2, 2001 12:12 AM > To: php general > Subject: [PHP] can't start apache > > > No. Does this get added to the configuration command? > (touche on the double-post) > SW > -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]
RE: [PHP] Trigger script from Browser?
You could always use some JavaScript to popup window ands use session_destroy might work never really tried it though. John Ashton [EMAIL PROTECTED] The Data Source Network http://www.thedatasource.net > -Original Message- > From: Ted Goranson [mailto:[EMAIL PROTECTED]] > Sent: March 1, 2001 11:29 PM > To: [EMAIL PROTECTED] > Subject: [PHP] Trigger script from Browser? > > > This may not be possible. > > I wish to trigger a small php script from a button on the displayed > page without changing the page. Specifically, I wish to destroy the > session. > > Best, Ted > > _ > Ted Goranson > Fusecap and Sirius-Beta, Virginia Beach USA > 757/426-6704 > [EMAIL PROTECTED] > Symmetry Conference: http://www.isis-s.unsw.edu.au > > -- > PHP General Mailing List (http://www.php.net/) > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] > To contact the list administrators, e-mail: [EMAIL PROTECTED] > > -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]
RE: [PHP] Dumb newbie graphics question
create a file called phpinfo.php and add to that file then load up that page in your browser. In regards to FAQ's visit www.php.net should also look at phpbuilder.com and there are many more. On php.net in the links section they have even more links to FAQ's John Ashton [EMAIL PROTECTED] The Data Source Network http://www.thedatasource.net > -Original Message- > From: darthzeth [mailto:[EMAIL PROTECTED]] > Sent: March 2, 2001 12:37 AM > To: Jack Dempsey > Cc: PHP general mailing list > Subject: Re: [PHP] Dumb newbie graphics question > > > like i said, im a newbie... how do i run phpinfo() ? my almost exclusive > experience is with FTPing html pages and a few PHP scripts to the server, > other than that, i dont know much. is there any FAQ you can point > me to with > answer to absolute newbie questions like these? > > - Original Message - > > darthzeth wrote: > > > > > > howdy, > > > im new at this, so sorry if this is a dumb question... > > > I want to make some dynamically generated buttons, but even > when i copy > the most basic of graphics scripts i can find out there, they dont seem to > be working. Does this mean my ISP is not configured for displaying PHP > generated graphics? > > > > > > thanks for your help > > > > > > "Men never do evil so completely and cheerfully as when they > do it from > mistaken conviction." > > > Blaise Pascal > > > > > > http://assortedmonkeys.org/ > > > > run phpinfo() and see if it has been compiled with gd support > > > > ~jack > > > > -- > > PHP General Mailing List (http://www.php.net/) > > To unsubscribe, e-mail: [EMAIL PROTECTED] > > For additional commands, e-mail: [EMAIL PROTECTED] > > To contact the list administrators, e-mail: [EMAIL PROTECTED] > > > > > > > -- > PHP General Mailing List (http://www.php.net/) > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] > To contact the list administrators, e-mail: [EMAIL PROTECTED] > > -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]
RE: [PHP] IE 5.5,authentication,PHP sessions: IE never stops running?
Yeah I have seen the same problems before as well with things like phpMyAdmin and others I think it has something to do with user.exe in windows.. not to sure though. If you get it figured out please let me know John Ashton [EMAIL PROTECTED] The Data Source Network http://www.thedatasource.net > -Original Message- > From: Ken [mailto:[EMAIL PROTECTED]] > Sent: March 1, 2001 7:14 PM > To: [EMAIL PROTECTED] > Subject: [PHP] IE 5.5,authentication,PHP sessions: IE never stops > running? > > > I'm experiencing strange behavior with my user authentication > scheme in my PHP app, with users using IE 5.5 (PC and Mac). > > I am using browser authentication (WWW-Authenticate and 401 > headers), "no cache" headers, and PHP 4 sessions. > > I am finding that even when the user totally quits IE, if he then > restarts IE, one or both (haven't isolated for sure yet) of the > following happen: > > - The browser still knows the user and password, and so will send > it to the server upon an authentication request under the same > realm, without prompting the user. (The user does NOT have "save > this password" checked on the user/password prompt when it first > comes up.) > - The session is still active. A call to session_start() returns > the pre-existing session, instead of getting a new one. > > If the user restarts his machine, IE no longer remembers his user > and password, and so a prompt is displayed upon authentication > headers being sent. And I presume (not 100% certain) that a new > session gets created. > > Both of these are behaving like IE is still running. Is this a > known issue with IE 5.5? Does it just stay running? These > symptoms make it sound like this, and less like a logic problem > in my PHP app. (I have verified that the username and password > are sent when the user gets an authentication prompt, without the > user typing anything. I'm assuming there's no possible way that > a PHP session can retain this information; I am reading > $PHP_AUTH_USER and $PHP_AUTH_PW...there's no way these can be set > unless the browser were already running and the user had > previously entered them into their prompts, right?) > > Has anyone else run into this? My application works perfectly > under Netscape 4, IE 4, and Opera 5. > > Thanks, > Ken > > -- > PHP General Mailing List (http://www.php.net/) > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] > To contact the list administrators, e-mail: [EMAIL PROTECTED] > > -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]
RE: [PHP] Tutorial?
Hey, There are a million different sites that have hordes of information to offer, One of my favourites is phpbuilder. For a list of more links please visit the php.net pages. In the link section there are a few good links. Here is a link to some basic php/mysql stuff, http://www.phpbuilder.com/columns/tim20010110.php3 Best of luck, John Ashton [EMAIL PROTECTED] The Data Source Network http://www.thedatasource.net > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED]] > Sent: March 2, 2001 3:36 AM > To: [EMAIL PROTECTED] > Subject: [PHP] Tutorial? > > > > > Hi there, > Iam new to the world of PHP, and after my boss told me to learn > PHP and MySQL, I > found my way here. > I am gettign to frips with MySQL, and Basic PHP seems to be sticking in my > brain, but I'd really appreciate it if you guys could point me in > the direction > of a good on-line tutorial that'd point out the basics of geting these two > technologies to talk to one another. > > Ultimatly, I'd like to have a login screen, that checkes user > name against > password on my Database. > > You guys were recommended to me by a subscriber from another > list, I hoep you > can help. > > Thanks in advance, > Tris... > > > > > > ** > This email and any files transmitted with it are confidential and > intended solely for the use of the individual or entity to whom they > are addressed. If you have received this email in error please notify > the system manager. > > This footnote also confirms that this email message has been swept by > MIMEsweeper for the presence of computer viruses. > > > ** > > -- > PHP General Mailing List (http://www.php.net/) > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] > To contact the list administrators, e-mail: [EMAIL PROTECTED] > > -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]
RE: [PHP] php and javascript
Well not sure what ya need an example of :) php is php and javascript is javascript. What excatly do you need help wiht ? > -Original Message- > From: Christian Reiniger [mailto:[EMAIL PROTECTED]] > Sent: March 2, 2001 5:34 AM > To: Php-General@Lists. Php. Net > Subject: Re: [PHP] php and javascript > > > On Friday 02 March 2001 06:21, you wrote: > > Hello, > > > > Are there any good examples of producing embedded javascript code in a > > php file? > >somecode > ?> > > sglfjh s > >more code > ?> > > -- > Christian Reiniger > LGDC Webmaster (http://sunsite.dk/lgdc/) > > The use of COBOL cripples the mind; its teaching should, therefore, > be regarded as a criminal offence. > > - Edsger W. Dijkstra > > -- > PHP General Mailing List (http://www.php.net/) > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] > To contact the list administrators, e-mail: [EMAIL PROTECTED] > > -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]