Re: [PHP] PHP via DIAL-UP?

2004-12-10 Thread Sadeq Naqashzade
Hi,
It is simple. Only you need setup an incoming connection in network connection.
Note that this is not PHP/APACHE matter it is Windows matter. You can
find detailed guide in Windows Forums.
- Sadeq


On Fri, 10 Dec 2004 17:34:56 -0800 (PST), Police Trainee
[EMAIL PROTECTED] wrote:
 Hello. I have a computer at my office running Apache
 that I use to run PHP scripts with using
 http://localhost.
 
 Is there anyway I can set up my computer to allow me
 to dial-in from home and use the webserver and my php
 applications?
 
 It is a win 98 system with tcp/ip.
 
 __
 Do you Yahoo!?
 Read only the mail you want - Yahoo! Mail SpamGuard.
 http://promotions.yahoo.com/new_mail
 
 --
 PHP General Mailing List (http://www.php.net/)
 To unsubscribe, visit: http://www.php.net/unsub.php
 
 


-- 
Sadeq Naqashzade Yazdi
Sadeq [at] Yazd [dot] info


Phone: +98 351 626 7581
Fax: +98 351 626 4827


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] Search engine : build a new one or use an alreadry existing one ?

2004-11-07 Thread Sadeq Naqashzade
Hi
Can I use them (swish-e  HtDig) for unicode scripts?
Sadeq


On Mon, 08 Nov 2004 13:49:32 +1300, Noodles [EMAIL PROTECTED] wrote:
 Curt Zirzow wrote:
 
 
  * Thus wrote robert mena:
 
 Hi,
 
 I need to improve my current search mecanism but got stuck in a
 dilema : build one or use an existing engine?
 
 My site, that uses php/smarty allows my users to browse products in a
 category listing or search.  Currently my search only performs a
 'select xxx from where field like ' and show the results.
 
 Even tough it works I'd like to improve it, showing the results by
 relevance, proper hadling mispelled words, performing the serach not
 only in the product's name etc.
 
 
  If your using mysql, look at the match()/full text index
  functionality it provides.  This can be a usesfull feature.
 
 
  Curt
 
 If you have access to install things on your server I would consider
 using Swish-E, i'm using it on www.question.com and it's working great,
 and it has a php interface.
 
 http://www.swish-e.org/
 
 Nick
 
 
 
 --
 PHP General Mailing List (http://www.php.net/)
 To unsubscribe, visit: http://www.php.net/unsub.php
 
 


-- 
-
Yazd, 8917954894

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP] Search engine for my unicode site

2004-11-07 Thread Sadeq Naqashzade
Hi,
What search engine script you recommend to use for my Unicode web site
(English/Persian/Arabic at least) ?. It must able crawel my html files
too. and I prefer to able index my database driven pages too.

- Sadeq

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] @session_start generates a new session_id

2004-10-19 Thread Sadeq Naqashzade
Hi,
Check your PHP config file. You may enable auto session start. I think
this is the reasone of problem.

Sadeq


On Tue, 19 Oct 2004 18:21:29 +0200, [EMAIL PROTECTED]
[EMAIL PROTECTED] wrote:
 Hi Matt,
 
   @session_start();
   session_name(userauth);
   $_SESSION['SESS_CUS'] = $user_id;
 
  I am not 100% sure what the problem is, but if you are trying to
  change the session name to userauth, I think you need to do that
  before session_start
 
 session_name() works ok so far.
 
 For example:
 ?
 @session_start;
 $session = session_id();  /* index.php */
 $_SESSION['SESS_CUS'] == $user_id;
 echo $session;
 ?
 
 OUTPUT in the browser:
 
 34f321149ee49d20e0e223f3020c1f77
 
 In the case a new page is loaded it changes to a new value:
 
 ?
 $session = session_id();  /* userauth.php */
 echo PHPSESSID: $session;
 echo SESSION:.$_SESSION['SESS_CUS'];
 ?
 
 OUTPUT in the browser:
 
 PHPSESSID: b65de73df8d327a4e15627ccfd14968d
 SESSION:
 
 A new request over http generates a new session and
 $_SESSION['XYZ'] is not available anymore.
 
 --
 Best Regards,
 
 Mark
 
 
 
 --
 PHP General Mailing List (http://www.php.net/)
 To unsubscribe, visit: http://www.php.net/unsub.php
 
 


-- 
-
Yazd, 8917954894

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php