| |
| |
| |
|
Page: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
Comments:
<0> ok cool, thanks.. i've glanced through that howto before <0> and i don't remember exactly (since it was almost two years ago) but i probably have a close setup to that samba howto, if thats not exactly what i used :p <1> i'm futzing around with xoops now. it's got the ability to authenticate against ldap too <1> which will be really nice <0> glancing through it looks like the same thing <1> yeah, they are the people that made the smbldap tools <0> i decided one of the nicest ways to integrate ldap auth is just to have an app use http authentication <0> ie .. if it gets AUTH_USER, then ***ume it's been authenticated <0> then in apache, i tell it to use mod_auth_pam to authenticate (or mod_auth_ldap) <0> can even do "Require group admin" <1> nice <0> the first app that i saw do that was trac <1> panic-: your session start is _not_ at the top of your script <0> not many do though, because it seems counter intuitive at first, before you implement security in apache .. "wtf? i can log in with any p***word??" <0> spox: does kolab have a CA/certificate management interface? <2> spox
<2> where am i supposed to put it then <2> if this isnt the top of the script <2> http://pastebin.com/557709 <1> panic-: before the HTML stuff <3> cant even have <html> and all before those. <2> duh before the <html> tag???? <1> yes <2> oh. <1> /kolab/etc/kolab/*.pem are the public/private certs <1> you point to them or generate them during the bootstrap phase <0> spox: well i already have a CA i use for other things .. should i just generate a certificate for this server? <0> Kolab can create an manage a certificate authority that can be used to create SSL certificates for use within the Kolab environment. <0> does that mean it can be a CA that generates certificates for other servers? or is it limited to doing like email certs or something? <1> pretty sure it's just email certs, i don't know about other servers, but i would doubt it <0> meh nevermind, i'm just going to generate a new certificate for it <1> don't quote me on that though, nothing i have looked into <2> omg im going crazy <2> wtf doesnt this work: echo "<br>Firstname: <b>$_SESSION['first']</b><br>"; <2> lol <1> echo "<br>Firstname: <b>{$_SESSION['first']}</b><br>"; <2> great thx alot spox <4> how do i clear arrays? <1> clear arrays? <4> http://ruff-ride.net/fsim/fp.php?callsign=MO55 <1> @unset! <5> (PHP 3, PHP 4, PHP 5) <5> void unset ( mixed var [, mixed var [, mixed ...]] ) <5> Unset a given variable <5> http://www.php.net/unset <6> @unset <4> its bringing up an old away <5> (PHP 3, PHP 4, PHP 5) <5> void unset ( mixed var [, mixed var [, mixed ...]] ) <5> Unset a given variable <6> damn you <5> http://www.php.net/unset <4> array <4> cheers <1> follower: too slow <4> header ("Content-type: image/png"); <4> Warning: Cannot modify header information - headers already sent by (output started at /home/ruff/public_html/fsim/map.php:12) in /home/ruff/public_html/fsim/map.php on line 27 <7> google, now <6> right meow <1> okay, i know that error messages can sometimes be obtuse <1> but seriously <1> output started at /home/ruff/public_html/fsim/map.php:12 <1> how much harder can that be to understand? <1> "hey dip****. you have to send headers before any text. output started at /home/ruff/public_html/fsim/map.php:12" <1> how's that? <6> lmfao <6> its no wonder i like you people <8> if (substr($_POST[email],"126.com")) { <8> whats wrong with that <8> if 126.com is in $email... <8> right? <8> its not working <9> strpos() not substr() <4> right i have a map, working quite well, i send <img src=map.php?long=blah&lat=blah"> how would i plot multiple longs and lats ? <8> that works, thanks <9> Acidic32: i'd just craft a url like map.php?d=x,y|x,y|x,y|x,y then explode it or something
<4> mm <4> @explode <5> (PHP 3, PHP 4, PHP 5) <5> array explode ( string separator, string string [, int limit] ) <5> Split a string by string <5> http://www.php.net/explode <4> anyone got a example of that? <4> i cant work it out <10> joy, i get to port an application using php4/mysql with register globals on to php5/pgsql with register globals off <11> cha <1> metallic: that sounds like loads of fun <4> i send like coords=x,y|x,y etc, how do i explode these into x and y ? <1> sweet <1> my taskbar just left <1> :/ <9> $blah = explode('|',$_GET['coords']); foreach ($blah as $blap) { list($x,$y) = $blap; echo $x.y;} <1> crap. i gotta restart kde <4> that dont work <1> better <12> how can i change charset of a certain database to something else ? like i have latin1 now and i want latin2 <4> $blah = explode('|',$_GET['coords']); <4> $blah2 = explode(',',$blah); <4> echo $blah2[0]; <4> echo $blah2[1]; <4> why dont that work? <4> http://ruff-ride.net/fsim/map2.php?coords=1,2|3,4 <9> because $blah is an array <9> you have to loop through it <4> how do i add err text to the end of a variable <13> evulish, you reading that box of truth crap? <4> is it .$var = "added to line" ? <1> is it, RTFM? <1> @string <5> Definition of type Strings: <5> A string is series of characters. In PHP, a character is the same as a byte, that is, there are exactly 256 different characters possible. This also implies that PHP has no native support of Unicode. See utf8_encode() and utf8_decode() for some Unicode support. <5> http://www.php.net/string <1> go read <1> it tells you all about concatenation <1> plus other fun stuff <9> trollboy: what boxo o truck stuff? <9> truth <13> <iibbmm> http://www.theboxotruth.com/ <1> ammo penetration testing? <13> the guy's a weirdo though <6> most hillbillies are <1> "I am not a high dollar laboratory. I use "poor-boy" test methods." <6> Bl4ckB1rD need to ask in #mysql <12> i asked there too :) <14> marnink pipple <6> are you trying to type with an accent or something? <15> http://pastebin.com/557878 it is my login check file. i dont know why it is not connected with database. not working with database. i just want to define value here, Username==admin && P***word == admin. i want to login. i want to set vales in php file. how i can do it? <15> hello <16> how much overhead does a database abstraction layer create? <15> how i can make login system in php file <1> @google php login script <5> Search results for php login script: <5> http://www.devshed.com/c/a/PHP/Creating-a-Secure-PHP-Login-Script/ <5> http://www.free2code.net/tutorials/programming/php/4/phplogin.php <5> http://www.webscriptsdirectory.com/PHP/User-Authentication/php-login-script-L573/ <5> http://www.evolt.org/article/PHP_Login_Script_with_Remember_Me_Feature/17/60265/ <5> http://www.adesdesign.net/php/tutorials/php/php_login1.php <5> http://www.google.com/search?hl=en&ie=ISO-8859-1&q=php+login+script&btnG=Google+Search <15> i have <15> just need to fix problem <13> who's that new chick metal band? <13> they sound like kittie a lil <13> slick leaf or some **** <13> ah <13> a channel where I'm the oldest
Return to
#php or Go to some related
logs:
#allnitecafe anaktansri #india #india #allnitecafe #linux #php #india bhabhi kabadi
#linux
|
|