I recently attempted to install Apache webserver for local development and had a tough time getting it to start as it couldnt connect to port 80 on localhost. I found out that the problem was iTunes and all the stupid services it installs. somehow iTunes had taken over my port 80 on 127.0.0.1. so before sarting Apache you need to go into task manager and stop all the pesky apple services!! Anyway so the process for installing and configurig Apache for Virtual Host names on IIS goes as follows:
1) Make sure all iTunes services have stopped
2) Install Apache choosing localhost as your domain names and admin@localhost for your server name and use default settings for every thing else.
3) change the following in the httpd.conf file :
#LoadModule vhost_alias_module modules/mod_vhost_alias.so
to
LoadModule vhost_alias_module modules/mod_vhost_alias.so
and
# Virtual hosts
# Include conf/extra/httpd-vhosts.conf<span> </span>
to
# Virtual hosts
Include conf/extra/httpd-vhosts.conf
4) For each vhost add the following to the \conf\extra\httpd-vhosts.conf file and delete whatever is there. For a site called tacsite I have done the following:
<VirtualHost *:80>
DocumentRoot "D:\((SERVER))\03 BUILD\TAC 20070906 TAC WEBSITE\source"
ServerName tacsite ServerAlias tacsite
</VirtualHost>
<Directory "D:\((SERVER))\03 BUILD\TAC 20070906 TAC WEBSITE\source">
AllowOverride None
Options None
Order allow,deny
Allow from all
</Directory>
5) Then alter your hosts file (C:\\WINDOWS\system32\drivers\etc\hosts) adding the following:
127.0.0.1 tacsite
6) then point your browser to the following URL: ‘http://tacsite/‘ or as I do simply type ‘tacsite‘ into mozilla!
Compiling Flex Classes in Flash CS3
Yes it is possible and these folks here have found out a way to do it:
http://labs.qi-ideas.com/2007/12/25/using-flex-compiled-code-within-flash/
So happy happy happy…….
Simple. Logical of course the classes are available because of the way flash works. I was going to spend two days rewriting the friggin rpc classes!! Very interesting stuff they’re doing over there….