[PHP] php-rsync installation howto
Hi all, I would be intrested in installing this: http://pecl.php.net/package/rsync I got used with PECL packages with at least 2 ways of installation - with "pear install" or "pecl install" - without those tools (with some "configure; phpize; make install") I have a preference for the latter (for internal reasons). How would you install this with "phpize"? Thank you. -- RMA. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
[PHP] Re: [PECL-DEV] php-rsync installation howto
Hi, download and unpack the tarball, then use the instructions from here http://de2.php.net/manual/en/install.pecl.phpize.php Regards Anatoliy Am Mo, 6.08.2012, 11:51 schrieb Mihamina Rakotomandimby: > Hi all, > > I would be intrested in installing this: > http://pecl.php.net/package/rsync > > I got used with PECL packages with at least 2 ways of installation > - with "pear install" or "pecl install" > - without those tools (with some "configure; phpize; make install") > > I have a preference for the latter (for internal reasons). > How would you install this with "phpize"? > > Thank you. > > > -- > RMA. > > -- > PECL development discussion Mailing List (http://pecl.php.net/) > To unsubscribe, visit: http://www.php.net/unsub.php > > -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
Re: [PHP] Coding Web search engine in PHP
On 6 August 2012 19:54, Ansry User 01 wrote: > We are trying to code a very simple and customized search engine for > internal purposes. Please suggest if the PHP is the way to go or suggest > the alternatives?? > > It would be great if you can lead us to the links which would give us a > start!! > > Thanks > try solr. http://lucene.apache.org/solr/ > > > > -- > PHP General Mailing List (http://www.php.net/) > To unsubscribe, visit: http://www.php.net/unsub.php > >
Re: [PHP] Coding Web search engine in PHP
On 06/08/12 15:24, Ansry User 01 wrote: We are trying to code a very simple and customized search engine for internal purposes. Please suggest if the PHP is the way to go or suggest the alternatives?? It would be great if you can lead us to the links which would give us a start!! Thanks This is a very vague question, it really depends. Some recommendations off the top of my head: http://lucene.apache.org/solr/ http://sphinxsearch.com/ Gibbs -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
Re: [PHP] Coding Web search engine in PHP
On Mon, Aug 6, 2012 at 8:24 PM, Ansry User 01 wrote: > We are trying to code a very simple and customized search engine for > internal purposes. Please suggest if the PHP is the way to go or suggest > the alternatives?? > > It would be great if you can lead us to the links which would give us a > start!! > > Thanks > > Solr with Nutch will do it. One is search server and other is crawler. You need both. Google these terms you'll get to the right direction. -- Shiplu.Mokadd.im ImgSign.com | A dynamic signature machine Innovation distinguishes between follower and leader
Re: [PHP] Coding Web search engine in PHP
On Aug 6, 2012 7:33 AM, "shiplu" wrote: > Solr with Nutch will do it. Where *do* come up with those names :)
Re: [PHP] Coding Web search engine in PHP
> Where *do* come up with those names :) > Sorry I couldn't understand the meaning of your sentence. May be this is due to cultural difference. Anyway, Solr is a search engine. Nutch is a crawler. Both can be integrated. Then one can send query to solr server from php using api. See http://wiki.apache.org/solr/SolPHP -- Shiplu.Mokadd.im ImgSign.com | A dynamic signature machine Innovation distinguishes between follower and leader
Re: [PHP] Coding Web search engine in PHP
On Mon, Aug 6, 2012 at 1:15 PM, shiplu wrote: >> Where *do* come up with those names :) >> > > Sorry I couldn't understand the meaning of your sentence. May be this is > due to cultural difference. > > Anyway, Solr is a search engine. Nutch is a crawler. Both can be > integrated. Then one can send query to solr server from php using api. See > http://wiki.apache.org/solr/SolPHP She was just giggling about the silly-sounding names for high-quality products. -- Network Infrastructure Manager http://www.php.net/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
Re: [PHP] Coding Web search engine in PHP
On Mon, Aug 6, 2012 at 11:22 PM, Daniel Brown wrote: > On Mon, Aug 6, 2012 at 1:15 PM, shiplu wrote: > >> Where *do* come up with those names :) > >> > > > > Sorry I couldn't understand the meaning of your sentence. May be this is > > due to cultural difference. > > > > Anyway, Solr is a search engine. Nutch is a crawler. Both can be > > integrated. Then one can send query to solr server from php using api. > See > > http://wiki.apache.org/solr/SolPHP > > She was just giggling about the silly-sounding names for > high-quality products. > > -- > > Network Infrastructure Manager > http://www.php.net/ > Thanks Daniel for clearing. I am pretty bad in English. :( -- Shiplu.Mokadd.im ImgSign.com | A dynamic signature machine Innovation distinguishes between follower and leader
Re: [PHP] Coding Web search engine in PHP
On Mon, Aug 6, 2012 at 1:42 PM, shiplu wrote: > > Thanks Daniel for clearing. I am pretty bad in English. :( Don't sell yourself short. Your English seems fine to me --- better than many native-speakers. -- Network Infrastructure Manager http://www.php.net/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
[PHP] How to catch an exception using SoapClient.
I was wondering how I'd catch an exception using SoapClient. $data = array( 'Particular'=>'Payment for stuff', 'Email' =>'e mail address', 'CardNumber'=>', 'CardType' =>'MC', 'CardExpiry'=>'0423', 'CardHolderName'=>'James Newman', 'CardCSC' =>'111', 'StoreCard' =>'true' ); $vars = array( 'trace' => 1, 'exceptions' => true, 'cache_wsdl' => WSDL_CACHE_NONE, 'features' => SOAP_SINGLE_ELEMENT_ARRAYS); $client = new SoapClient("http://XMLSERVICEURLws/paymentws.asmx?WSDL";, $vars); #$out = $client->ListCards($text); #$this->_result = $client->ProcessPurchase($data); $this->_result = $client->ProcessAuthorise($data); #var_dump($client->__getLastRequestHeaders()); #var_dump($client->__getTypes()); print_r($this->_result);