What is WebDNA
WebDNA and BioType
Download WebDNA
WebDNA resources
|
Hi Jim,Do you have =any good advise as to why this file constantly is getting overwritten by =the Server?=09=09=09/Library/Server/Web/Config/apache2/httpd_server_app.conf=
Everything from your chapter 6, 7, 8 =and 9 is getting deleted constanly. How can I avoid =that./Palle<=div>On 20/02/2014, at 16.44, Jim Lanford <jlwc@lanford.com> =wrote:If you =can set your Mac to have a fixed IP inside your router =---------------------------------------------------------This message is sent to you because you are subscribed tothe mailing list(I=92ve never seen this not work as long as you set it =to a address outside DHCP range)Then set one of your domain =names to something like dna.name.com -> = 192.168.1.150 (or what ever your mac is)and it =works. My Mac has one address and parallels/linux on that same =Mac has another, so I have development sites on both with different =prefixes.Hope this =helps- =JimOn Feb 20, 2014, at 4:43 AM, =Palle Bo Nielsen <powerpalle@powerpalle.dk> =wrote:---------------------------------------------------------This message is sent to you because you are subscribed tothe mailing listHi Brian,How to you =do configure STEP 4+7 if you do not have internet domain name but are =only using the server for development and as such only have a local =IP-address (192.168.x.x) ?Basically I can not =get my Maverick Server running with WebDNA even though you have written =an excellent walk through=85 It just might be the domain vs ip =issue./Palle=On 04/01/2014, at 23.48, Brian Wachter <bwachter@stoneport.com> =wrote:Installing WebDNA 7 on OSX Mavericks Server - =Instructions I just went through the process of upgrading my =Mac Mini server from OS X 10.8 Mtn Lion Server to 10.9 Mavericks Server, =which broke my WebDNA installation, so I wanted to bring this to the =attention of anyone else who may be wanting to do the same thing. The =two main culprits were:---------------------------------------------------------This message is sent to you because you are subscribed tothe mailing list
- My Java Runtime installation was =deleted with the Mavericks installation
- My mod_fastcgi.so file got deleted =with the Mavericks installation
I created detailed instructions for installing WebDNA 7 FastCGI under =OSX 10.9 Mavericks Server, which are posted below. Please note that this =applies specifically to Mavericks SERVER. The process is similar if =you=92re using client, but the apache config files names and locations =are a bit different. Hopefully this information is helpful to =someone.
Brian Wachter
=--------------------------------------------------------------------------=-------------
Date: January 4, 2014
Topic: WebDNA 7 FastCGI installation process for OSX Mavericks =SERVER:
Step 1:
If you=92re UPGRADING from an earlier version of OSX, first copy =mod_fastcgi.so located at /usr/libexec/apache2 since the Mavericks =install will delete this file if it exists.
Step 2:
Install mod_fastcgi.so by placing a copy of the file at =/usr/libexec/apache2/
Set permissions on mod_fastcgi.so to be the same as other .so files in =that directory.
(i.e., system=3Dread/write,wheel=3Dreadonly,everyone=3Dreadonly)
Step 3:
Install JAVA for OS X 2013-005
This is Java Runtime Edition 6 (v1.6.0_65)
Verify the install by typing =93java -version=94 at the terminal command =line
More information at: http://support.apple.com/kb/DL=1572
NOTE: At the time of this writing, Java Runtime 7 Update 45 is the =latest version available from the Oracle web site. However, this did not =work and I reverted to version 6. I=92m not sure why, but I suspect it =is an issue with where Java is installed.
Step 4:
For EACH web site domain (i.e., virtual host), place a copy of the =/WebDNA folder here:
/Library/Server/Web/Data/Sites/<myDomainDirectory>/
Step 5:
Place a copy of WebDNA.fcgi executable inside each of the /WebDNA =folders
chmod 755 WebDNA.fcgi
Step 6:
Open your httpd_server_app.conf =(/Library/Server/Web/Config/apache2/httpd_server_app.conf) and make sure =that both of the following modules are loaded. The mod_rewrite.so should =be loaded by default, but you will need to add the entry for loading =mod_fastcgi.so
LoadModule rewrite_module = libexec/apache2/mod_rewrite.so
LoadModule fastcgi_module = libexec/apache2/mod_fastcgi.so
Step 7:
Open your httpd_server_app.conf and add these lines...
<#-----------------------
<IfModule mod_fastcgi.c>
FastCGIServer =/Library/Server/Web/Data/Sites/<myDomainDirectory1>/WebDNA/WebDNA.fc=gi -idle-timeout 60 -processes 1
FastCGIServer =/Library/Server/Web/Data/Sites/<myDomainDirectory2>/WebDNA/WebDNA.fc=gi -idle-timeout 60 -processes 1
FastCGIServer =/Library/Server/Web/Data/Sites/<myDomainDirectory3>/WebDNA/WebDNA.fc=gi -idle-timeout 60 -processes 1
</IfModule>
#-----------------------
=85 I did this just after the following directive:
<IfModule mime_module>
=85
</IfDefine>
Step 8:
To hide some specific WebDNA-related files, add these lines in the =httpd_server_app.conf, just below the lines you added in Step 7.
#-----------------------
<FilesMatch ".*\.(db|inc|conf|ini)$">
Deny from all = &n=bsp; &nbs=p; = &n=bsp; &nbs=p;
</FilesMatch>
#-----------------------
Step 9:
Create a file to be included by your virtual hosts. To do this, follow =these steps:
1. Create a directory called =93webdna_includes=94 located at =/Library/Server/Web/Config/apache2/
2. Set permissions on this directory to be =system=3Dread/write,wheel=3Dreadonly,everyone=3Dreadonly
3. Create a plain text file named =93webdna_vhost.conf=94 inside this =directory with the following contents:
<IfModule mod_fastcgi.c>
Action webdna-fastcgi =/WebDNA/WebDNA.fcgi
AddHandler =webdna-fastcgi .dna
AddHandler =webdna-fastcgi .html
</IfModule>
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteRule .* - =[E=3DHTTP_AUTHORIZATION:%{HTTP:Authorization},L]
</IfModule>
NOTE: The reason you make the include file rather than put the =directives directly in your virtual host configuration file is that =Server.app will sometimes wipe these directives when reconfiguring web =services. If you use the include file, Server.app will not touch the =include call.
Step 10:
Edit each configuration file for your virtual hosts to include the call =to the file you created in Step 9. The virtual host config files are =located at /Library/Server/Web/Config/apache2/Sites/ and they take the =form shown below for non-SSL sites and SSL-enabled sites, =respectively.
0000_X.X.X.X_80_<myDomainDirectory>.conf
0000_X.X.X.X_443_<myDomainDirectory>.conf
So, open the virtual host config file and add the following line at the =very end just before the closing </VirtualHost> tag.
Include =/Library/Server/Web/Config/apache2/webdna_includes/webdna_vhost.conf
Step 11:
Make sure that you add index.dna as a default index type for each =WebDNA-enabled site you host. Do this in Mavericks by opening =Server.app, selecting Websites under Services in the left-side pane, =open your domain to edit and then select the "edit" button next to ="Index Files:". In the drop-down sheet, select + and add "index.dna" to =the list.
Step 12:
Make sure =93dna=94 is included in your MIME types. To do this, edit the =file =93mime.types=94 located at /private/etc/apache2/ and add the =following line:
application/vnd.dna dna
Step 13:
Restart apache by toggling the Websites service Off/On or by typing the =following command in terminal.app
apachectl restart
Step 14:
Connect your browser to http://www.dom=ain1.com/WebDNA/Admin/AdminPrefs.dna to manage site1,
http://www.dom=ain2.com/WebDNA/Admin/AdminPrefs.dna to manage site2 etc...
The default login is =93admin=94 and the default password is =93admin=94
If the login fails, verify that you have the following lines in your =virtual host configuration file (either directly or via an include =file):
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteRule .* - =[E=3DHTTP_AUTHORIZATION:%{HTTP:Authorization},L]
</IfModule>
That should do it.
=--------------------------------------------------------------------------=-------------.To unsubscribe, E-mail to: archives: http://mail.webdna.us/l=ist/talk@webdna.usBug Reporting: support@webdna.us .To unsubscribe, E-mail to: archives: http://mail.webdna.us/l=ist/talk@webdna.usBug Reporting: support@webdna.us .To unsubscribe, E-mail to: archives: http://mail.webdna.us/l=ist/talk@webdna.usBug Reporting: support@webdna.us
DOWNLOAD WEBDNA NOW!
The WebDNA community talk-list is the best place to get some help: several hundred extremely proficient programmers with an excellent knowledge of WebDNA and an excellent spirit will deliver all the tips and tricks you can imagine...