| View previous topic :: View next topic   | 
	
	
	
		| Author | 
		Message | 
	
	
		flare -
 
  Joined: 21 Sep 2003 Posts: 11
 
  | 
		
			
				 Posted: Mon Sep 22, 2003 8:18 pm    Post subject: cookies | 
				      | 
			 
			
				
  | 
			 
			
				well cookies didnt work proberly with php so I looked in the  php.ini file and heres what it says.
 
 
; Argument passed to save_handler.  In the case of files, this is the path
 
; where data files are stored. Note: Windows users have to change this 
 
; variable in order to use PHP's session functions.
 
session.save_path = /tmp
 
 
what do I have to change it to? | 
			 
		  | 
	
	
		| Back to top | 
		
			          | 
		
	
	
		  | 
	
	
		aprelium -
 
  Joined: 22 Mar 2002 Posts: 6800
 
  | 
		
			
				 Posted: Tue Sep 23, 2003 4:03 pm    Post subject: Re: cookies | 
				      | 
			 
			
				
  | 
			 
			
				Locate your temporary directory. Usually, its name is TEMP and is located inside the Windows directory. If there no one there, create a TEMP directory anywhere on your hard drive. Assuming its full path is c:\somedir\temp, change the line:
 
 
 	  | Code: | 	 		  | session.save_path = /tmp  | 	  
 
 
to
 
 
 	  | Code: | 	 		  | session.save_path = c:\somedir\temp | 	 
  _________________ Support Team
 
Aprelium - http://www.aprelium.com | 
			 
		  | 
	
	
		| Back to top | 
		
			           | 
		
	
	
		  | 
	
	
		 |