downat420
November 30th, 2007, 02:53 PM
Server Specs:
Ubuntu 7.10
Apache2
php5
mysql
I use an open source social networking site called dolphin from boonex.com. I am hosting it myself until it is developed. Here is the problem:
When a user joins my site (so far only test users) the user information is saved in the mysql database but the profile is not created. For instance the site is located in:
/var/www/sitename/community
when i attempt to view a user profile via the web i get a 404 error and this is the link.
www.sitename.com/community/profile
the problem is the profile folder is not being created in:
/var/www/sitename/community
Here is my config file:
user www-data
group www-data
NameVirtualHost *:80
<VirtualHost *:80>
ServerAdmin webmaster@localhost
ServerName www.sitename.com
ServerAlias *.sitename.com
DocumentRoot /var/www/sitename
ErrorLog /var/www/sitename/error_log
<Directory /var/www/sitename/>
Options FollowSymLinks
AllowOverride None
</Directory>
<Directory /var/www/sitename/>
Options Indexes FollowSymLinks MultiViews
AllowOverride All
Order allow,deny
allow from all
</Directory>
yatta yatta
end of config file.
Thanks in advance,
zach
Ubuntu 7.10
Apache2
php5
mysql
I use an open source social networking site called dolphin from boonex.com. I am hosting it myself until it is developed. Here is the problem:
When a user joins my site (so far only test users) the user information is saved in the mysql database but the profile is not created. For instance the site is located in:
/var/www/sitename/community
when i attempt to view a user profile via the web i get a 404 error and this is the link.
www.sitename.com/community/profile
the problem is the profile folder is not being created in:
/var/www/sitename/community
Here is my config file:
user www-data
group www-data
NameVirtualHost *:80
<VirtualHost *:80>
ServerAdmin webmaster@localhost
ServerName www.sitename.com
ServerAlias *.sitename.com
DocumentRoot /var/www/sitename
ErrorLog /var/www/sitename/error_log
<Directory /var/www/sitename/>
Options FollowSymLinks
AllowOverride None
</Directory>
<Directory /var/www/sitename/>
Options Indexes FollowSymLinks MultiViews
AllowOverride All
Order allow,deny
allow from all
</Directory>
yatta yatta
end of config file.
Thanks in advance,
zach