Account Options

  1. Sign in
The old Google Groups will be going away soon, but your browser is incompatible with the new version.
Google Groups Home
« Groups Home
Apache Help
There are currently too many topics in this group that display first. To make this topic appear first, remove this option from another topic.
There was an error processing your request. Please try again.
flag
  18 messages - Collapse all  -  Translate all to Translated (View all originals)
The group you are posting to is a Usenet group. Messages posted to this group will make your email address visible to anyone on the Internet.
Your reply message has not been sent.
Your post was successful
 
From:
To:
Cc:
Followup To:
Add Cc | Add Followup-to | Edit Subject
Subject:
Validation:
For verification purposes please type the characters you see in the picture below or the numbers you hear by clicking the accessibility icon. Listen and type the numbers you hear
 
Daniel Wexler  
View profile  
 More options Sep 16 2008, 11:16 pm
From: Daniel Wexler <danwex...@gmail.com>
Date: Tue, 16 Sep 2008 20:16:47 -0700 (PDT)
Local: Tues, Sep 16 2008 11:16 pm
Subject: Apache Help
I'm struggling through the Apache configuration. I've finally got the
various paths set correctly and I no longer get any errors in the
apache log files, but I can't get rid of the silly "Manual server
updates required" page.

I've followed all the instructions for the new uploaded/images dir in:
http://code.google.com/p/reviewboard/source/detail?r=1247

I've checked the paths to the reviewboard/htdocs/media/uploaded/images
directory and made sure they are all owned by the webserver user.
Heck, I've even chmod'ed them all as 777!  I've done the
fixscreenshots bit.

It all works fine if I run the "manage.py runserver <machine>:8000"
server.  With the simple server, I can log in and manage reviewboard.
But through Apache, at "http://<machine>" I get the "Manual server
updates required" page.

Any tips on what might still be required to get Apache serving pages?

This is using Apache 2.0 with Django 1.0 on Windows XP.

Here's the relevant part of my httpd.conf file (reviewboard is in C:/
reviewboard, it took a long time to figure out the PythonPath):

<VirtualHost *:80>
        ServerName maki.nvidia.com
        #DocumentRoot @pythondir@/reviewboard/htdocs
        DocumentRoot "c:/reviewboard/htdocs"

        # Error handlers
        ErrorDocument 500 /errordocs/500.html

        # Serve django pages
        <Location "/">
                #PythonPath "['@djangodir@'] + ['@pythondir@/reviewboard'] +
['@pythondir@/djblets'] + sys.path"
                PythonPath "['c:/'] + ['c:/reviewboard'] + sys.path"
                SetEnv DJANGO_SETTINGS_MODULE reviewboard.settings
                SetHandler mod_python
                PythonHandler django.core.handlers.modpython
                PythonAutoReload Off
                PythonDebug On
                # If you run multiple mod_python sites in the same apache
                # instonce, uncomment this line:
                # PythonInterpreter reviewboard
        </Location>

        # Serve static media without running it through mod_python
        # (overrides the above)
        <Location "/media">
                SetHandler None
        </Location>
        <Location "/errordocs">
                SetHandler None
        </Location>

        # Alias static media requests to filesystem
        #Alias /media @pythondir@/reviewboard/htdocs/media
        #Alias /errordocs @pythondir@/reviewboard/htdocs/errordocs
        Alias /media "c:/reviewboard/htdocs/media"
        Alias /errordocs "c:/reviewboard/htdocs/errordocs"
</VirtualHost>


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Terry Rankine  
View profile  
 More options Sep 17 2008, 12:30 am
From: "Terry Rankine" <terry.rank...@gmail.com>
Date: Wed, 17 Sep 2008 12:30:10 +0800
Local: Wed, Sep 17 2008 12:30 am
Subject: Re: Apache Help

our test server is setup this way. debian linux, apache 2.2, not sure if it
helps

<VirtualHost *>
        ServerAdmin webmaster@localhost

        DocumentRoot /home/rb/reviewboard/htdocs
        <Directory />
                Options FollowSymLinks
                AllowOverride None
        </Directory>

        ErrorLog /var/log/apache2/error.log

        # Possible values include: debug, info, notice, warn, error, crit,
        # alert, emerg.
        LogLevel warn

        CustomLog /var/log/apache2/access.log combined
        ServerSignature Off

        # Alias static media requests to filesystem
        Alias /media /home/rb/reviewboard/htdocs/media
        Alias /errordocs /home/rb/reviewboard/htdocs/errordocs

        ErrorDocument 500 /errordocs/500.html

        # Serve django pages
        <Location "/">
                PythonPath "['/usr/lib/python2.4/site-packages/django',
'/usr/lib/python2.4/site-packages/pysqlite2', '/home/rb',
'/home/rb/reviewboard', '/home/rb/reviewboard/djblets'] + sys.path"
                SetEnv DJANGO_SETTINGS_MODULE reviewboard.settings
                SetHandler mod_python
                PythonHandler django.core.handlers.modpython
                PythonAutoReload Off
                PythonDebug Off
                # If you run multiple mod_python sites in the same apache
                # instonce, uncomment this line:
                PythonInterpreter reviewboard
        </Location>

        # Serve static media without running it through mod_python
        # (overrides the above)
        <Location "/media">
                SetHandler None
        </Location>
        <Location "/errordocs">
                SetHandler None
        </Location>
</VirtualHost>

Not sure


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Guillaume  
View profile  
 More options Sep 17 2008, 3:13 am
From: Guillaume <guillaume.dufr...@free.fr>
Date: Wed, 17 Sep 2008 00:13:55 -0700 (PDT)
Local: Wed, Sep 17 2008 3:13 am
Subject: Re: Apache Help
Hi All,

I got the same problem : "Manual server updates required" page.
My configuration seems to be more or less the same than daniel.

Some informations about my installation :
Installed on linux Ubuntu server 8.04 with most of the apt-get
features (debian package manager)
reviewboard is checkout in /usr/share
so everything is in /usr/share/reviewboard

My apache configuration is :

<VirtualHost *>
       ServerName review.sharengo.org
       DocumentRoot /usr/share/reviewboard/htdocs

       # Error handlers
       ErrorDocument 500 /errordocs/500.html

       # Serve django pages
       <Location "/">
               PythonPath "['/usr/lib/python2.5/site-packages/django']
+ ['/usr/share'] + ['/usr/share/reviewboard'] + ['/usr/share/
reviewboard/djblets'] + sys.path"
               SetEnv DJANGO_SETTINGS_MODULE reviewboard.settings
               SetHandler mod_python
               PythonHandler django.core.handlers.modpython
               PythonAutoReload Off
               PythonDebug Off
               # If you run multiple mod_python sites in the same
apache
               # instonce, uncomment this line:
               PythonInterpreter reviewboard
       </Location>

       # Serve static media without running it through mod_python
       # (overrides the above)
       <Location "/media">
               SetHandler None
       </Location>
       <Location "/errordocs">
               SetHandler None
       </Location>

       # Alias static media requests to filesystem
       Alias /media /usr/share/reviewboard/htdocs/media
       Alias /errordocs /usr/share/reviewboard/htdocs/errordocs
</VirtualHost>

On 17 sep, 06:30, "Terry Rankine" <terry.rank...@gmail.com> wrote:


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Christian Hammond  
View profile  
 More options Sep 17 2008, 3:47 am
From: "Christian Hammond" <chip...@chipx86.com>
Date: Wed, 17 Sep 2008 00:47:40 -0700
Local: Wed, Sep 17 2008 3:47 am
Subject: Re: Apache Help

In both your cases, which instructions is it showing for the manual server
updates? There are currently two things that can trigger this page. One
being that /media/uploaded/images is not a directory, and one being that
syncdb hasn't been ran.

I'm assuming the former in both your cases.

Christian

--
Christian Hammond - chip...@chipx86.com
VMware, Inc.

On Wed, Sep 17, 2008 at 12:13 AM, Guillaume <guillaume.dufr...@free.fr>wrote:


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Guillaume Dufrêne  
View profile  
 More options Sep 17 2008, 4:41 am
From: Guillaume Dufrêne <guillaume.dufr...@free.fr>
Date: Wed, 17 Sep 2008 10:41:25 +0200
Local: Wed, Sep 17 2008 4:41 am
Subject: Re: Apache Help

Hi Christian,
thanks for your reply,

Both errors were reported by this page for me.
So, I created the /media/uploaded/images
I "chowned" this new directory to www-data which is the apache user
I executed the ./manage.sh syncdb
I reloaded apache (I don't really think it was necessary)

No more error about the images directory but it is still said that i
need to sync my db ... ever, and ever ...

--
Guillaume.


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
fharrison  
View profile  
 More options Sep 17 2008, 4:58 am
From: fharrison <fharri...@frd.co.uk>
Date: Wed, 17 Sep 2008 01:58:14 -0700 (PDT)
Local: Wed, Sep 17 2008 4:58 am
Subject: Re: Apache Help
Did the sync give you any warnings?

I also got both errors when I updated yesterday. The directories in
question needs to be owned or read/writeable by the Apache user; a
quick hack (and it is a hack) is to (from media) "chmod 777 -R
uploaded".

F.

On Sep 17, 9:41 am, Guillaume Dufrêne <guillaume.dufr...@free.fr>
wrote:


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Guillaume Dufrêne  
View profile  
 More options Sep 17 2008, 6:16 am
From: Guillaume Dufrêne <guillaume.dufr...@free.fr>
Date: Wed, 17 Sep 2008 12:16:38 +0200
Local: Wed, Sep 17 2008 6:16 am
Subject: Re: Apache Help
Hi,

About rights, I made a chown of my media dir ...
Do i need to do a chmod 777 on it ?

ps of my server :
root     31830  0.0  0.3  26248  9764 ?        Ss   Sep16   0:01
/usr/sbin/apache2 -k start
www-data 25219  0.2  0.4  33816 14636 ?        S    11:39   0:04  \_
/usr/sbin/apache2 -k start
www-data 25969  0.2  0.4  33908 13852 ?        S    11:51   0:02  \_
/usr/sbin/apache2 -k start

As you can see my apache is run by www-data user

ls -al htdocs/media
drwxr-xr-x  9 www-data root 4096 2008-09-16 16:13 .
drwxr-xr-x  5 www-data root 4096 2008-09-16 16:13 ..
drwxr-xr-x  6 www-data root 4096 2008-09-16 16:13 admin
drwxr-xr-x  6 www-data root 4096 2008-09-16 16:13 djblets
drwxr-xr-x  6 www-data root 4096 2008-09-16 16:12 rb
drwxr-xr-x  6 www-data root 4096 2008-09-16 16:13 .svn
drwxr-xr-x  4 www-data root 4096 2008-09-16 17:57 uploaded
drwxr-xr-x 28 www-data root 4096 2008-09-16 16:12 yui
drwxr-xr-x  3 www-data root 4096 2008-09-16 16:12 yui-ext

And as you can see this directory is owned by www-data this read/write
privileges.

./manage.py syncdb
Installing json fixture 'initial_data' from
'/usr/share/reviewboard/scmtools/fixtures'.
Installed 6 object(s) from 1 fixture(s)

No warning at all ...

I'm still confused about this error.

--
Guillaume.


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Daniel Wexler  
View profile  
 More options Sep 17 2008, 7:49 am
From: Daniel Wexler <danwex...@gmail.com>
Date: Wed, 17 Sep 2008 04:49:25 -0700 (PDT)
Local: Wed, Sep 17 2008 7:49 am
Subject: Re: Apache Help
Thanks for the replies.  Good to see this is happening to others!

The tan manual server updates required box is followed by a single
light blue "Database changes" box that indicates that the schema has
changed since my last upgrade and I need to run syncdb.

I get no errors when I run syncdb.  Even better, there has been no
upgrade.  This is a completely fresh install.

Also, reviewboard works properly when I use the built-in server on
port 8000.  I only get these messages via Apache on port 80.

My directories are all chmod'ed 777.

I think that, like Guillaume, I initially had the "images" error, but
that's gone away.

On Sep 17, 3:16 am, Guillaume Dufrêne <guillaume.dufr...@free.fr>
wrote:


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Christian Hammond  
View profile  
 More options Sep 17 2008, 8:07 am
From: "Christian Hammond" <chip...@chipx86.com>
Date: Wed, 17 Sep 2008 05:07:22 -0700
Local: Wed, Sep 17 2008 8:07 am
Subject: Re: Apache Help

How did you guys install Review Board and Djblets?

Please try the following and report the output.

Run:

$ ./manage.py shell

>>> from djblets.siteconfig.models import SiteConfiguration
>>> siteconfig = SiteConfiguration.objects.get_current()

This will help to track it down.

Christian

--
Christian Hammond - chip...@chipx86.com
VMware, Inc.


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Daniel Wexler  
View profile  
 More options Sep 17 2008, 8:16 am
From: Daniel Wexler <danwex...@gmail.com>
Date: Wed, 17 Sep 2008 05:16:51 -0700 (PDT)
Local: Wed, Sep 17 2008 8:16 am
Subject: Re: Apache Help

On Sep 17, 5:07 am, "Christian Hammond" <chip...@chipx86.com> wrote:

> How did you guys install Review Board and Djblets?

Reviewboard is installed from scratch in this case, using sqlite and
the standard instructions on Getting Started.  Django was installed
from an egg file using an egg file and easy_install (IIRC).  This is
using Python25 on Windows XP.

> Please try the following and report the output.

> Run:

> $ ./manage.py shell

> >>> from djblets.siteconfig.models import SiteConfiguration
> >>> siteconfig = SiteConfiguration.objects.get_current()

No errors, and no output:

C:\reviewboard>manage.py shell
Python 2.5 (r25:51908, Sep 19 2006, 09:52:17) [MSC v.1310 32 bit
(Intel)] on win
32
Type "help", "copyright", "credits" or "license" for more information.
(InteractiveConsole)

>>> from djblets.siteconfig.models import SiteConfiguration
>>> siteconfig = SiteConfiguration.objects.get_current()

Reading through the Django/mod_python docs, it does indicate that
Django eats the error messages.  Is there any place to look to see the
errors or any way to enable error reporting?  I've turned on
PythonDebug in my httpd.conf file to no avail.  I also tried following
the egg-specific instructions in the Django mod_python setup
instructions.  I created a writable directory in "C:/reviewboard/
enable_eggs" and added the following lines to my httpd.conf file
outside the VirtualHost block:

PythonInterpreter reviewboard
PythonImport "c:/reviewboard/enable_eggs.py" reviewboard

And then, inside the VirtualHost block, I enable the PythonInterpreter
with:

                PythonInterpreter reviewboard

No change.  Same problem.


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Daniel Wexler  
View profile  
 More options Sep 17 2008, 8:19 am
From: Daniel Wexler <danwex...@gmail.com>
Date: Wed, 17 Sep 2008 05:19:27 -0700 (PDT)
Local: Wed, Sep 17 2008 8:19 am
Subject: Re: Apache Help
In the same "manage.py shell" I tried printing the siteconfig:

>>> print siteconfig

maki.nvidia.com/ (version 0.9)

It is kinda odd that it says version 0.9 since I installed Django
1.0...

On Sep 17, 5:16 am, Daniel Wexler <danwex...@gmail.com> wrote:


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
fharrison  
View profile  
 More options Sep 17 2008, 8:33 am
From: fharrison <fharri...@frd.co.uk>
Date: Wed, 17 Sep 2008 05:33:45 -0700 (PDT)
Local: Wed, Sep 17 2008 8:33 am
Subject: Re: Apache Help
Daniel, are you on Windows? If so how are chmoding, cygwin, colinux?
Chmoding via cygwin won't work, you'll need to use the Windows native
security settings; to give whatever the Apache user is read/write
perms, do it via the folder's properties (right-click->properties-
>'Security' tab). Btw, I accidentally changed the security settings on

the wrong directory "reviewboard\uploaded" instead of "reviewboard
\htdocs\media\uploaded". That confused me for a couple of minutes. :(

I'm a bit confused though, are you still getting the "Database
changes" box, even after a sync? Have you tried "manage.py evolve"?

Guillaume, are you sure you've created the images directory?

F.

On Sep 17, 12:49 pm, Daniel Wexler <danwex...@gmail.com> wrote:


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Daniel Wexler  
View profile  
 More options Sep 17 2008, 9:02 am
From: Daniel Wexler <danwex...@gmail.com>
Date: Wed, 17 Sep 2008 06:02:58 -0700 (PDT)
Local: Wed, Sep 17 2008 9:02 am
Subject: Re: Apache Help
Thanks for sticking with me, but I still have the same issue.

Yes, I'm on Windows and I was using cygwin's chmod/chown commands.  I
just tried using the Window's security settings, as you suggested, but
that didn't change anything.  I still get the "Database changes" box.

The syncdb command never told me to do an evolve, but I had tried it
before, just in case, and I tried it again now, and it just returns
"No evolution required."

Yes, I still get the Database changes box, even after I run syncdb
with no errors.  The only output from syncdb is:

C:\reviewboard>manage.py evolve
No evolution required.

C:\reviewboard>manage.py syncdb
Installing json fixture 'initial_data' from 'C:\reviewboard\scmtools
\fixtures'.
Installed 6 object(s) from 1 fixture(s)

On Sep 17, 5:33 am, fharrison <fharri...@frd.co.uk> wrote:


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Guillaume Dufrêne  
View profile  
 More options Sep 17 2008, 9:40 am
From: Guillaume Dufrêne <guillaume.dufr...@free.fr>
Date: Wed, 17 Sep 2008 15:40:15 +0200
Local: Wed, Sep 17 2008 9:40 am
Subject: Re: Apache Help

Yes I do :

ls -al htdocs/media/uploaded/
drwxr-x--- 4 www-data root 4096 2008-09-16 17:57 .
drwxr-xr-x 9 www-data root 4096 2008-09-16 16:13 ..
drwxr-x--- 2 www-data root 4096 2008-09-16 17:57 images
drwxr-x--- 6 www-data root 4096 2008-09-16 16:13 .svn

I tried to chmod 777 the uploaded directory without any positive result ...

About ./manage.py shell :
Python 2.5.2 (r252:60911, Apr 21 2008, 11:12:42)
[GCC 4.2.3 (Ubuntu 4.2.3-2ubuntu7)] on linux2
Type "help", "copyright", "credits" or "license" for more information.
(InteractiveConsole)
 >>> from djblets.siteconfig.models import SiteConfiguration
 >>> siteconfig = SiteConfiguration.objects.get_current()
 >>>

no output ...

About the way I installed reviewboard, I wrote a common procedure to
install it on ubuntu distrib :

apt-get install libapache2-mod-python patchutils memcached libjpeg62-dev
libfreetype6-dev python-all-dev gcc python-svn
cd /usr/share
svn checkout http://reviewboard.googlecode.com/svn/trunk/reviewboard
cd /tmp
wget http://www.djangoproject.com/download/1.0/tarball/
tar zxvf Django-1.0.tar.gz
cd Django-1.0
python setup.py install
cd /tmp
wget http://effbot.org/downloads/Imaging-1.1.6.tar.gz
cd Imaging-1.1.6
python setup.py install
cd /usr/share/reviewboard
cp settings_local.py.tmpl settings_local.py
vi settings_local.py

Change configuration :
DATABASE_ENGINE = 'sqlite3'
DATABASE_NAME = 'reviewboard.sqlite'

save / exit file

./manage.py syncdb
reply yes and add an admin account
You can now test your installation this ./manage.py runserver and access
http://YOUR_SERVER:8000

create an images directory in media/uploaded :
mkdir -p htdocs/media/uploaded/images

change owner of this directory to the apache user :
chown -R www-data htdocs

create a new site configuration into /etc/apache2/sites-available/ :
<VirtualHost *>
    ServerName review.sharengo.org
    DocumentRoot /usr/share/reviewboard/htdocs

    # Error handlers
    ErrorDocument 500 /errordocs/500.html

    # Serve django pages
    <Location "/">
        PythonPath "['/usr/lib/python2.5/site-packages/django'] +
['/usr/share'] + ['/usr/share/reviewboard'] +
['/usr/share/reviewboard/djblets'] + sys.path"
        SetEnv DJANGO_SETTINGS_MODULE reviewboard.settings
        SetHandler mod_python
        PythonHandler django.core.handlers.modpython
        PythonAutoReload Off
        PythonDebug Off
        # If you run multiple mod_python sites in the same apache
        # instonce, uncomment this line:
        PythonInterpreter reviewboard
    </Location>

    # Serve static media without running it through mod_python
    # (overrides the above)
    <Location "/media">
        SetHandler None
    </Location>
    <Location "/errordocs">
        SetHandler None
    </Location>

    # Alias static media requests to filesystem
    Alias /media /usr/share/reviewboard/htdocs/media
    Alias /errordocs /usr/share/reviewboard/htdocs/errordocs
</VirtualHost>

enable new site configuration :
a2ensite review.sharengo.org

reload apache configuration :
/etc/init.d/apache2 reload


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Ben  
View profile  
 More options Sep 17 2008, 12:54 pm
From: Ben <al.ya...@gmail.com>
Date: Wed, 17 Sep 2008 09:54:02 -0700 (PDT)
Local: Wed, Sep 17 2008 12:54 pm
Subject: Re: Apache Help
I guess your reviewboard is not able to find the database ...

I got the same early today running my reviewboard via wsgi, and
indicating a relative path to the sqlite file.

Indicating the absolute path to the sqlite database solved the issue,
but then I realized I did not wanted it rooted on my server, but with
a SITE_ROOT value, and switched to mod_python (which did not solved my
problem, but I did not switched back to wsgi yet).

In a nuttshel: reviewboard were not able to find my database and
continuously asking me to recreate it, I gave him the absolute path
and it solved it.

Regards,
Ben

On Sep 17, 3:40 pm, Guillaume Dufrêne <guillaume.dufr...@free.fr>
wrote:


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Daniel Wexler  
View profile  
 More options Sep 17 2008, 2:12 pm
From: Daniel Wexler <danwex...@gmail.com>
Date: Wed, 17 Sep 2008 11:12:10 -0700 (PDT)
Local: Wed, Sep 17 2008 2:12 pm
Subject: Re: Apache Help
Aha!  That's the ticket.  Thanks!

Specifically, I had to change the DATABASE_NAME value in
settings_local.py to the absolute path to my sqlite database: "C:/
reviewboard/reviewboard.sqlite"

Now Apache is working for me!  W00t!

Thanks everyone!

On Sep 17, 9:54 am, Ben <al.ya...@gmail.com> wrote:


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Guillaume Dufrêne  
View profile  
 More options Sep 18 2008, 2:45 am
From: Guillaume Dufrêne <guillaume.dufr...@free.fr>
Date: Thu, 18 Sep 2008 08:45:44 +0200
Local: Thurs, Sep 18 2008 2:45 am
Subject: Re: Apache Help
Yes, good news, it also work for me ! :-D
Documentation should be completed to underline that point !
I know it is specific to sqlite DB configuration but still ...

I think I will also take a look at post-review configuration.
It's Funny to see that Daniel fallow the same track ;-)

--
Guillaume.


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Christian Hammond  
View profile  
 More options Sep 18 2008, 4:47 am
From: "Christian Hammond" <chip...@chipx86.com>
Date: Thu, 18 Sep 2008 01:47:13 -0700
Local: Thurs, Sep 18 2008 4:47 am
Subject: Re: Apache Help

I'm glad you guys got this working. I'll update the FAQ to include this
information.

Christian

--
Christian Hammond - chip...@chipx86.com
VMware, Inc.

On Wed, Sep 17, 2008 at 11:45 PM, Guillaume Dufrêne <


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
End of messages
« Back to Discussions « Newer topic     Older topic »