| |
| |
| |
|
Page: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
Comments:
<0> is Jedit an IDE in any way? or just editor? <1> how do i make sure they type in https:// instead of http:// to get to that spot? <1> does that have to do with mod_auth or something? <1> .htaccess? <2> mattmcc: so just add a if get_magic_qutes_gpc() { $var = stripslashes($var) } ? <3> disable port 80 <1> hahaha.. disable port 80.. well it's okay if stuff happens on port 80 otherwise.. jsut not in this particular section <4> minDscrm: There's a variable that tells you whether SSL is on or not. Check phpinfo() under SSL to see it. <1> TML ! thanks <1> i can do a redirect from there i am supposing.. i'll have to learn how <4> mattmcc: Did you see that touch screen demo? <0> what is Zend available for? <5> TML ? <6> [TechGuy] are cl***es you set as soap server actually instantiated ? <7> TML: Yeah. Not bad. <7> JeeHoover: I bet the website mentions it.
<6> i wouldn't believe so ... <1> TML: if i'm running php 4.3.11 does it have that SSL thing? (i don't see it off hand) <1> https://home.frognet.net/~graybeal/entertainment/events/phpstuff.php <6> and doesn't seem to be after a quick test <0> mattmcc, im looking on the website <5> JeeHoover this is ##php not #zend <0> probably if I put it in ia 'cart' it might <0> is there a #zend? <1> oh nevermind <1> **** <6> now there is <5> lol <7> JeeHoover: I don't know how you browse a website, but I went to zend.com, Products, Zend Studio, System Requirements. <5> lepine I dont care what TML and mattmcc say baout you, you're alright! <6> what do they say about me ? <0> i see <8> ****i, ****i <5> Chitterlings or chit'lins are the intestines of young pigs, cleaned and stewed and then frequently battered and fried. <5> oooops <9> sounds yummy... <6> well, it's now out in the open ... might as well say it <10> how is everyone doing tonoght? <5> lepine about cookign you up like chitlins! <11> hi ppl <6> hmmm ... <11> is there a fast php way to check if some process is runnig on machine <7> Well, you could look at the process list.. <6> that's the first time i head about using the term 'deep frying' to mean 'flame' <6> they must really hate me the ... i'd rather go out in flames than boiling oil ... <5> oh ****... brb need to grab the torch <11> mattmcc ... it's one way, exec .. and gre some things <11> but ... some nicer way ? <7> Nicer how? <12> One more little question, if I may... When I first tried a php file (converted from a VBScript), it didn't work, and I was advised to add a switch to the URL that would cause... debugging(?) information to be displayed. I'm running php5, and the manual says there's no debug support builtin to php5. <11> well ... not using stuff like exec("ps .... <11> or lsof <2> cornell: i believe they mean setting error_level in php.ini <10> trying to create a simple chat with this code: http://pastebin.com/553646. the error reads: " parse error, unexpected $." <10> can anyone help? <2> pacopacino: i bet you forgot a ";" <13> what line is the error on? <13> $str="select * from chat; <13> missin a " <10> it says "line 20." but there IS no line 20. <14> you missed a " <2> pacopacino: line 20 means that the whole thing is messed up :-P <13> yeah it thinks everything after that line i just pasted is your string <2> and the last line it finds is where the error code spits out <10> what about line 13? i think there a missing " <13> have you been reading anything? <12> bashusr: I found this in the manual: ini_set('error_reporting', E_ALL); <12> Is that what you're talking about? <2> cornell: it is better to set it in php.ini <2> cornell: what kinda server do you have? <15> hmm question about PHP's cl*** with "extends" (inheirtance): http://php.pastebin.com/553666 <6> what are these supposed to mean ... SOAP_PERSISTENCE_SESSION | SOAP_PERSISTENCE_REQUEST and where can i find the documentation about those? <15> this echos "ChildChild" instead of "ParentChild"... how come? <12> Apache... Ah... php.ini, so it remains one even if another script is invoked <2> cornell: windows? <2> or *nix? <12> Oh, bashusr Linux, Mandrake 10.1
<7> emostar: Well, because $this is an instance of Child, regardless of if it's called from a parent cl*** method. <2> if you're on windows... you should make a script with <?php phpinfo() ?> and check where it says php.ini is located <15> mattmcc: so then how do i make it call the correct function in parent? <2> and then change the error_handling in that config file <16> Anyone have an idea as to where the CVS repo is for APC? <7> emostar: parent::doIt() wouuld be one option. <17> Could anyone tell me why this p***thru is returning NULL? http://pastebin.com/553670 <15> mattmcc: Cannot access parent:: when current cl*** scope has no parent in <12> bashusr that also works in linux ;-) <7> emostar: ...Right, it'd be something you call from a cl*** that actually has a parent. <18> anyone familiar with zen cart and modifying its code? <15> mattmcc: hmm ParentCl***::doIt works <2> true... but if you're in linux... on mostr distros, it'd be in /etc/php.ini or /etc/apache2/php.ini or well... i guess you should use it for linux too :-P <15> its just a little different than inheirtance in C++.. <15> thats what threw me off <19> how can i copy a file on an ftp server <20> Hey folks - anyone successfully streamed JavaScript into their page via HTTP streaming here? <15> pyre|cipher: perhaps zencart's irc/mailling list is a better place <17> anyone know why fopen($valid_url) would not work? When I load the page, it just sits at "waiting for response", never gives me an error <21> are you reading anything from the handle? <21> does file_get_contents($valid_url) work? <15> Super-Fly: try file($valid_url); <17> emostar: tried that, exact same thing <15> $f = file($valid_url); print_r($f); ? <17> well, var_dump($f), but yea <15> and the url works fine with wget on the command line? <17> oh, it finally errored out, said connection timed out <17> yea, I get wget it fine <17> http://weather.boygenius.com/feeds/south_carolina-hilton_head_isla.xml <17> thats the url <15> perhaps the server is filtering it out by user agent? i:ve seen that happen before <17> well, I can run the code on my local server <17> its running php 5 vs php 4 <17> but I don't think that'd make a lot of difference <15> Super-Fly: it works fine for me. perhaps you dont have http:// registered as a valid stream in your php? <17> would phpinfo() show me that? <15> yes, near the top <15> Super-Fly: Registered Stream Socket Transports <10> bashusr, the code posts, but noone else can 'see' it. <17> php, http, ftp, https, ftps, compress.bzip2, compress.zlib <15> Super-Fly: ahh sorry, the one above what i said ;) <17> also, allow_url_fopen is On <15> Super-Fly: hmm.. no idea then.. other than using ethereal to see whats going on at the packet level <2> ??? <22> anyone here NOT from North America? <17> I don't have access to the box <23> is there any way to get apache to byp*** a network firewall? <2> pacopacino: what? <23> apache gives errors <24> nmatrix9: me :P <23> on campus <10> bashusr, i mean that i am using the script as a chat, and noone else can 'see' what i post. <15> Super-Fly: telnet weather.boygenius.com 80 <17> emostar: ? <22> BellSoul: could you open http://www.threadernet.com and tell me if you get a blank page <15> Super-Fly: see if you can fetch it directly with telnet <19> how can i copy a file on an ftp server <17> emostar: I dunno how to do that kinda stuff <15> telnet weather.boygenius.com 80 <15> then type "GET /feeds/south_carolina-hilton_head_isla.xml" and hit enter <25> Anyone know the php var for the current page? Im constructing <forms> and i'd rather not have to specify the file name since it's the same as the form <2> pacopacino: haven't a clue. <17> k <10> bashusr, you've never programed a chat room? <24> nmatrix9: i can see the page normally <2> i wouldn't use php... <19> reind: $_SERVER['scriptname'] possible. check out everything in $_SERVER <2> you'd have to do meta refresh or some funky javascript <7> I wouldn't even use the web. <7> Web-based chat ****s. <13> aye <13> why reinvent the wheel <2> mattmcc: i'm still waiting for somebody to write a good one
Return to
#php or Go to some related
logs:
#perl #php mysqladmin restart #osdev net-setup wikipedia AUPitch conky autostart FAXBACKS NUMBERS not enough allocable blocks libdataserver
|
|