Sponsored Content
Top Forums Shell Programming and Scripting open_basedir for exiting websites Post 302576474 by SAYGIN on Friday 25th of November 2011 03:36:32 AM
Old 11-25-2011
open_basedir for exiting websites

Hello,

I want to add open_basedir line for exiting hosts.

all web site configurations located on /etc/httpd/conf.d

and file name format : vhost_example.com

I want to add this line

php_admin_value open_basedir "/chroot/home/$UNIXNAME/:/usr/share/pear/:/tmp/:/var/lib/php/session/"

vhost_example.conf file have a contains

SuexecUserGroup example example

How can i take example name from SuexecUserGroup line and put the $UNIXNAME after that

add open_basedir line under to CustomLog line

thanks in advance.
 

7 More Discussions You Might Find Interesting

1. IP Networking

unix and websites

Does Anyone know how to create domains ahead of another domain? example http://domain.example.com Any Information would be of great help. Thank you. (2 Replies)
Discussion started by: bhjunx
2 Replies

2. Shell Programming and Scripting

Websites for Scripting...

Hi All, Anyone know any good sites for Unix Solaris Shell Scripting? Thanks for reading, b14 (2 Replies)
Discussion started by: B14speedfreak
2 Replies

3. UNIX for Dummies Questions & Answers

visited websites

Hi guys, Im just wondering on where a network admin would view a list of visited websites in unix and where to block some websites? (3 Replies)
Discussion started by: jake2891
3 Replies

4. Shell Programming and Scripting

CURLOPT_FOLLOWLOCATION, open_basedir, and shell php?

I wrote a php-framework-based web application that utilizes CURL and CURLOPT_FOLLOWLACTION and it works great on my localhost. However, when i move it up to the client's shared webserver the open_basedir is set, but safe_mode is off, and i'm running into the error msg: Warning: curl_setopt() :... (0 Replies)
Discussion started by: RacerX
0 Replies

5. Web Development

Perhaps, different websites on same Apache server.

Reading Apache documentation I come to understand that it can host different websites, either by FQDN or IP address, virtually. Is it possible for an Apache server to run two sites, and no one be able to tell from outside, that they are hosted in the same server? If not possible. Essentially,... (2 Replies)
Discussion started by: Aia
2 Replies

6. What is on Your Mind?

IT news websites

Hi guys Can you recommend some seriuos web pages with news from IT world :p Thanks (0 Replies)
Discussion started by: solaris_user
0 Replies

7. UNIX for Dummies Questions & Answers

Unblock the websites

Hi Guys, Some of the websites are blocked in my office. And I know the root password. I tried to unblock those sites.. Checkedcd /etc/modprobe.d $ cat blacklist.conf # # Listing a module here prevents the hotplug scripts from loading it. # Usually that'd be so that some other driver will... (8 Replies)
Discussion started by: Adhi
8 Replies
DBASE_OPEN(3)								 1							     DBASE_OPEN(3)

dbase_open - Opens a database

SYNOPSIS
int dbase_open (string $filename, int $mode) DESCRIPTION
dbase_open(3) opens a dBase database with the given access mode. Note When safe mode is enabled, PHP checks whether the files or directories being operated upon have the same UID (owner) as the script that is being executed. Note This function is affected by open_basedir. PARAMETERS
o $filename - The name of the database. It can be a relative or absolute path to the file where dBase will store your data. o $mode - An integer which correspond to those for the open() system call (Typically 0 means read-only, 1 means write-only, and 2 means read and write). Note You can't open a dBase file in write-only mode as the function will fail to read the headers information and thus you can't use 1 as $mode. EXAMPLES
Example #1 Opening a dBase database file <?php // open in read-only mode $db = dbase_open('/tmp/test.dbf', 0); if ($db) { // read some data .. dbase_close($db); } ?> RETURN VALUES
Returns a database link identifier if the database is successfully opened, or FALSE if an error occurred. SEE ALSO
dbase_create(3), dbase_close(3). PHP Documentation Group DBASE_OPEN(3)
All times are GMT -4. The time now is 05:48 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy