Sponsored Content
Top Forums Shell Programming and Scripting Newby needs help from an OpenSSL expert Post 302685115 by fundidor on Friday 10th of August 2012 06:35:51 PM
Old 08-10-2012
Dear Chubler, I sent you a private message. Please check.
 

7 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Help for a newby

I am new to using nawk. When I put the following line in script file test1.awk I get the results: { print NR, length($0),NF} >nawk -f test1.awk head.txt 1 63 5 2 2622 188 3 2166 155 4 3192 228 5 2679 192 ..... but if I modify the test1.awk file to look like this: BEGIN {FS = ","}... (2 Replies)
Discussion started by: placroix1
2 Replies

2. Solaris

expert vi commands

:) Hi UNIX friends, Where do I get advanced vi commands to practice. Please Help Me. Love (4 Replies)
Discussion started by: Love
4 Replies

3. UNIX for Advanced & Expert Users

Expert Opinion

This perhaps does not belong in ths category; apologies, however, we have a heated debate going and your input will decide the result. Should UNIX (HP, AIX, etc) be rebooted following a monthly cycle (Every month, or a qtr, etc.). We have some UX admins (grumps) who say they have seen a UX... (6 Replies)
Discussion started by: rsheikh
6 Replies

4. Shell Programming and Scripting

Expert cp command

How can I use the cp command to copy every file that I can find inside several folders cp -R *test* folder Supose there is ./122342343teste122343.txt ./bound/123teste1223453.txt ./feed/123teste1223453.txt and i want the files 122342343teste122343.txt, bound/123teste1223453.txt... (12 Replies)
Discussion started by: lipe.82
12 Replies

5. Homework & Coursework Questions

Make file newby question

1. The problem statement, all variables and given/known data: I'm brand new to make files, and I was hoping someone could tell me where I'm messing up. I'm trying to build a cpp program I wrote for class on a linux system, i'm using winscp and puTTy. The program works fine when I build it... (3 Replies)
Discussion started by: Casper3912
3 Replies

6. Solaris

Becoming a Solaris expert?

Hello everyone, how do you really study to become an expert in solaris OS? Thanks (3 Replies)
Discussion started by: cjashu
3 Replies

7. Fedora

Newby: How to actually update software?!

Hi All - 1) I work with bigdate for a living, use lots of neat software, SAS, SQL Server, etc. I know how to get my data and such, analyze it, etc... 2) I use UNIX at work (Solaris mostly) and can easily navigate around Unix and get the job done, vi and sas -nodms are about my fav, and some... (6 Replies)
Discussion started by: sas
6 Replies
SESSION_CACHE_LIMITER(3)						 1						  SESSION_CACHE_LIMITER(3)

session_cache_limiter - Get and/or set the current cache limiter

SYNOPSIS
string session_cache_limiter ([string $cache_limiter]) DESCRIPTION
session_cache_limiter(3) returns the name of the current cache limiter. The cache limiter defines which cache control HTTP headers are sent to the client. These headers determine the rules by which the page content may be cached by the client and intermediate proxies. Setting the cache limiter to nocache disallows any client/proxy caching. A value of public permits caching by proxies and the client, whereas private disallows caching by proxies and permits the client to cache the contents. In private mode, the Expire header sent to the client may cause confusion for some browsers, including Mozilla. You can avoid this problem by using private_no_expire mode. The Expire header is never sent to the client in this mode. Setting the cache limiter to '' will turn off automatic sending of cache headers entirely. The cache limiter is reset to the default value stored in session.cache_limiter at request startup time. Thus, you need to call ses- sion_cache_limiter(3) for every request (and before session_start(3) is called). PARAMETERS
o $cache_limiter - If $cache_limiter is specified, the name of the current cache limiter is changed to the new value. Possible values +------------------+------------------------------------------------------------------------------------------------------------------------------------+ | Value | | | | | | | Headers sent | | | | +------------------+------------------------------------------------------------------------------------------------------------------------------------+ | | | | public | | | | | | | | | | | | | Expires: (sometime in the future, according session.cache_expire) | | | Cache-Control: public, max-age=(sometime in the future, according to session.cache_expire) | | | Last-Modified: (the timestamp of when the session was last saved) | | | | | | | |private_no_expire | | | | | | | | | | | | | Cache-Control: private, max-age=(session.cache_expire in the future), pre-check=(session.cache_expire in the future) | | | Last-Modified: (the timestamp of when the session was last saved) | | | | | | | | private | | | | | | | | | | | | | Expires: Thu, 19 Nov 1981 08:52:00 GMT | | | Cache-Control: private, max-age=(session.cache_expire in the future), pre-check=(session.cache_expire in the future) | | | Last-Modified: (the timestamp of when the session was last saved) | | | | | | | | nocache | | | | | | | | | | | | | Expires: Thu, 19 Nov 1981 08:52:00 GMT | | | Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 | | | Pragma: no-cache | | | | +------------------+------------------------------------------------------------------------------------------------------------------------------------+ RETURN VALUES
Returns the name of the current cache limiter. EXAMPLES
Example #1 session_cache_limiter(3) example <?php /* set the cache limiter to 'private' */ session_cache_limiter('private'); $cache_limiter = session_cache_limiter(); echo "The cache limiter is now set to $cache_limiter<br />"; ?> SEE ALSO
session.cache_limiter. PHP Documentation Group SESSION_CACHE_LIMITER(3)
All times are GMT -4. The time now is 03:12 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy