I experienced the same problem with FC14, my solution was that I had SELinux 
set to enforce and ran the following command to enable socket connections from 
httpd:
"setsebool -P httpd_can_network_connect 1"
 

-----Original Message-----
From: Frento Burton [mailto:fbur...@scs.howard.edu] 
Sent: Tuesday, February 22, 2011 8:05 PM
To: vcl-dev@incubator.apache.org
Subject: Re: Install problems with VCL

Oh sorry, I actually made those modifications to the .ht-inc/conf.php file.
Here is what the top sections looks like:


**************************************************************************************
<?php
/*
  Licensed to the Apache Software Foundation (ASF) under one or more
  contributor license agreements.  See the NOTICE file distributed with
  this work for additional information regarding copyright ownership.
  The ASF licenses this file to You under the Apache License, Version 2.0
  (the "License"); you may not use this file except in compliance with
  the License.  You may obtain a copy of the License at

      http://www.apache.org/licenses/LICENSE-2.0

  Unless required by applicable law or agreed to in writing, software
  distributed under the License is distributed on an "AS IS" BASIS,
  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  See the License for the specific language governing permissions and
  limitations under the License.
*/

$myhost='<138.238.148.123>';

define("ONLINEDEBUG", 1);     // 1 to display errors to screen, 0 to email
errors


################   Things in this section must be modified
#####################

define("BASEURL", "https://$myhost/vcl";);   // no trailing slash - all of
the URL except /index.php
define("SCRIPT", "/index.php");                 // this should only be
"/index.php" unless you rename index.php to something else define("HELPURL", 
"https://vcl.example.org/help/";); define("HELPFAQURL", 
"http://vcl.example.org/help-faq/";);
define("HELPEMAIL", "vcl_h...@example.org"); define("ERROREMAIL", 
"webmas...@example.org");
define("ENVELOPESENDER", "webser...@example.org");   // email address for
envelope sender of mail messages
                                                     //   if a message gets
bounced, it goes to this address
define("COOKIEDOMAIN", "");       // domain in which cookies are set
define("HOMEURL", "https://$myhost/vcl";); // url to go to when someone clicks 
HOME or Logout

********************************************************************************************


Reply via email to