Re: [PHP] Websocket using php

2012-04-01 Thread Tim Streater
el like "reinventing the wheel". > > Is there anyone out there who has already written a websocket server in PHP > and like to share the code? https://github.com/jam1401/PHP-Websockets-Server -- Cheers -- Tim -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] learning resources for PHP

2012-04-03 Thread Tim Dunphy
Hello list,  I am quite sure that you've heard this question at least a few times before. :) But I have been dabbling a bit in PHP for years and I've decided that its' high time that became serious about getting a solid grounding in it. Currently I work as a Sysadmin and have modest but reliable s

Re: [PHP] php in windows

2012-04-10 Thread Tim Streater
t to happen. Not that I can help, as I know nothing about Windows, but with that info perhaps another can. -- Cheers -- Tim -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] How do I collect the keywords a user entered when searching for my site

2005-02-07 Thread Tim Burgan
words also? Tim -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] How do I collect the keywords a user entered when searching for my site

2005-02-09 Thread Tim Burgan
-highlighting/> Tim -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Delete all files in DIR every 20 days

2005-02-14 Thread Tim Burgan
Hello, How can I delete ALL files within a specified directory every 20 days? Does anyone know of any code-snippets that are around at the moment that are able to do this? (And where I can find them?) Thanks Tim -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http

[PHP] Delete all files in DIR every 20 days

2005-02-14 Thread Tim Burgan
Hello, How can I delete ALL files within a specified directory every 20 days? Does anyone know of any code-snippets that are around at the moment that are able to do this? (And where I can find them?) Thanks Tim -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http

Re: [PHP] Re: Delete all files in DIR every 20 days

2005-02-14 Thread Tim Burgan
Jason Barnett wrote: Please give the list longer than an hour to respond to your request ;) Thanks for the suggestion.. I've just given the list 6 hours at the moment. Why do you say this? Tim -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] function to remove all \" from a variable

2005-02-15 Thread Tim Burgan
this how I use it: str_replace('\"', '"', $_POST['FCKeditor1']); Tim -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] function to remove all \" from a variable

2005-02-15 Thread Tim Burgan
Sorry for clogging up you mail box. Yes.. str_replace('\"', '"', $_POST['FCKeditor1']) works. I must've needed to think through my thoughts by typing it out. Tim -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] How do I add PHP code into a DB field

2005-02-17 Thread Tim Burgan
when it's read out again.. it don't work! I want to be able to call a random image script in PHP from the content that's stored in the DB. How do I do this? Thanks Tim -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Problem with ftp_get and ftp_put over SSL

2005-02-23 Thread Tim Boring
chine and that my program is in the correct directory when attempting the transfer...and it is. I'm currently in the process of getting in contact with the FTP server admin to see if they can spot any error messages in the FTP server logs, but given that the vendor is a fairly large company that may take several days to actually track this person down. At this point I'm trying to narrow down the problem to find out if it's an issue with my code, the FTPS server, or with PHP's ftp functionality. Does anyone have any ideas or suggestions? Thanks, Tim -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Problem with ftp_get and ftp_put over SSL

2005-02-23 Thread Tim Boring
on that in my original post. I appreciate the suggestion! Thanks, Tim -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Web Browser Timeout on Upload Script

2005-02-23 Thread Tim Boring
on. > > > > Thanks a lot! > > > Check your max_input_time setting. It cannot be changed at runtime using > ini_set(). > > http://docs.php.net/en/info.configuration.html#ini.max-input-time > Here's another link that might be useful. I came across this

[PHP] html_entities_decode, but ignoring embedding php tags

2005-02-23 Thread Tim Burgan
lt;?php echo 'hello'; ?> How do I do this..? Thanks Tim -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] HOWTO read PHP source code into a textarea

2005-02-25 Thread Tim Burgan
Hello, I have a file 'nav.php', whose source code I want to load into the textarea on page 'aaa.php', so the source can be edited and changed. Is there a resource that I can read to help me do this? Thanks Tim -- PHP General Mailing List (http://www.php.net/) To unsu

[PHP] Trouble Compiling 4.3.10 on FreeBSD 5.X

2005-02-26 Thread Tim Traver
on it doesn't create the shared object on this 5.3 system. More info : System is a Dual Opteron AMD architecture, running a fresh install of FreeBSD 5.3... thanks, Tim. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] HOWTO read PHP source code into a textarea

2005-02-26 Thread Tim Burgan
Thank you everyone, I was trying to use file(), with some problems.. thank you for your suggestions to use file_get_contents(). Perfect! You're all right, it works really well. Thanks Tim ... Tim Burgan. Website & E-Commerce Developer Web: ... -- PHP General Mailing List (http://ww

Re: [PHP] FTP functions

2005-03-07 Thread Tim Boring
he file. Now this may not be the best solution, it just happens to be what I could think of off the top of my head. There may be better ways to accomplish the same thing. Hope that helps! Tim -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Problem with ftp_get and ftp_put over SSL--SOLVED

2005-03-07 Thread Tim Boring
On Wed, 2005-02-23 at 15:58 -0500, Tim Boring wrote: > Hi, Richard! > > On Wed, 2005-02-23 at 08:45 -0800, Richard Lynch wrote: > > Maybe try the active/passive thing... > > > > Often-times, the client/server will/won't allow one or the other, based on > > th

[PHP] text editor

2005-03-28 Thread Tim Traver
s ok, unless the file has a textarea tag in it. Then the editing textarea tag gets closed, and you end up not getting all of the data to save. Any way to work around this and still use simple forms ? Thanks, Tim. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.ph

[PHP] PEAR templates vs Smarty?

2005-04-07 Thread Tim Beckham
I'm trying to assess PEAR templates relative to Smarty, and I would like information regarding the pros and cons of each. Any help will be greatly appreciated. Tim Beckham -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Why does PHP have __toString() and not just toString()

2005-04-12 Thread Tim Burgan
sses have two underscored preceding it [e.g. __toString()], as opposed to Java's normal toString()? What's the purpose of the two underscores in PHP's classes? Thanks Tim -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Best practices for set/get methods

2005-04-14 Thread Tim Boring
ous to read people's responses. Thanks, Tim #1: set/get method for each member attribute example: private $foo; private $bar; public getFoo() { return $this->foo; } public setFoo($val) { $this->foo = $val; } public getBar() { return $this->bar; } public setBar

[PHP] Compiling PHP 4.3.11 on FreeBSD 5.4 amd64

2005-05-14 Thread Tim Traver
would ask here first. Everything appears to compile properly (no errors out of the usual)... Any ideas why the compilation would not create a shared object for me to install on apache ??? Apache is 1.3.33 and compiles and works fine... Thanks, Tim. -- PHP General Mailing List (http

Re: [PHP] Re: smarty

2004-04-14 Thread Tim Traver
o both. Its no different than say java servlets, or xml, or any number of other ways to do it... Tim. At 08:38 AM 4/14/2004, Enrico Weigelt wrote: * pete M <[EMAIL PROTECTED]> [2004-04-14 13:50:19 +0100]: > Moving our sites to smarty is the best thing we've done at our company..

[PHP] Images & PHP

2004-04-19 Thread Tim Thorburn
Hi, I've created a small program that allows users to upload an image, and then resize that image one or more times depending on the desired outcome (once for web documents, twice for photo galleries, etc). Anyways, it seems that a large number of my clients are using older digital cameras to

[PHP] SSI and query string variables to PHP

2004-04-24 Thread Tim Traver
nd this without making the whole page a php script ? Thanks, Tim -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] SSI and query string variables to PHP

2004-04-24 Thread Tim Traver
nd this without making the whole page a php script ? Thanks, Tim -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] SSI and query string variables to PHP

2004-04-25 Thread Tim Traver
's why I'm asking everyone. Tim. At 01:22 AM 4/25/2004, Evan Nemerson wrote: On Saturday 24 April 2004 10:29 pm, Tim Traver wrote: > Hi all, > > ok, this may be a dumb question, but I have a page that has server side > includes that include a php script like this : > > >

Re: [PHP] SSI and query string variables to PHP

2004-04-25 Thread Tim Traver
to just use the QUERY_STRING_UNESCAPED variable and populate the $_REQUEST array myself, cause the "QUERY_STRING" variable is empty... Tim. At 10:52 AM 4/25/2004, Evan Nemerson wrote: On Sunday 25 April 2004 09:56 am, Tim Traver wrote: > Yes, I mean that php gets the server informa

[PHP] setting php_admin_value 2

2004-05-06 Thread Tim Traver
e else has a better idea of where I can tap in to make those kind of changes on the fly... In case no one else got my message due to my fopaux, I have included a copy of my original message below. To clarify, the goal is to set up some security variables like open_basedir... Thanks, Tim. Hi a

[PHP] php_admin values solution

2004-05-07 Thread Tim Traver
et you set the php admin variables on the fly... Thanks, Tim. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] please remove this user

2004-05-07 Thread Tim Traver
Can any admin remove this user from the list ? "Advance Credit Suisse Bank" <[EMAIL PROTECTED]> Every time I post, I get an autoresponse from that address... Anyone else get that ? Thanks, Tim. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: ht

Re: [PHP] php_admin values solution

2004-05-07 Thread Tim Traver
entry for every virtual host in the config file. As long as the directory exists, then apache will serve it up... Tim. At 11:46 AM 5/7/2004, Curt Zirzow wrote: * Thus wrote Tim Traver ([EMAIL PROTECTED]): > Just in case anyone wants to know the solution, I found one on the

Re: [PHP] please remove this user

2004-05-07 Thread Tim Traver
Uhhh...I shouldn't have to do that... and admin on this list should be able to remove those two offending addresses, right ? Tim. At 11:18 AM 5/7/2004, John Nichel wrote: Tim Traver wrote: Can any admin remove this user from the list ? "Advance Credit Suisse Bank" <[EMAIL

[PHP] setting php_admin_value

2004-05-06 Thread Tim Traver
, Tim. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] cron job for php not working

2004-05-20 Thread Tim Traver
It looks like that cron line is making it so that the command runs as the user php... so, you should check if that user has permission to run the script. Tim. At 08:33 AM 5/20/2004, Merlin wrote: Hi there, I am trying to install following cron job: 0 6 * * * php /home/www/project/app_cron

Re: [PHP] Simple MySQL/PHP Query

2004-05-20 Thread Tim Traver
If you know exactly what you need to append, then you can just do the update query directly. UPDATE tablename SET body=concat(body,'string to add') that should do it... Tim At 09:04 AM 5/20/2004, Nick Wilson wrote: Hi all, First off, yeah, it's a dumb Q ;-) but I cant remember e

Re: [PHP] Simple MySQL/PHP Query

2004-05-20 Thread Tim Traver
yeah, the "+" modifier thinks you mean you want to add them as integers... use my previous post with the concat command and that works... Tim. At 09:20 AM 5/20/2004, Nick Wilson wrote: * and then Nick Wilson declared > > >pages of course... What I need to do, is add to t

RE: [PHP] Newbie Question: Variables on the fly

2004-05-28 Thread Tim Winters
Steve!!! This is great! I had no idea you could use arrays in url variables. That makes everything much easier. Thanks very much Tim At 06:26 AM 28/05/2004, Steve Edberg wrote: At 2:01 AM -0300 5/28/04, [EMAIL PROTECTED] wrote: Thanks for the reply Denis, Let me elaborate a bit. I have a php

Re: [PHP] ColdFusion / SQL > PHP / mySQL HELP!

2004-05-28 Thread Tim Traver
Oh my god...I'm crying... what the heck is a bacon stretcher ? t At 03:52 PM 5/28/2004, Travis Low wrote: Here's what you do. Assume 10-hour work days. Obviously, you want to start with the schema. That's pretty darn important, so allow yourself a whole day for that. You have four days left.

[PHP] easy question...

2004-06-01 Thread Tim Traver
e, running suexec won't make it act like a particular user, so how can you get it to create directories, or upload files that have a particular user ownership ? Thanks, Tim. SimpleNet's Back ! http://www.simplenet.com/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit

[PHP] getting the line number

2004-06-07 Thread Tim Traver
thing I am trying to determine is from what line the call was made from the parent script to the subroutine. I know that I can get the line number of the current script, but that doesn't tell me where the function was called from... Hope I explained that correctly, Thanks, Tim. SimpleNet&#

Re: [PHP] getting the line number

2004-06-07 Thread Tim Traver
That is exactly what I needed... Thanks ! Tim. At 12:04 PM 6/7/2004, Adam Bregenzer wrote: On Mon, 2004-06-07 at 14:52, Tim Traver wrote: > I have a script that includes a separate file for functions. > > In a particular function, if a query gets an error, write out a log file > that

Re: [PHP] Simple cms type system

2004-06-09 Thread Tim Brier
You may want to look at Mambo Opensource Server http://www.mamboserver.com/ Tim. Ryan A wrote: Hi, A while back I started a thread for "lasso" as a client wanted a site translated to english, still in talks with that client and he is willing to let me do it in pure PHP instead as I dont

Re: [PHP] Re: Free news feeds

2004-06-10 Thread Tim Winters
Hi Ben, Thanks for the reply. They actually don't have free feeds anymore. They actually say in the FAQ that they don't do that anymore. Does anyone know different? Tim At 01:39 AM 10/06/2004, Ben Ramsey wrote: Check out moreover.com. They used to have free RSS feeds, and I thin

Re: [PHP] Re: Free news feeds

2004-06-10 Thread Tim Winters
Excellent!!! Thanks Very Much!!! Tim At 11:27 AM 10/06/2004, Ron Clark wrote: On Thu, 10 Jun 2004, Ben Ramsey wrote: > Tim Winters wrote: > > Thanks for the reply. They actually don't have free feeds anymore. > > They actually say in the FAQ that they don't do that a

Re: [PHP] Crontab PHP Script

2004-06-26 Thread Tim Traver
: * * * * root/usr/local/bin/php home/httpd/vhosts/tgwedding.com/httpdocs/tgwedding/crontab.php Tim. At 04:34 PM 6/26/2004, Ryan Schefke wrote: Hi, Can someone please give me some guidance. I'd like to run a php script every minute (in reality every night, but just testing). I&#x

Re: [PHP] Session file in /tmp

2004-06-29 Thread Tim Best
on_cache_expire(0); >>> session_cache_limiter('private'); >>> setcookie("cookie","",0,"/","iffinet.com",1); >>> session_start(); >>> >>> I was hoping this would cause the s

Re: [PHP] PHP Sessions Question

2004-07-08 Thread Tim Traver
o the same box and being ok, and then get bounced once it hits a machine that doesn't have the session data... You might ask them about it... Tim. At 09:43 PM 7/8/2004, Ed Lazor wrote: What kind of problems could be happening server-side that would result in PHP sessions randomly disappearing

Re: [PHP] Re: Mixing $_POST with text in a variable

2004-07-19 Thread Tim Traver
I think the better way is to use brackets to enclose your variable... So it would look like this : $message = " Name: {$_POST['Name']} Division: {$_POST['Division']} Phone: {$_POST['Phone']} Email: {$_POST['Email']}"; Tim. At 11:15 AM 7/19/2

[PHP] PHP SOAP Client formats

2008-01-09 Thread Tim Traver
at the top one works, and the bottom one doesn't. Thanks, Tim.

Re: [PHP] PHP SOAP Client formats

2008-01-09 Thread Tim Traver
stuff in line with what the server expects. I want to use PHP's built in classes for this so I don't have to manually send xml to the api... Thanks, Tim. Bastien Koert wrote: XML is case sensitive. I notice the case of the xml is different. Try making the PHP created xml the

Re: [PHP] PHP SOAP Client formats

2008-01-09 Thread Tim Traver
Nathan Nobbe wrote: On Jan 9, 2008 10:45 PM, Tim Traver <[EMAIL PROTECTED]> wrote: Bastien, I want to use PHP's built in classes for this so I don't have to manually send xml to the api... writing the xml by hand would be madness... i didnt want to spend all night

[PHP] setcookie

2008-03-12 Thread Tim Daff
/Users/Daff/Sites/php_sandbox/cookies.php:7) in / Users/Daff/Sites/php_sandbox/cookies.php on line 7 I have googled this and can't find out what I am doing wrong. Any help you could give me would be much appreciated. Tim

[PHP] setcookie

2008-03-12 Thread Tim Daff
Thank's for your help Zareef, Hiep, Shiplu and Jean-Christophe -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] HELP !!!!! PHP SOAP Not building objects correctly

2008-05-16 Thread Tim Traver
[expirationDate] => -XX ) ) [customerType] => individual [billTo] => CustomerAddressType Object ( [firstName] => Tim

Re: [PHP] HELP !!!!! PHP SOAP Not building objects correctly

2008-05-16 Thread Tim Traver
Nathan Nobbe wrote: On Fri, May 16, 2008 at 1:04 PM, Tim Traver <[EMAIL PROTECTED] <mailto:[EMAIL PROTECTED]>> wrote: Hi all, sorry for the cross post to the general PHP list as well as the SOAP PHP list, but I'm a little bit desperate... Ok, for some reason

[PHP] Semi-OT: PHP Login with client security

2008-05-18 Thread Tim Thorburn
does anyone with network security experience have any idea either a) what I would need to ask the IT person to allow for their site only, or b) have any suggestions for alternate password authentication that may work given the above conditions? TIA -Tim

Re: [PHP] Semi-OT: PHP Login with client security

2008-05-19 Thread Tim Thorburn
Wolf wrote: Tim Thorburn <[EMAIL PROTECTED]> wrote: Hi all, Having a slight problem with a demo I gave at a clients last week - looking for a little advise. Part of my demo involved a password protected area - the simplified process is: client enters password on login pag

Re: [PHP] Semi-OT: PHP Login with client security

2008-05-19 Thread Tim Thorburn
robert wrote: On May 18, 2008, at 10:14 PM, Tim Thorburn wrote: Hi all, Having a slight problem with a demo I gave at a clients last week - looking for a little advise. Part of my demo involved a password protected area - the simplified process is: client enters password on login page

Re: [PHP] Semi-OT: PHP Login with client security

2008-05-21 Thread Tim Thorburn
reply button if you simply don't have an answer beyond the standard "your code is bad" response. Tim

Re: [PHP] ssl.

2006-08-24 Thread Tim Traver
g loaded on the exit page that is not secure. For example, if there is a hard coded link to an image, or an included javascript link to an outside source. If anything on the page is not secure, then you will get that error. Tim. -- PHP General Mailing List (http://www.php.net/) To unsubscri

Re: [PHP] Really stupid cookie question

2006-09-11 Thread Tim Traver
time, then the cookie would last for another 30 days... Tim. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Frustrated trying to get help from your site

2006-09-18 Thread Howard, Tim
port, because I don't know what else to do on your site (even though I've run across several warnings NOT to submit a bug report if a problem has already been reported). Your site is incredibly frustrating and difficult to navigate. Tim Howard Calhoun ISD Dept. of Technology (269)

[PHP] My apologies

2006-09-18 Thread Howard, Tim
frustrated programmers. Tim Howard Calhoun ISD Dept. of Technology (269) 789-2465 This email is intended only for the use of the addressee(s) named herein. It may contain legally privileged and confidential information. If you are not the intended recipient, or an authorized representative of th

[PHP] PHP Accelerator

2006-12-06 Thread Tim Traver
Nick Lindridge at http://www.php-accelerator.co.uk for a later version of the ionCube PHP Accelerator. but when I go to that site, nothing has been updated for several years now. Is this product still available in the same form??? or has it been replaced ??? Thanks, Tim. -- PHP General Mailing

RE: [PHP] MS SQL extension not loading

2006-04-12 Thread Tim Huntley
IS, MySQL, PHP). Heh. Tim. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Simulating mysql_real_escape_string

2006-06-19 Thread Tim Traver
scape_string ? or is there maybe a sequence of addcslashes parameters that can accomplish the same thing ??? Thanks, Tim. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] segfault help

2008-06-27 Thread Tim Rupp
$db->setFetchMode(MDB2_FETCHMODE_ASSOC); $db->setOption('persistent', false); As shown above, I'm using sqlite. The database file and the folder that the file is in are both writable by the user that I'm running the script as. Any hel

Re: [PHP] segfault help

2008-06-27 Thread Tim Rupp
On Fri, Jun 27, 2008 at 10:14 AM, Daniel Brown <[EMAIL PROTECTED]> wrote: > On Fri, Jun 27, 2008 at 10:30 AM, Tim Rupp <[EMAIL PROTECTED]> wrote: >> Hi list, >> >> I'm getting a segfault when I run (what I assume) is a very simple >> script. I'm n

Re: [PHP] segfault help

2008-06-27 Thread Tim Rupp
On Fri, Jun 27, 2008 at 11:03 AM, Daniel Brown <[EMAIL PROTECTED]> wrote: > On Fri, Jun 27, 2008 at 11:57 AM, Tim Rupp <[EMAIL PROTECTED]> wrote: >> >> ./configure --enable-force-cgi-redirect --enable-debug >> --disable-rpath --enable-inline-optimization --with-b

[PHP] pdo compilation question

2008-08-18 Thread Tim Rupp
-devel, but I think php is choosing to use the sqlite that comes with it I'm hoping someone on the list can point me in the right direction. Thanks in advance, Tim -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Using DOM textContent Property

2008-09-02 Thread Tim Gustafson
their children nodes (which is what the DOM documents say it should). But there doesn't appear to be any way to know if the textContent you've got is for just one node, or for a whole bunch of nodes. Is there any way to figure that out, so that I can adjust the textContent property of ju

RE: [PHP] Using DOM textContent Property

2008-09-02 Thread Tim Gustafson
hat's more, looking at $Element->childNodex->length isn't too helpful, because, for example: Foo returns two child nodes, neither of which has "Foo" for its textContent. Tim Gustafson SOE Webmaster UC Santa Cruz [EMAIL PROTECTED] 831-459-5354 -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] Using DOM textContent Property

2008-09-03 Thread Tim Gustafson
e on to your > DOM stuff. That way, you need not create new nodes in > your nodelist. I think that's the way I'm going to have to go, but I was really hoping not to. Thanks for the suggestion! Tim Gustafson SOE Webmaster UC Santa Cruz [EMAIL PROTECTED] 831-459-5354 -- PHP Gene

RE: [PHP] Using DOM textContent Property

2008-09-05 Thread Tim Gustafson
Element instanceof DOMNode) { echo "foo!"; exit; } Then it echos "foo!" as expected. It just seems that none of the nodes in the tree are DOMText nodes. In fact, get_class($Element) returns "DOMElement" for every node in th

RE: [PHP] Using DOM textContent Property

2008-09-10 Thread Tim Gustafson
his seems doable with the DOM modle, but complicated. I'm thinking regular expressions might be the way to go again. :\ Tim Gustafson SOE Webmaster UC Santa Cruz [EMAIL PROTECTED] 831-459-5354 -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] FreeBSD to Linux -- PHP Issues

2004-02-03 Thread Tim Thorburn
I've moved sites between 3 or 4 different hosting providers until I found one that didn't sell out the week after we signed up, and was actually fast enough along with decent tech support. Never had any troubles with PHP as long as the version was somewhat similar. Started with Sun Solaris, we

[PHP] writing a manual

2004-02-09 Thread Tim Thorburn
t/remove any and all text on their site, upload pictures, upload and re-size pics for a photo gallery ... nothing ground breaking - standard PHP/MySQL stuff, though last time I tried to put a manual together it quickly got to be over 40 pages and that client decided they didn't want it in the

[PHP] Error

2004-02-20 Thread Tim Trimble
#x27;.:/php/include :/usr/share/php') in Unknown on line 0 Can you direct me to a fix for this... Thanks...Tim Trimble

[PHP] PHP Error

2004-02-21 Thread Tim Trimble
May be the cause is, that you've specified some include file with include('somefile'); but the file doesn't exist in /usr/share/php dir, which is the default path for include (.inc) files to be saved. OK, I see your point. The problem is I don't know what file/ directory it's looking for, so I d

[PHP] PHP Error

2004-02-21 Thread Tim Trimble
th is ".:/php/includes" I can't find that on the machine anywere and "/usr/share/php" that I did find, and I put the libraries dir. at that location, it still says it's not there What am I doing wrong Thanks...Tim

[PHP] new session in new window

2004-03-08 Thread Tim Traver
that's not what I want to do. When I launch a new window, it keeps the same session as the one that it was launched from. If I kill the session in that new window, then it kills the old sessino too... Any suggestions ??? Thanks, Tim. SimpleNet's Back ! http://www.simplenet.com/

Re: [PHP] new session in new window

2004-03-08 Thread Tim Traver
those windows would have different session id's... It sounds like you were talking about doing something similar, cause what I want to do is to automatically log someone in to a different app, while keeping the main person logged in to the main window... Anyone else have any ideas ? Tim.

Re: [PHP] new session in new window

2004-03-08 Thread Tim Traver
ct the new user and go on your merry way. It just means that you would have to log in to the administrator account again later. So, what you're saying is that I can make up a new session ID in the URL of the launched window ? hmmm...I think that might just work...I'll try it... Tim

Re: [PHP] new session in new window

2004-03-08 Thread Tim Traver
that window. I just can't seem to get it to create a new session ID when creating a popup window... Any other ideas ? Tim. wrote: --- Tim Traver <[EMAIL PROTECTED]> wrote: > As an administrator, you log in to the main application. session id's > keep track that you are

Re: [PHP] new session in new window

2004-03-08 Thread Tim Traver
different than your other windows, and it doesn't look like I can do that from an existing window, cause it will always send the same cookie... darn...I guess I'll have to live with that...h...maybe I can set it on a different cookie path...that might work... anyways, thanks for t

[PHP] PHP on Novell server

2004-03-10 Thread Tim Thorburn
n) and no database? I suppose there's some sick method of editing text files, but that seems a little bit more hokey than I'd like to get into. Thanks -Tim -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] preg_match

2004-03-28 Thread Tim Traver
Jason, well, if the string is exactly how you have it, then something like this would do : $var="mailto:[EMAIL PROTECTED])"; if(preg_match("/^(\S+)\s.+/",$var,$match)){ $name=$match[1]; } Of course, that would exclude those addresses that might have two names, lik

[PHP] PHP Seg Faults, How to Trackdown?

2004-03-30 Thread Tim Schaab
ny and all suggestions to try and pin this bugger down. Cheers, Tim -- Tim Schaab http://madweb.org http://madtown.cc [EMAIL PROTECTED] [EMAIL PROTECTED] The most exciting phrase to hear in science, the one that heralds new discoveries, is not "Eureka!" (I found it

Re: [PHP] PHP Seg Faults, How to Trackdown?

2004-03-30 Thread Tim Schaab
g/errors/Error7.txt http://madweb.org/errors/Error8.txt I also tried it again, but with the same files stored in /lib instead of /lib/i686, and I got this crash: http://madweb.org/errors/Error9.txt Thanks for helping me out. Let me know what else might be an option. Cheers, Tim Rasmus Lerd

Re: [PHP] *FIXED* PHP Seg Faults, How to Trackdown?

2004-03-31 Thread Tim Schaab
it pretty hard. Good Times. :) Thanks for tips Rasmus, it sent me in the right direction! Cheers, Tim -- Tim Schaab http://madweb.org http://madtown.cc [EMAIL PROTECTED] [EMAIL PROTECTED] The most exciting phrase to hear in science, the one that heralds new

RE: [PHP] beginnind and end of the week

2004-11-01 Thread Tim Owens
mestamps. > >Curt Hmm. Could you simply use the SQL "WHERE WEEK(dateinrecord) = WEEK(dateinquestion)"? Or maybe use YEARWEEK to make sure you match the year too? Saves re-inventing the wheel... Tim -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Running PHP as CGI

2004-11-26 Thread Tim Traver
effect ? or do I have to set that in a php.ini file that is specific for that virtual host ? Thanks, Tim. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Running PHP as CGI

2004-11-26 Thread Tim Traver
I guess what I'm really asking is do the php_admin environment variables that can get set in Apache get passed to the CGI version of php when called as a CGI ? Tim. Curt Zirzow wrote: * Thus wrote Tim Traver: Hi all, In the quest to secure php script running, I am starting to think

[PHP] RE: "Please wait" page while processing

2004-12-03 Thread Tim Owens
ase wait"; return ok } --> ... Not that it's PHP, but it works... Tim Owens -Original Message- From: Geoff Caplan [mailto:[EMAIL PROTECTED] Sent: Saturday, 4 December 2004 7:52 a.m. To: [EMAIL PROTECTED] Subject: "Please wait" page while processing Hi

RE: [PHP] Magic Quotes Issue

2004-12-08 Thread Tim Owens
public servers, some with magic quotes and some more enlightened servers without. Might be nice to have a mq_addslashes function. Or I could write one myself of course... Tim -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Fatal error: Call to a member function on a non-object

2004-12-22 Thread Tim Burgan
path("directory/database.mdb") . ";DefaultDir=" . realpath("directory"); $db_connection->open($db_connstr); // THIS IS LINE 17 Can anyone shed some light onto what this error means in plain english, and possible what I can do. Thanks for your time.. I'

<    5   6   7   8   9   10   11   12   >