[PHP] PHP5 SOAP...

2009-06-16 Thread Russell Jones
what is sent - all I get back are useless errors like not enough information sent, etc... Any ideas? Any SOAP pros out there? Russell Jones CTO Virante, Inc. r...@virante.com 919-459-1035

[PHP] PHP/MYSQL/ Encrypting Sensetive information

2009-04-17 Thread Russell Jones
probably be done locally, so hashing alone is not really an option. Russell Jones

[PHP] DNS lookup w/ php

2007-01-15 Thread Russell Jones
If I wanted to determine whether a domain has set up mx records, how could I accomplish this with PHP?

Re: [PHP] Distinguishing between a mouse click and a refresh?

2006-12-04 Thread Russell Jones
Yes, sort of. lets say that your page is 'http://www.php.net' and you want to make sure your visitor got there with a click, and not a refresh... first, get the referer... $_SERVER['HTTP_REFERER']; then do something like this... $refsite = file_get_contents($_SERVER['HTTP_REFERER']); $refsite

Re: [PHP] PHP Search and Privacy...

2006-10-24 Thread Russell Jones
/06, Chris [EMAIL PROTECTED] wrote: Russell Jones wrote: Does anyone know if any of the PHP Site-Search tools have implemented the new #privacy search standard (http://www.poundprivacy.org). Looking to install a new site-search and I would really like to install something that is compliant

[PHP] PHP Search and Privacy...

2006-10-23 Thread Russell Jones
Does anyone know if any of the PHP Site-Search tools have implemented the new #privacy search standard (http://www.poundprivacy.org). Looking to install a new site-search and I would really like to install something that is compliant...

[PHP] Simple Array Question...

2006-10-05 Thread Russell Jones
lets say I have an array... $myArray = array ( firstkey = first val, secondkey = second val ) Can I still call these by their numeric order? ie, echo $myArray[0] shoudl print out first val...

Re: [PHP] Newbie Form Question

2006-08-04 Thread Russell Jones
In most cases, your PHP build is set up with mail() attached to whatever SMTP you have on the server. you would just use the following... mail($recipientemail,$subject,$message); On 8/4/06, Duncan Hill [EMAIL PROTECTED] wrote: On Friday 04 August 2006 13:27, Jay Blanchard wrote: [snip] I

Re: [PHP] SQL injection

2006-08-02 Thread Russell Jones
This is a good question and it, by and large, has not been considered. In this particular instance, their programming is not protected by any kind of encryption laws that would prevent decryption (such as developing and deploying the decryption of Adobe Ebooks format). Furthermore, because you

Re: [PHP] regular expression to extract from the middle of a string

2006-07-14 Thread Russell Jones
Ill probably get attacked viciously for this with pitchforks and machetes, but I get sick and tired of trying to figure out regular expressions a lot of times, so I use the following functions... getSingleMatch(), getMultiMatch(), getSingleMatchBackwards() function

[PHP] Language Translation (spanish-english) PHP

2006-07-13 Thread Russell Jones
Anyone know of an API (soap, xml-rpc, rest, anything) for PHP that assists with language translation? Thanks Russ

[PHP] Language Translation and PHP...

2006-07-12 Thread Russell Jones
Anyone know of any language translation APIs or anything of that sort out there? Looking to translate quite a bit of content and would rather not do it by hand.

[PHP] PHP and mySQL getting smashed...

2006-05-17 Thread Russell Jones
I have a site that is getting 30K+ traffic daily and it is smashing mySQL - any ideas on what to do to make the mysql connections more efficient, or anything in general. No bandwidth issue here, just the server getting killed. Thanks

[PHP] Download image in PHP

2006-04-05 Thread Russell Jones
I have an image library on one site that I want to be able to access from another, but I actually want the image downloaded and cached to the new site (so that it doesnt keep taxing the image server). I allow the file() command to pull from other sites, can I do this with just the

Re: [PHP] microsoft PHP ?

2006-04-01 Thread Russell Jones
Are you guys sure, I mean the St Louis Post Dispatch is showing it too... As is Cincinatti.com http://search.cincinnati.com/sp?aff=5keywords=%3Cscript%20src=http://www.xssfools.com/xss.php%3Fy%3Dh917254010%3E%3C/script%3E

Re: [PHP] XML-RPC or SOAP

2006-03-30 Thread Russell Jones
I would go with XML-RPC. I currently use XML-RPC to run LinkSleeve - a link-spam detection tool. In my opinion, I have found XML-RPC to be easier to use and understand. If at any point in your product you will be dealing with customers / vendors who will be beginners with both XML-RPC and SOAP, I

Re: [PHP] Re: Detect where someone comes from

2006-03-06 Thread Russell Jones
If you want to find out who is actually linking to you altogether (such as for search engine optimization, etc.) you are going to want to use the following search query in Yahoo... linksite:yoursite.com -site:yoursite.com This will tell you everyone who is linking to you minus the links coming

Re: [PHP] Help Defending against Email Injection Attacks

2006-02-06 Thread Russell Jones
Why dont you just break the code. Before anything goes through replace colons with dashes, dashes with underscores, etc. Stuff that will not mess up readability but would prevent it from being parsed by the mail function. On 2/6/06, Jim Moseby [EMAIL PROTECTED] wrote: - The most foolproof

Re: [PHP] PHP hosting with multiple domains?

2006-02-02 Thread Russell Jones
Host-Gator has a fantastic, cheap reseller program, although you aren't sharing space within 1 account. My real recommendation would be ServerPronto though. $29.95/mo for a dedicated with 40gig space. It works great for me, and you can host all the domains you want. You will have to learn how to

[PHP] Clean data / text for XML

2006-01-31 Thread Russell Jones
Any good classes or scripts out there to just clean data that will be placed into XML? I always have a problem with random tokens ruining XML and I would prefer if I could just find a way to clean all the junk out before putting it into an xml file.

Re: [PHP] way to write mysqli result set to disk

2006-01-25 Thread Russell Jones
It may be better to go ahead and convert it to an array, or something that can be handled more quickly when the cache is pulled than interpreting the result again and again and again... Really dont know, just a thought. On 1/25/06, jonathan [EMAIL PROTECTED] wrote: is there a way to write a

[PHP] XML-RPC and comment spam...

2006-01-24 Thread Russell Jones
I am trying to set up a personal blog of mine with the new LinkSleeve.orgXML-RPC link spam service, but I dont know the firs thing about PHP and XML-RPC. I did read that there are some problems with security, though, with the popular PHP XML-RPC classes. Have these been fixed and which would you

[PHP] XML-RPC questions...

2006-01-24 Thread Russell Jones
I have read recently that there are some issues with XML-RPC and security in PHP classes. Have these been fixed? What would you recommend? I am looking to create a LinkSleeve filter for my blog and it requires XML-RPC. rjonesx