open_basedir for exiting websites


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting open_basedir for exiting websites
# 1  
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.
# 2  
Old 11-27-2011
Try this...
Code:
#!/bin/bash
for file in /etc/httpd/conf.d/*.com
do
  UNIXNAME=$( awk '/SuexecUserGroup/{print $2}' $file )
  str="php_admin_value open_basedir \"/chroot/home/$UNIXNAME/:/usr/share/pear/:/tmp/:/var/lib/php/session/\""
  sed "/CustomLog/ a $str" $file
done

If you think its working, use -i option with sed to make the changes inline.

HTH
--ahamed
This User Gave Thanks to ahamed101 For This Post:
Login or Register to Ask a Question

Previous Thread | Next Thread

7 More Discussions You Might Find Interesting

1. 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

2. 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

3. 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

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. 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

6. 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

7. 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
Login or Register to Ask a Question