Well its been a while but I have revisited configuring this
I have got some way to getting it working but still have issues
i have samba running on the nix server and a windows share of \\mydomaincontroller\websitename
I have an entry in /etc/fstab as follows:-
//mydomaincontroller/websitename /mnt/Websites/websitename cifs user,uid=500,rw,suid,username=myuser,password=mypassword 0 0
this works in that i can now cd to /mnt/Websites/websitename and can view the files within
I have an entry in the httpd.conf as follows:-
<Directory "/mnt/Websites/mywebsitename">
Options Indexes Includes FollowSymLinks
AllowOverride None
Allow from all
Order allow,deny
</Directory>
I can fire up a browser on my pc and enter in
http://192.168.1.4/mywebsitename/ and i get a blank white page, i have a few test html files in the mywebsitename root folder but again if i try and view these in my browser all i get is a blank page, if i view source it is empty
This would make me think its a permissions issue
if i list the files in the /mnt/Websites folder i see the mywebsitename folder and it is owned by the uid 500 user account with group of root and 777 permissions, the files within the mywebsitename folder are the same
any pointers much appreciated ??