PHP refuses to be rendered

Hi,
I've used the default PHP installation on OSX with no problems in the past (after uncommenting the 2 lines in httpd and enabling Personal Web Sharing), but after a recent reinstallation of the operating system (having re-updated all software) PHP refuses to render. HTML files render fine, but when I load up a PHP file, its source is displayed instead of being properly rendered. I like to think I know what I'm doing, but I'm befuddled :/
Any help would be much appreciated.
Here's my httpd.conf, if it helps:
<pre>
## httpd.conf -- Apache HTTP server configuration file
# Based upon the NCSA server configuration files originally by Rob McCool.
# This is the main Apache server configuration file. It contains the
# configuration directives that give the server its instructions.
# See <URL:<a class="jive-link-external-small" href="http://">http://httpd.apache.org/docs/> for detailed information about
# the directives.
# Do NOT simply read the instructions in here without understanding
# what they do. They're here only as hints or reminders. If you are unsure
# consult the online docs. You have been warned.
# After this file is processed, the server will look for and process
# /private/etc/httpd/srm.conf and then /private/etc/httpd/access.conf
# unless you have overridden these with ResourceConfig and/or
# AccessConfig directives here.
# The configuration directives are grouped into three basic sections:
# 1. Directives that control the operation of the Apache server process as a
# whole (the 'global environment').
# 2. Directives that define the parameters of the 'main' or 'default' server,
# which responds to requests that aren't handled by a virtual host.
# These directives also provide default values for the settings
# of all virtual hosts.
# 3. Settings for virtual hosts, which allow Web requests to be sent to
# different IP addresses or hostnames and have them handled by the
# same Apache server process.
# Configuration and logfile names: If the filenames you specify for many
# of the server's control files begin with "/" (or "drive:/" for Win32), the
# server will use that explicit path. If the filenames do not begin
# with "/", the value of ServerRoot is prepended -- so "logs/foo.log"
# with ServerRoot set to "/usr/local/apache" will be interpreted by the
# server as "/usr/local/apache/logs/foo.log".
### Section 1: Global Environment
# The directives in this section affect the overall operation of Apache,
# such as the number of concurrent requests it can handle or where it
# can find its configuration files.
# ServerType is either inetd, or standalone. Inetd mode is only supported on
# Unix platforms.
ServerType standalone
# ServerRoot: The top of the directory tree under which the server's
# configuration, error, and log files are kept.
# NOTE! If you intend to place this on an NFS (or otherwise network)
# mounted filesystem then please read the LockFile documentation
# (available at <URL:<a class="jive-link-external-small" href="http://">http://www.apache.org/docs/mod/core.html#lockfile>);
# you will save yourself a lot of trouble.
ServerRoot "/usr"
# The LockFile directive sets the path to the lockfile used when Apache
# is compiled with either USEFCNTL_SERIALIZEDACCEPT or
# USEFLOCK_SERIALIZEDACCEPT. This directive should normally be left at
# its default value. The main reason for changing it is if the logs
# directory is NFS mounted, since the lockfile MUST BE STORED ON A LOCAL
# DISK. The PID of the main server process is automatically appended to
# the filename.
#LockFile "/private/var/run/httpd.lock"
# PidFile: The file in which the server should record its process
# identification number when it starts.
PidFile "/private/var/run/httpd.pid"
# ScoreBoardFile: File used to store internal server process information.
# Not all architectures require this. But if yours does (you'll know because
# this file will be created when you run Apache) then you must ensure that
# no two invocations of Apache share the same scoreboard file.
ScoreBoardFile "/private/var/run/httpd.scoreboard"
# In the standard configuration, the server will process httpd.conf (this
# file, specified by the -f command line option), srm.conf, and access.conf
# in that order. The latter two files are now distributed empty, as it is
# recommended that all directives be kept in a single file for simplicity.
# The commented-out values below are the built-in defaults. You can have the
# server ignore these files altogether by using "/dev/null" (for Unix) or
# "nul" (for Win32) for the arguments to the directives.
#ResourceConfig /private/etc/httpd/srm.conf
#AccessConfig /private/etc/httpd/access.conf
# Timeout: The number of seconds before receives and sends time out.
Timeout 300
# KeepAlive: Whether or not to allow persistent connections (more than
# one request per connection). Set to "Off" to deactivate.
KeepAlive On
# MaxKeepAliveRequests: The maximum number of requests to allow
# during a persistent connection. Set to 0 to allow an unlimited amount.
# We recommend you leave this number high, for maximum performance.
MaxKeepAliveRequests 100
# KeepAliveTimeout: Number of seconds to wait for the next request from the
# same client on the same connection.
KeepAliveTimeout 15
# Server-pool size regulation. Rather than making you guess how many
# server processes you need, Apache dynamically adapts to the load it
# sees --- that is, it tries to maintain enough server processes to
# handle the current load, plus a few spare servers to handle transient
# load spikes (e.g., multiple simultaneous requests from a single
# Netscape browser).
# It does this by periodically checking how many servers are waiting
# for a request. If there are fewer than MinSpareServers, it creates
# a new spare. If there are more than MaxSpareServers, some of the
# spares die off. The default values are probably OK for most sites.
MinSpareServers 5
MaxSpareServers 10
# Number of servers to start initially --- should be a reasonable ballpark
# figure.
StartServers 5
# Limit on total number of servers running, i.e., limit on the number
# of clients who can simultaneously connect --- if this limit is ever
# reached, clients will be LOCKED OUT, so it should NOT BE SET TOO LOW.
# It is intended mainly as a brake to keep a runaway server from taking
# the system with it as it spirals down...
MaxClients 150
# MaxRequestsPerChild: the number of requests each child process is
# allowed to process before the child dies. The child will exit so
# as to avoid problems after prolonged use when Apache (and maybe the
# libraries it uses) leak memory or other resources. On most systems, this
# isn't really needed, but a few (such as Solaris) do have notable leaks
# in the libraries. For these platforms, set to something like 10000
# or so; a setting of 0 means unlimited.
# NOTE: This value does not include keepalive requests after the initial
# request per connection. For example, if a child process handles
# an initial request and 10 subsequent "keptalive" requests, it
# would only count as 1 request towards this limit.
MaxRequestsPerChild 0
# Listen: Allows you to bind Apache to specific IP addresses and/or
# ports, instead of the default. See also the <VirtualHost>
# directive.
#Listen 3000
#Listen 12.34.56.78:80
# BindAddress: You can support virtual hosts with this option. This directive
# is used to tell the server which IP address to listen to. It can either
# contain "*", an IP address, or a fully qualified Internet domain name.
# See also the <VirtualHost> and Listen directives.
#BindAddress *
# Dynamic Shared Object (DSO) Support
# To be able to use the functionality of a module which was built as a DSO you
# have to place corresponding `LoadModule' lines at this location so the
# directives contained in it are actually available before they are used.
# Please read the file http://httpd.apache.org/docs/dso.html for more
# details about the DSO mechanism and run `httpd -l' for the list of already
# built-in (statically linked and thus always available) modules in your httpd
# binary.
# Note: The order in which modules are loaded is important. Don't change
# the order below without expert advice.
# Example:
# LoadModule foo_module libexec/mod_foo.so
#LoadModule vhostaliasmodule libexec/httpd/modvhostalias.so
#LoadModule env_module libexec/httpd/mod_env.so
LoadModule configlogmodule libexec/httpd/modlogconfig.so
#LoadModule mimemagicmodule libexec/httpd/modmimemagic.so
LoadModule mime_module libexec/httpd/mod_mime.so
LoadModule negotiation_module libexec/httpd/mod_negotiation.so
#LoadModule status_module libexec/httpd/mod_status.so
#LoadModule info_module libexec/httpd/mod_info.so
LoadModule includes_module libexec/httpd/mod_include.so
LoadModule autoindex_module libexec/httpd/mod_autoindex.so
LoadModule dir_module libexec/httpd/mod_dir.so
LoadModule cgi_module libexec/httpd/mod_cgi.so
LoadModule asis_module libexec/httpd/mod_asis.so
LoadModule imap_module libexec/httpd/mod_imap.so
LoadModule action_module libexec/httpd/mod_actions.so
#LoadModule speling_module libexec/httpd/mod_speling.so
LoadModule userdir_module libexec/httpd/mod_userdir.so
LoadModule alias_module libexec/httpd/mod_alias.so
LoadModule rewrite_module libexec/httpd/mod_rewrite.so
LoadModule access_module libexec/httpd/mod_access.so
LoadModule auth_module libexec/httpd/mod_auth.so
#LoadModule anonauthmodule libexec/httpd/modauthanon.so
#LoadModule dbmauthmodule libexec/httpd/modauthdbm.so
#LoadModule digest_module libexec/httpd/mod_digest.so
#LoadModule proxy_module libexec/httpd/libproxy.so
#LoadModule cernmetamodule libexec/httpd/modcernmeta.so
#LoadModule expires_module libexec/httpd/mod_expires.so
#LoadModule headers_module libexec/httpd/mod_headers.so
#LoadModule usertrack_module libexec/httpd/mod_usertrack.so
LoadModule logforensicmodule libexec/httpd/modlogforensic.so
#LoadModule uniqueidmodule libexec/httpd/moduniqueid.so
LoadModule setenvif_module libexec/httpd/mod_setenvif.so
#LoadModule dav_module libexec/httpd/libdav.so
#LoadModule ssl_module libexec/httpd/libssl.so
#LoadModule perl_module libexec/httpd/libperl.so
LoadModule php4_module libexec/httpd/libphp4.so
LoadModule hfsapplemodule libexec/httpd/modhfsapple.so
# Reconstruction of the complete module list from all available modules
# (static and shared ones) to achieve correct module execution order.
# [WHENEVER YOU CHANGE THE LOADMODULE SECTION ABOVE UPDATE THIS, TOO]
ClearModuleList
#AddModule modvhostalias.c
#AddModule mod_env.c
AddModule modlogconfig.c
#AddModule modmimemagic.c
AddModule mod_mime.c
AddModule mod_negotiation.c
#AddModule mod_status.c
#AddModule mod_info.c
AddModule mod_include.c
AddModule mod_autoindex.c
AddModule mod_dir.c
AddModule mod_cgi.c
AddModule mod_asis.c
AddModule mod_imap.c
AddModule mod_actions.c
#AddModule mod_speling.c
AddModule mod_userdir.c
AddModule mod_alias.c
AddModule mod_rewrite.c
AddModule mod_access.c
AddModule mod_auth.c
#AddModule modauthanon.c
#AddModule modauthdbm.c
#AddModule mod_digest.c
#AddModule mod_proxy.c
#AddModule modcernmeta.c
#AddModule mod_expires.c
#AddModule mod_headers.c
#AddModule mod_usertrack.c
AddModule modlogforensic.c
#AddModule moduniqueid.c
AddModule mod_so.c
AddModule mod_setenvif.c
#AddModule mod_dav.c
#AddModule mod_ssl.c
#AddModule mod_perl.c
AddModule mod_php4.c
AddModule modhfsapple.c
# ExtendedStatus controls whether Apache will generate "full" status
# information (ExtendedStatus On) or just basic information (ExtendedStatus
# Off) when the "server-status" handler is called. The default is Off.
#ExtendedStatus On
### Section 2: 'Main' server configuration
# The directives in this section set up the values used by the 'main'
# server, which responds to any requests that aren't handled by a
# <VirtualHost> definition. These values also provide defaults for
# any <VirtualHost> containers you may define later in the file.
# All of these directives may appear inside <VirtualHost> containers,
# in which case these default settings will be overridden for the
# virtual host being defined.
# If your ServerType directive (set earlier in the 'Global Environment'
# section) is set to "inetd", the next few directives don't have any
# effect since their settings are defined by the inetd configuration.
# Skip ahead to the ServerAdmin directive.
# Port: The port to which the standalone server listens. For
# ports < 1023, you will need httpd to be run as root initially.
Port 80
# If you wish httpd to run as a different user or group, you must run
# httpd as root initially and it will switch.
# User/Group: The name (or #number) of the user/group to run httpd as.
# . On SCO (ODT 3) use "User nouser" and "Group nogroup".
# . On HPUX you may not be able to use shared memory as nobody, and the
# suggested workaround is to create a user www and use that user.
# NOTE that some kernels refuse to setgid(Group) or semctl(IPC_SET)
# when the value of (unsigned)Group is above 60000;
# don't use Group "#-1" on these systems!
User nobody
Group nobody
# ServerAdmin: Your address, where problems with the server should be
# e-mailed. This address appears on some server-generated pages, such
# as error documents.
ServerAdmin [email protected]
# ServerName allows you to set a host name which is sent back to clients for
# your server if it's different than the one the program would get (i.e., use
# "www" instead of the host's real name).
# Note: You cannot just invent host names and hope they work. The name you
# define here must be a valid DNS name for your host. If you don't understand
# this, ask your network administrator.
# If your host doesn't have a registered DNS name, enter its IP address here.
# You will have to access it by its address (e.g., http://123.45.67.89/)
# anyway, and this will make redirections work in a sensible way.
# 127.0.0.1 is the TCP/IP local loop-back address, often named localhost. Your
# machine always knows itself by this address. If you use Apache strictly for
# local testing and development, you may use 127.0.0.1 as the server name.
#ServerName new.host.name
# DocumentRoot: The directory out of which you will serve your
# documents. By default, all requests are taken from this directory, but
# symbolic links and aliases may be used to point to other locations.
DocumentRoot "/Users/borischerny/Sites"
# Each directory to which Apache has access, can be configured with respect
# to which services and features are allowed and/or disabled in that
# directory (and its subdirectories).
# First, we configure the "default" to be a very restrictive set of
# permissions.
<Directory />
Options FollowSymLinks
AllowOverride None
</Directory>
# Note that from this point forward you must specifically allow
# particular features to be enabled - so if something's not working as
# you might expect, make sure that you have specifically enabled it
# below.
# This should be changed to whatever you set DocumentRoot to.
<Directory "/Users/borischerny/Sites">
# This may also be "None", "All", or any combination of "Indexes",
# "Includes", "FollowSymLinks", "ExecCGI", or "MultiViews".
# Note that "MultiViews" must be named explicitly --- "Options All"
# doesn't give it to you.
Options Indexes FollowSymLinks MultiViews
# This controls which options the .htaccess files in directories can
# override. Can also be "All", or any combination of "Options", "FileInfo",
# "AuthConfig", and "Limit"
AllowOverride None
# Controls who can get stuff from this server.
Order allow,deny
Allow from all
</Directory>
# UserDir: The name of the directory which is appended onto a user's home
# directory if a ~user request is received.
<IfModule mod_userdir.c>
UserDir public_html
</IfModule>
# Control access to UserDir directories. The following is an example
# for a site where these directories are restricted to read-only.
#<Directory /home/*/public_html>
# AllowOverride FileInfo AuthConfig Limit
# Options MultiViews Indexes SymLinksIfOwnerMatch IncludesNoExec
# <Limit GET POST OPTIONS PROPFIND>
# Order allow,deny
# Allow from all
# </Limit>
# <LimitExcept GET POST OPTIONS PROPFIND>
# Order deny,allow
# Deny from all
# </LimitExcept>
#</Directory>
# DirectoryIndex: Name of the file or files to use as a pre-written HTML
# directory index. Separate multiple entries with spaces.
<IfModule mod_dir.c>
DirectoryIndex index.html
</IfModule>
# AccessFileName: The name of the file to look for in each directory
# for access control information.
AccessFileName .htaccess
# The following lines prevent .htaccess files from being viewed by
# Web clients. Since .htaccess files often contain authorization
# information, access is disallowed for security reasons. Comment
# these lines out if you want Web visitors to see the contents of
# .htaccess files. If you change the AccessFileName directive above,
# be sure to make the corresponding changes here.
# Also, folks tend to use names such as .htpasswd for password
# files, so this will protect those as well.
<Files ~ "^\.([Hh][Tt]|[Dd][Ss]_[Ss])">
Order allow,deny
Deny from all
Satisfy All
</Files>
# Apple specific filesystem protection.
<Files "rsrc">
Order allow,deny
Deny from all
Satisfy All
</Files>
<Directory ~ ".*\.\.namedfork">
Order allow,deny
Deny from all
Satisfy All
</Directory>
# CacheNegotiatedDocs: By default, Apache sends "Pragma: no-cache" with each
# document that was negotiated on the basis of content. This asks proxy
# servers not to cache the document. Uncommenting the following line disables
# this behavior, and proxies will be allowed to cache the documents.
#CacheNegotiatedDocs
# UseCanonicalName: (new for 1.3) With this setting turned on, whenever
# Apache needs to construct a self-referencing URL (a URL that refers back
# to the server the response is coming from) it will use ServerName and
# Port to form a "canonical" name. With this setting off, Apache will
# use the hostname:port that the client supplied, when possible. This
# also affects SERVER_NAME and SERVER_PORT in CGI scripts.
UseCanonicalName On
# TypesConfig describes where the mime.types file (or equivalent) is
# to be found.
<IfModule mod_mime.c>
TypesConfig /private/etc/httpd/mime.types
</IfModule>
# DefaultType is the default MIME type the server will use for a document
# if it cannot otherwise determine one, such as from filename extensions.
# If your server contains mostly text or HTML documents, "text/plain" is
# a good value. If most of your content is binary, such as applications
# or images, you may want to use "application/octet-stream" instead to
# keep browsers from trying to display binary files as though they are
# text.
DefaultType text/plain
# The modmimemagic module allows the server to use various hints from the
# contents of the file itself to determine its type. The MIMEMagicFile
# directive tells the module where the hint definitions are located.
# modmimemagic is not part of the default server (you have to add
# it yourself with a LoadModule [see the DSO paragraph in the 'Global
# Environment' section], or recompile the server and include modmimemagic
# as part of the configuration), so it's enclosed in an <IfModule> container.
# This means that the MIMEMagicFile directive will only be processed if the
# module is part of the server.
<IfModule modmimemagic.c>
MIMEMagicFile /private/etc/httpd/magic
</IfModule>
# HostnameLookups: Log the names of clients or just their IP addresses
# e.g., www.apache.org (on) or 204.62.129.132 (off).
# The default is off because it'd be overall better for the net if people
# had to knowingly turn this feature on, since enabling it means that
# each client request will result in AT LEAST one lookup request to the
# nameserver.
HostnameLookups Off
# ErrorLog: The location of the error log file.
# If you do not specify an ErrorLog directive within a <VirtualHost>
# container, error messages relating to that virtual host will be
# logged here. If you do define an error logfile for a <VirtualHost>
# container, that host's errors will be logged there and not here.
ErrorLog "/private/var/log/httpd/error_log"
# LogLevel: Control the number of messages logged to the error_log.
# Possible values include: debug, info, notice, warn, error, crit,
# alert, emerg.
LogLevel warn
# The following directives define some format nicknames for use with
# a CustomLog directive (see below).
LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined
LogFormat "%h %l %u %t \"%r\" %>s %b" common
LogFormat "%{Referer}i -> %U" referer
LogFormat "%{User-agent}i" agent
# The location and format of the access logfile (Common Logfile Format).
# If you do not define any access logfiles within a <VirtualHost>
# container, they will be logged here. Contrariwise, if you do
# define per-<VirtualHost> access logfiles, transactions will be
# logged therein and not in this file.
CustomLog "/private/var/log/httpd/access_log" common
# If you would like to have agent and referer logfiles, uncomment the
# following directives.
#CustomLog "/private/var/log/httpd/referer_log" referer
#CustomLog "/private/var/log/httpd/agent_log" agent
# If you prefer a single logfile with access, agent, and referer information
# (Combined Logfile Format) you can use the following directive.
#CustomLog "/private/var/log/httpd/access_log" combined
# Optionally add a line containing the server version and virtual host
# name to server-generated pages (error documents, FTP directory listings,
# mod_status and mod_info output etc., but not CGI generated documents).
# Set to "EMail" to also include a mailto: link to the ServerAdmin.
# Set to one of: On | Off | EMail
ServerSignature On
# EBCDIC configuration:
# (only for mainframes using the EBCDIC codeset, currently one of:
# Fujitsu-Siemens' BS2000/OSD, IBM's OS/390 and IBM's TPF)!!
# The following default configuration assumes that "text files"
# are stored in EBCDIC (so that you can operate on them using the
# normal POSIX tools like grep and sort) while "binary files" are
# stored with identical octets as on an ASCII machine.
# The directives are evaluated in configuration file order, with
# the EBCDICConvert directives applied before EBCDICConvertByType.
# If you want to have ASCII HTML documents and EBCDIC HTML documents
# at the same time, you can use the file extension to force
# conversion off for the ASCII documents:
# > AddType text/html .ahtml
# > EBCDICConvert Off=InOut .ahtml
# EBCDICConvertByType On=InOut text/* message/* multipart/*
# EBCDICConvertByType On=In application/x-www-form-urlencoded
# EBCDICConvertByType On=InOut application/postscript model/vrml
# EBCDICConvertByType Off=InOut /
# Aliases: Add here as many aliases as you need (with no limit). The format is
# Alias fakename realname
<IfModule mod_alias.c>
# Note that if you include a trailing / on fakename then the server will
# require it to be present in the URL. So "/icons" isn't aliased in this
# example, only "/icons/". If the fakename is slash-terminated, then the
# realname must also be slash terminated, and if the fakename omits the
# trailing slash, the realname must also omit it.
Alias /icons/ "/usr/share/httpd/icons/"
<Directory "/usr/share/httpd/icons">
Options Indexes MultiViews
AllowOverride None
Order allow,deny
Allow from all
</Directory>
# This Alias will project the on-line documentation tree under /manual/
# even if you change the DocumentRoot. Comment it if you don't want to
# provide access to the on-line documentation.
Alias /manual/ "/Library/WebServer/Documents/manual/"
<Directory "/Library/WebServer/Documents/manual">
Options Indexes FollowSymlinks MultiViews
AllowOverride None
Order allow,deny
Allow from all
</Directory>
# ScriptAlias: This controls which directories contain server scripts.
# ScriptAliases are essentially the same as Aliases, except that
# documents in the realname directory are treated as applications and
# run by the server when requested rather than as documents sent to the client.
# The same rules about trailing "/" apply to ScriptAlias directives as to
# Alias.
ScriptAlias /cgi-bin/ "/Library/WebServer/CGI-Executables/"
# "/Library/WebServer/CGI-Executables" should be changed to whatever your ScriptAliased
# CGI directory exists, if you have that configured.
<Directory "/Library/WebServer/CGI-Executables">
AllowOverride None
Options None
Order allow,deny
Allow from all
</Directory>
</IfModule>
# End of aliases.
# Redirect allows you to tell clients about documents which used to exist in
# your server's namespace, but do not anymore. This allows you to tell the
# clients where to look for the relocated document.
# Format: Redirect old-URI new-URL
# Directives controlling the display of server-generated directory listings.
<IfModule mod_autoindex.c>
# FancyIndexing is whether you want fancy directory indexing or standard
IndexOptions FancyIndexing
# AddIcon* directives tell the server which icon to show for different
# files or filename extensions. These are only displayed for
# FancyIndexed directories.
AddIconByEncoding (CMP,/icons/compressed.gif) x-compress x-gzip
AddIconByType (TXT,/icons/text.gif) text/*
AddIconByType (IMG,/icons/image2.gif) image/*
AddIconByType (SND,/icons/sound2.gif) audio/*
AddIconByType (VID,/icons/movie.gif) video/*
AddIcon /icons/binary.gif .bin .exe
AddIcon /icons/binhex.gif .hqx
AddIcon /icons/tar.gif .tar
AddIcon /icons/world2.gif .wrl .wrl.gz .vrml .vrm .iv
AddIcon /icons/compressed.gif .Z .z .tgz .gz .zip
AddIcon /icons/a.gif .ps .ai .eps
AddIcon /icons/layout.gif .html .shtml .htm .pdf
AddIcon /icons/text.gif .txt
AddIcon /icons/c.gif .c
AddIcon /icons/p.gif .pl .py
AddIcon /icons/f.gif .for
AddIcon /icons/dvi.gif .dvi
AddIcon /icons/uuencoded.gif .uu
AddIcon /icons/script.gif .conf .sh .shar .csh .ksh .tcl
AddIcon /icons/tex.gif .tex
AddIcon /icons/bomb.gif core
AddIcon /icons/back.gif ..
AddIcon /icons/hand.right.gif README
AddIcon /icons/folder.gif ^^DIRECTORY^^
AddIcon /icons/blank.gif ^^BLANKICON^^
# DefaultIcon is which icon to show for files which do not have an icon
# explicitly set.
DefaultIcon /icons/unknown.gif
# AddDescription allows you to place a short description after a file in
# server-generated indexes. These are only displayed for FancyIndexed
# directories.
# Format: AddDescription "description" filename
#AddDescription "GZIP compressed document" .gz
#AddDescription "tar archive" .tar
#AddDescription "GZIP compressed tar archive" .tgz
# ReadmeName is the name of the README file the server will look for by
# default, and append to directory listings.
# HeaderName is the name of a file which should be prepended to
# directory indexes.
ReadmeName README.html
HeaderName HEADER.html
# IndexIgnore is a set of filenames which directory indexing should ignore
# and not include in the listing. Shell-style wildcarding is permitted.
IndexIgnore .??* *~ *# HEADER* README* RCS CVS *,v *,t
</IfModule>
# End of indexing directives.
# Document types.
<IfModule mod_mime.c>
# AddLanguage allows you to specify the language of a document. You can
# then use content negotiation to give a browser a file in a language
# it can understand.
# Note 1: The suffix does not have to be the same as the language
# keyword --- those with documents in Polish (whose net-standard
# language code is pl) may wish to use "AddLanguage pl .po" to
# avoid the ambiguity with the common suffix for perl scripts.
# Note 2: The example entries below illustrate that in quite
# some cases the two character 'Language' abbreviation is not
# identical to the two character 'Country' code for its country,
# E.g. 'Danmark/dk' versus 'Danish/da'.
# Note 3: In the case of 'ltz' we violate the RFC by using a three char
# specifier. But there is 'work in progress' to fix this and get
# the reference data for rfc1766 cleaned up.
# Danish (da) - Dutch (nl) - English (en) - Estonian (ee)
# French (fr) - German (de) - Greek-Modern (el)
# Italian (it) - Korean (kr) - Norwegian (no) - Norwegian Nynorsk (nn)
# Portugese (pt) - Luxembourgeois* (ltz)
# Spanish (es) - Swedish (sv) - Catalan (ca) - Czech(cs)
# Polish (pl) - Brazilian Portuguese (pt-br) - Japanese (ja)
# Russian (ru)
AddLanguage da .dk
AddLanguage nl .nl
AddLanguage en .en
AddLanguage et .ee
AddLanguage fr .fr
AddLanguage de .de
AddLanguage el .el
AddLanguage he .he
AddCharset ISO-8859-8 .iso8859-8
AddLanguage it .it
AddLanguage ja .ja
AddCharset ISO-2022-JP .jis
AddLanguage kr .kr
AddCharset ISO-2022-KR .iso-kr
AddLanguage nn .nn
AddLanguage no .no
AddLanguage pl .po
AddCharset ISO-8859-2 .iso-pl
AddLanguage pt .pt
AddLanguage pt-br .pt-br
AddLanguage ltz .lu
AddLanguage ca .ca
AddLanguage es .es
AddLanguage sv .sv
AddLanguage cs .cz .cs
AddLanguage ru .ru
AddLanguage zh-TW .zh-tw
AddCharset Big5 .Big5 .big5
AddCharset WINDOWS-1251 .cp-1251
AddCharset CP866 .cp866
AddCharset ISO-8859-5 .iso-ru
AddCharset KOI8-R .koi8-r
AddCharset UCS-2 .ucs2
AddCharset UCS-4 .ucs4
AddCharset UTF-8 .utf8
# LanguagePriority allows you to give precedence to some languages
# in case of a tie during content negotiation.
# Just list the languages in decreasing order of preference. We have
# more or less alphabetized them here. You probably want to change this.
<IfModule mod_negotiation.c>
LanguagePriority en da nl et fr de el it ja kr no pl pt pt-br ru ltz ca es sv tw
</IfModule>
# AddType allows you to tweak mime.types without actually editing it, or to
# make certain files to be certain types.
AddType application/x-tar .tgz
# AddEncoding allows you to have certain browsers uncompress
# information on the fly. Note: Not all browsers support this.
# Despite the name similarity, the following Add* directives have nothing
# to do with the FancyIndexing customization directives above.
AddEncoding x-compress .Z
AddEncoding x-gzip .gz .tgz
# If the AddEncoding directives above are commented-out, then you
# probably should define those extensions to indicate media types:
#AddType application/x-compress .Z
#AddType application/x-gzip .gz .tgz
# AddHandler allows you to map certain file extensions to "handlers",
# actions unrelated to filetype. These can be either built into the server
# or added with the Action command (see below)
# If you want to use server side includes, or CGI outside
# ScriptAliased directories, uncomment the following lines.
# To use CGI scripts:
#AddHandler cgi-script .cgi
# To use server-parsed HTML files
#AddType text/html .shtml
#AddHandler server-parsed .shtml
# Uncomment the following line to enable Apache's send-asis HTTP file
# feature
#AddHandler send-as-is asis
# If you wish to use server-parsed imagemap files, use
#AddHandler imap-file map
# To enable type maps, you might want to use
#AddHandler type-map var
</IfModule>
# End of document types.
# Action lets you define media types that will execute a script whenever
# a matching file is called. This eliminates the need for repeated URL
# pathnames for oft-used CGI file processors.
# Format: Action media/type /cgi-script/location
# Format: Action handler-name /cgi-script/location
# MetaDir: specifies the name of the directory in which Apache can find
# meta information files. These files contain additional HTTP headers
# to include when sending the document
#MetaDir .web
# MetaSuffix: specifies the file name suffix for the file containing the
# meta information.
#MetaSuffix .meta
# Customizable error response (Apache style)
# these come in three flavors
# 1) plain text
#ErrorDocument 500 "The server made a boo boo.
# n.b. the single leading (") marks it as text, it does not get output
# 2) local redirects
#ErrorDocument 404 /missing.html
# to redirect to local URL /missing.html
#ErrorDocument 404 /cgi-bin/missing_handler.pl
# N.B.: You can redirect to a script or a document using server-side-includes.
# 3) external redirects
#ErrorDocument 402 http://some.other-server.com/subscription_info.html
# N.B.: Many of the environment variables associated with the original
# request will not be available to such a script.
# Customize behaviour based on the browser
<IfModule mod_setenvif.c>
# The following directives modify normal HTTP response behavior.
# The first directive disables keepalive for Netscape 2.x and browsers that
# spoof it. There are known problems with these browser implementations.
# The second directive is for Microsoft Internet Explorer 4.0b2
# which has a broken HTTP/1.1 implementation and does not properly
# support keepalive when it is used on 301 or 302 (redirect) responses.
BrowserMatch "Mozilla/2" nokeepalive
BrowserMatch "MSIE 4\.0b2;" nokeepalive downgrade-1.0 force-response-1.0
# The following directive disables HTTP/1.1 responses to browsers which
# are in violation of the HTTP/1.0 spec by not being able to grok a
# basic 1.1 response.
BrowserMatch "RealPlayer 4\.0" force-response-1.0
BrowserMatch "Java/1\.0" force-response-1.0
BrowserMatch "JDK/1\.0" force-response-1.0
</IfModule>
# End of browser customization directives
# Allow server status reports, with the URL of http://servername/server-status
# Change the ".your-domain.com" to match your domain to enable.
#<Location /server-status>
# SetHandler server-status
# Order deny,allow
# Deny from all
# Allow from .your-domain.com
#</Location>
# Allow remote server configuration reports, with the URL of
# http://servername/server-info (requires that mod_info.c be loaded).
# Change the ".your-domain.com" to match your domain to enable.
#<Location /server-info>
# SetHandler server-info
# Order deny,allow
# Deny from all
# Allow from .your-domain.com
#</Location>
# There have been reports of people trying to abuse an old bug from pre-1.1
# days. This bug involved a CGI script distributed as a part of Apache.
# By uncommenting these lines you can redirect these attacks to a logging
# script on phf.apache.org. Or, you can record them yourself, using the script
# support/phfabuselog.cgi.
#<Location /cgi-bin/phf*>
# Deny from all
# ErrorDocument 403 http://phf.apache.org/phfabuselog.cgi
#</Location>
# Proxy Server directives. Uncomment the following lines to
# enable the proxy server:
#<IfModule mod_proxy.c>
# ProxyRequests On
# <Directory proxy:*>
# Order deny,allow
# Deny from all
# Allow from .your-domain.com
# </Directory>
# Enable/disable the handling of HTTP/1.1 "Via:" headers.
# ("Full" adds the server version; "Block" removes all outgoing Via: headers)
# Set to one of: Off | On | Full | Block
# ProxyVia On
# To enable the cache as well, edit and uncomment the following lines:
# (no cacheing without CacheRoot)
# CacheRoot "/private/var/run/proxy"
# CacheSize 5
# CacheGcInterval 4
# CacheMaxExpire 24
# CacheLastModifiedFactor 0.1
# CacheDefaultExpire 1
# NoCache a-domain.com another-domain.edu joes.garage-sale.com
#</IfModule>
# End of proxy directives.
### Section 3: Virtual Hosts
# VirtualHost: If you want to maintain multiple domains/hostnames on your
# machine you can setup VirtualHost containers for them. Most configurations
# use only name-based virtual hosts so the server doesn't need to worry about
# IP addresses. This is indicated by the asterisks in the directives below.
# Please see the documentation at <URL:<a class="jive-link-external-small" href="http://">http://www.apache.org/docs/vhosts/>
# for further details before you try to setup virtual hosts.
# You may use the command line option '-S' to verify your virtual host
# configuration.
# Use name-based virtual hosting.
#NameVirtualHost *:80
# VirtualHost example:
# Almost any Apache directive may go into a VirtualHost container.
# The first VirtualHost section is used for requests without a known
# server name.
#<VirtualHost *:80>
# ServerAdmin [email protected]
# DocumentRoot /www/docs/dummy-host.example.com
# ServerName dummy-host.example.com
# ErrorLog logs/dummy-host.example.com-error_log
# CustomLog logs/dummy-host.example.com-access_log common
#</VirtualHost>
</pre>

sorry i forgot that... i use php5 so i guessed at the module name... upon looking closer at the conf its mod_php4.c
<pre>
<IfModule mod_php4.c>
AddType application/x-httpd-php .php
</IfModule>
</pre>

Similar Messages

  • PHP refuses to load ZendOptimizer 3.3.9

    I've got Apache and PHP running properly, however whenever the server starts I get the following error which is preventing the ZendOptimizer.so module to be loaded in :
    PHP Warning:  PHP Startup: Unable to load dynamic library '/usr/lib/php/20060613-zts/ZendOptimizer.so' - /usr/lib/php/20060613-zts/ZendOptimizer.so: undefined symbol: compiler_globals in Unknown on line 0
    PHP v 5.2
    Zend v 3.3.9
    Anyone have an idea what I could do to resolve this ?

    Forgot to post that I've found the solution here ...
    Seems that Zend Optimizer 3.3.9 no longer ships with the thread safe modules as did 3.3.3.
    The issue was not that PHP was not finding the Zend modules, but rather that when loading it, it was throwing undeclared symbols.
    The paths printed above suffixed with -zts are perfectly normal since I'd recompiled the PHP module with --enable-maintained-zts.
    Looks like I'll either have to stick to 3.3.3 or build a business case for switching over to fastcgi and 3.3.9. Been dying to do the latter anyways, so yay !
    Either way, thanks for the help.
    Last edited by delerious010 (2010-07-08 02:03:54)

  • PHP Code Not Rendering

    Hi, I'm running Mac OS X 10.6.6 (Snow Leopard).
    I have tried for a couple hours now to install (or activate?) PHP on my Macbook Pro.
    I've done the following: Installed mySQL and got the server running, uncommented the LoadModule line in httpd.conf, restarted/started apachectl a bajillion times, made sure websharing is on, and even tried downloading the entropy php package and installing it.
    I've done all of these steps. This is what happens:
    WHen i go to http://localhost/phpinfo.php on safari, it renders the php info like it should.
    However, when I make a file like test.php with just the code <?php phpinfo(); ?> in it, it only displays the code and no information. Likewise, if i make any file ending in .php and open it in safari, there is only raw code shown and no rendering.
    Could someone please tell me what I'm doing wrong?
    Thanks so much in advance!

    On 13 Feb 2007 in macromedia.dreamweaver, crash wrote:
    >> That can't happen, unless there's some really broken
    browser
    >> sniffing going on on the server.
    >
    > Agreed.
    >
    >> I get some XHTML source code, because the content is
    delivered as
    >> text/plain. Is that what I'm supposed to see?
    >
    > That's what I'm seeing - take a look at the same file
    through IE.
    > Then, try to view this file through IE.
    >
    http://cooksfab.com/jobs.php
    - in IE, it tried to make me download
    > the file. I don't think PHP is correctly installed,
    perhaps?
    It may not be installed at all. Did you try the phpinfo()
    method? Put
    this in a plain text file named, say, phpinfo.php:
    <?php
    phpinfo();
    ?>
    If all you get back is that same code, check with your
    hosting provider
    whether PHP is available at all. (Or yell that it should
    be...)
    Joe Makowiec
    http://makowiec.net/
    Email:
    http://makowiec.net/email.php

  • DW CSS rendering abilities: Mac vs PC

    I've read up a little in this forum, but my specific question
    isn't answered here.
    I use DW8 for the Mac. I have a friend who uses DW8 on the
    PC. He made a comment that to use table-less CSS on his DW site
    would be very difficult because he can't see a preview of the CSS
    rendered in the design view.
    In this forum I see that CSS rendering isn't perfect, but it
    does seem to work even for PC users.
    I'm confused ;-) I use table-less CSS in my DW8 sites and DW
    gives me a fairly good idea of how CSS in the page will render. Of
    course I always test them with my PC, etc. before going live. The
    rendering isn't impossible to work with. Is it possible he needs to
    do something in his preferences? My friend is not a newbie,
    programs C++, Java, PHP, MySQL but this rendering issue is bugging
    me.
    This is a serious question. Not trying to get my friend to
    buy a Mac (but yes, I am smiling). I just want to understand.
    Thanks.

    Your friend is mistaken. He needs to check VIEW | Style
    Rendering, and make
    sure that Display Styles is enabled (I'm assuming that your
    friend is also
    using DW8).
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "pcgs" <[email protected]> wrote in message
    news:evh08v$fo1$[email protected]..
    > I've read up a little in this forum, but my specific
    question isn't
    > answered
    > here.
    >
    > I use DW8 for the Mac. I have a friend who uses DW8 on
    the PC. He made a
    > comment that to use table-less CSS on his DW site would
    be very difficult
    > because he can't see a preview of the CSS rendered in
    the design view.
    >
    > In this forum I see that CSS rendering isn't perfect,
    but it does seem to
    > work
    > even for PC users.
    >
    > I'm confused ;-) I use table-less CSS in my DW8 sites
    and DW gives me a
    > fairly
    > good idea of how CSS in the page will render. Of course
    I always test them
    > with
    > my PC, etc. before going live. The rendering isn't
    impossible to work
    > with. Is
    > it possible he needs to do something in his preferences?
    My friend is not
    > a
    > newbie, programs C++, Java, PHP, MySQL but this
    rendering issue is bugging
    > me.
    >
    > This is a serious question. Not trying to get my friend
    to buy a Mac (but
    > yes,
    > I am smiling). I just want to understand.
    >
    > Thanks.
    >

  • PHP code disappearing from Muse html

    I'm having an odd error that I'm hoping someone can help me with.
    I am using Adobe Muse and a server side CMS called Pulsepro. To run the CMS modules all I have to do is paste an embed line like the following:
    <?php include("pulsepro/includes/gallery2.php"); ?>
    I am placing this php code in an HTML snippet in muse and then exporting and uploading to server. On the server I have an .htaccess file with the following lines of code to make sure that the browser can find the PHP:
    AddType application/x-httpd-php .html .htm
    AddHandler application/x-httpd-php .html .htm
    When I go to my page, where the php should be is blank. Upon viewing source code it shows that the php include is completed deleted and just has a blank DIV. Now, the local file on my machine (the export from Muse) shows the correct php include line. Why is it that when the browser runs the code it removes the php code from the HTML file? If I put the same php line in a simple html file it runs fine.
    Help? I've never had this issue with anything other than Muse.
    Best,
    Oliver

    Browsers do not find or process PHP. PHP is found and processed by the server before it hits your browser.
    The reason why you may not see anything where you placed the PHP is that it is unable to locate "pulsepro/includes/gallery2.php" or that included PHP file is simply rendering nothing. 
    What happens when you call "pulsepro/includes/gallery2.php" directly in your browser? Does it display anything?

  • TranslateMarkup output not displaying in design view

    Hi
    I'm trying to take a set of php pages which all follow a similar style
    <?php
    $p=new page();
    $p->rightCol=<<<RC
         SOME HTML GOES HERE
    RC;
    $p->mainContent=<<<MC
         SOME OTHER HTML GOES HERE
    MC;
    This then pulls in various other files (css, js etc) and renders on the website. I'm used to working with an IDE and hand-writing php code. My non-technical colleague would like to edit the html using WYSIWYG and is used to using DW. At the moment the html in the heredoc strings doesn't display in design view. I've been trying to rejig the pages using translators and can convert the above php into html which renders fine in a browser. The html output from the translateMarkup function doesn't display in design view. I think I'm probably fighting a losing battle (for instance I'm not sure how I'm going to make html editable in DW even if I can get it to render), but if anyone could explain why the html won't render I'd be very grateful. My translator is
    <html>
    <head>
    <title>Conditional Translator</title>
    <meta http-equiv="Content-Type" content="text/html; charset=">
    <script language="JavaScript">
    function translateMarkup(docNameStr, siteRootStr, docContent){
    //Find the right col stuff, delimited by <<<RC\n and RC;\n
    var regexRC=/<<RC([\s\S]*)RC;/;
    var regexMC=/<<MC([\s\S]*)MC;/;
    var rcContent = regexRC.exec(docContent)[1];
    var mcContent = regexMC.exec(docContent)[1];
    var ret = (getHeader()+'<main>'+mcContent+'</main><aside id="rightcol">'+rcContent+'</aside>'+getFooter());
    return ret;
    function getTranslatorInfo() {
      var transArray = new Array(6);
    transArray[0] = "LG_TRANS";
    transArray[1] = "Translates for LG";
    transArray[2] = "1";
    transArray[3] = "php";
    transArray[4] = "0";
    transArray[5] = "allFiles";
    transArray[6] = "50";
    return transArray;
    function getHeader() {
      return '<!DOCTYPE html><html><head><title>TEST</title></head><body>';
    function getFooter() {
      return '</body></html>';
    </script>
    </head>
    <body>
    </body>
    </html>

    unless there's any way of rewriting the files before upload and download (ie dynamically rewrite the php pages as html before dreamweaver opens them, then rewrite them back as php before they're uploaded - I'm clutching at straws).
    I believe that this should be possible but I'm definitely not a DW extensionologist so I couldn't say for sure. Also, I believe that the tricky part would be the last step -> WYSIWYG edits back to PHP, which may well be impossible.
    If you want to talk to someone who knows DW inside out, contact the guys at http://www.projectseven.com. They are excellent.

  • Uploading via Webdav Converts all \ to €

    I'm using Dreamweaver MX 2004 with a WebDav connection to my
    server. I connect on a port that will allows me to download and
    upload my PHP source code without rendering it. On my PC, using the
    same version, everything is fine, but when I try to work from my
    Mac, all of my \ characters (for escaping quotes in PHP) get turned
    into € symbols.
    Has anyone else encountered this? I'm fairly certain it's a
    Dreamweaver problem, as this has never happened on my PC.
    Thanks!
    -- Edit --
    Sorry about the double post, I hit the button twice by
    accident!

    O.k., it seems to be that my document encoding was set to
    either Japanese (I started to gen Yen symbols recently) or
    something else that gave the Euro sign. In comparing with my PC, I
    see that I do not have Western(European) as an encoding type on the
    Mac, which I'm guessing is why there is the confusion.
    What I would like to address, though, is that all of this is
    happening inside of PHP code. According to the techdocs I've read,
    only special characters should have any type of encoding conversion
    done on them, and in HTML. Why is it that Dreamweaver on the Mac is
    changing my encoding, on upload, in PHP script blocks?

  • N95 removing orange image

    Hi
    After developing a faulty screen with my last n95 i contacted orange who sent me out a new replacement, everything is fine apart from the homescreen app which they have started to install on there phones, my orginal n95 didnt have this app.
    I have changed to the active standby mode but the orange rollercoaster image refuses to go, rendering any theme i use as useless since this image remains across the front of the main screen, does anyone know how to remove this image? ive deleted what i believe to be the source files from the phones memory but still the image remains.
    regards Danny

    The wallpaper can be removed by changing a setting in-
    Menu/Settings/General/Personalisation/Themes/Wallpaper.
    After setting your preferred stand-by mode and theme, change the above to Default.
    This will then use the picture for the theme you have selected, and the roller coaster will be no more!
    Hope this helps.

  • Whats the deal to upgrade leopard server to snow leopard server?

    HI
    Does it need to be a clean install?, is there an upgrade assistant, i dont really want to install from scratch again, its just that because i have a recent xserve i qualify for the upgrade for only £7.95, which is great. Im just wondering if anyone else has done it yet.
    Cheers

    I upgraded over the top from 10.5.7 to 10.6.1 last night.
    Xserve is new Nehalem (2.26GHz 8 Cores, 12GB RAM) Xraid attached.
    Stopped all services except DNS
    Cloned boot drive to spare via CCC, inserted DVD and restarted.
    I updated the cloned spare disk, not my original.
    Took about an hour, then restarted, once Window Manger came up, the installation post procedure kicked in and there was some trivial verbose in the bottom left hand side regarding updating services, with the normal big blue progress bar in the middle of the screen etc.
    Applied 10.6.1 and others, restarted again.
    Once done, I looked at all my services before starting them.
    I run:
    DNS
    OpenDirectory
    DHCP
    MAIL
    WEB + WEBDAV + WebMail (bout 6 site roots from memory)
    AFP
    SMB
    MySQL
    PostGreSQL
    Retrospect
    Other services I use are:
    Joomla 1.5
    Radmind
    NetworkHomeDirectories
    I lost my DHCP static assignments which I knew about from other people's posts.
    DNS, DHCP, MySQL and OpenDirectoy came across fine.
    MAIL
    Mail presented me with a "wizard" walkthrough thingy, which all the settings were prefilled (assuming from the upgrade script) and so I essentially were passenger to clicking next next next... then Okay.
    Did a quick Home directory login in and checked email.
    I could email to myself (locally) fine, but realised after testing that I was not receiving any external mail.
    Checking postmaster, I immediately had tonnes of postmaster email errors of "Postfix SMTP server: errors from <some.domain.name>... uh oh..
    I grepped the mail.log for "warning" and saw smtp errors relating to zen.spamhaus.org.
    I inspected my postconf settings compared to the default settings. (i.e. postconf -n versus postconf -d) to see just how the migration of my settings came across, etc.
    I vi'd into my main.cf and searched for zen.
    It seemed that my settings were rejecting everything from the outside world.
    I removed zen.spamhaus.org and cleaned up cleaned up the mapsrbldomains entry to be just "mapsrbldomains ="
    This fixed email for now, so I'll read up some more about what the settings should be and add zen.spanhaus.org back in later.
    I also modified my main.cf settings to allow MS Outlook to access via imap.
    apparently Outlook only sends the netbios name and not the fqdn of the client to imap servers.
    Even configuring XP in the custom DNS section to include a DNS suffix, Outlook just ignored it and still sent the netbios name after it's HELO command.
    I learnt the hard way that the only fix I found is a work around whereby one must modify there main.cf again:
    Change:
    smtpd_helorestrictions = rejectinvalidhostname rejectnon_fqdnhostname rejectinvalid_helohostname rejectnon_fqdn_helo_hostname
    to:
    smtpd_helorestrictions = rejectinvalid_hostname
    WEB.
    Well, nothing was happening here. Completely broken in every way as apache was trying to respawn after segfaulting every 10 seconds at loading the scgi_pubsub module.
    Disabled that and the seqfaults stopped.
    Didn't get far though as all my virtual sites were screwed.
    As soon as I would start apache via ServerAdmin, all the logs within SA would vanish... (made me smile)
    I ended up trashing all the migrated settings from within SA, as I had exported out a plist for web only.
    All this did was re-enable the segfauts, so I deleted all the 0000domain_portip.conf files from /etc/apache/sites and started from scratch.
    I knew Joomla needed to be patched to work with PHP 5.3 which I did before starting WEB service.
    (used the test.zip file offered at joomla.org and applied it via command line using my good friend Matthias' (http://www.matthiasraab.com/blog/joomla-and-it/36-updating-many-joomla-sites-on- server-level.html) little unzip command. ( I did it manually though as I only have 3 Joomla 1.5.13 sites)
    I vaguely remember installing Marc Linyange's PHP (5.2.x) on 10.5.7 Server to have the comple GD packages, so I went into the apache conf file and had to manually add Apple's new php mod back in, to get PHP back up. (joomla sites were downloading the php file, instead of rendering them, a dead giveaway that Apache knows nada about PHP)
    After re-configuring all the sites, (while testing one at a time) my WEB was back up, and joomla seemed happy enough for my needs. (haven't gone looking for errors yet, as I'm sure they exist in the admin backend)
    I haven't looked too much into webmail, but it works. Previously, I had a heap of extra plugins and vacation filters/scripts installed for my users. but I hear that's now possible via a wiki, so I'll be playing with that after hours.
    I see now the default with my mail server is that you must have something in the subject line, (this gave me another mild heart attack when a user told me they couldn't send email)
    EVERYTHING seems faster!
    I use Network Home Directories for my own home directory (using 2009 Mac Mini with 10.6.1 also) and I've immediately seen improvements. Whether it's just a snappier 10.6 Finder, I'm not sure, but even my users are noticing it from NHD with 10.5.7 Server.
    All in all. I'm very satisfied. This is the first time I've ever attempted to install over the top and I regard my result to be a great success. (I've done this sort of thing since 10.2 Server, and have always built up from vanilla installs, due to the nightmare stories I hear on these forums etc)
    Started the cloning at 8pm, (only 100GB clone as most of our data is symlinked to our Xraid) and I put my head on my pillow at 3am.
    Cheers,
    Raoul.

  • [SOLVED] Apache + PHP + XDEBUG profiler refuses to write any files

    I'm trying to track down some performance problems and the xdebug profiler seems like the tool to use.  Unfortunately no matter what I try xdebug simply will not write an output file.
    I've searched these forums, and stackoverflow, and tried all suggestions.  Nothing helps.  No errors in log file.
    I've made a directory, /tmp/xdebug, owned by user http and with proper permissions.
    I've configured PHP with xdebug profiling enabled.  When I browse phpinfo via the web server, I see these settings for xdebug:
    xdebug.profiler_aggregate Off Off
    xdebug.profiler_append Off Off
    xdebug.profiler_enable On On
    xdebug.profiler_enable_trigger Off Off
    xdebug.profiler_output_dir /tmp/xdebug /tmp/xdebug
    xdebug.profiler_output_name xdebug_profile.out.%t-%R xdebug_profile.out.%t-%R
    Other features of xdebug work fine.  For example, using emacs and geben I can place breakpoints, step through code, etc...
    When I run php from the command line, I get the profile files written as expected.  For example:
    dave@apollo ~ % sudo -u http php -r "echo 1;"
    1%
    dave@apollo ~ % ls -lthr /tmp/xdebug
    total 4.0K
    -rw-r--r-- 1 http http 146 Nov 25 17:49 xdebug_profile.out.1385430597-
    That shows that user http can write to the directory.  And shows that PHP is configured to dump the files.  However no matter how I request a page from apache, nothing is written.  I'm completely at a loss.  Any help is appreciated.
    Last edited by Dave Cohen (2014-02-23 18:20:10)

    Hello.
    Just encountered the same problem. After long research it turned out that here in Arch https is launched with PrivateTmp=True. This means that when such process (including any its child, and including PHP and its library XDebug) tries to open "/tmp/*", it gets redirected to "/tmp/systemd-private-??????/tmp/*", also "/var/tmp/*" redirects to "/var/tmp/systemd-private-??????/tmp/*". So any directory you create in /tmp/ will not be used.
    So the solution to this problem will be to use some path outside of /tmp, e.g. /srv/xdebug, or /var/log/xdebug, or anything. Make sure to create that directory and make it writeable for http user.
    Also check your php.ini and ensure that you either have open_basedir disabled or that it includes your profiler_output_dir.
    Last edited by MarSoft (2014-02-23 15:36:15)

  • Rendering Conundrum

    I have converted an older table based website to Dreamweaver CS5.5. In Design View it renders correctly, in Live View it renders correctly, In Localhost it renders correctly. On my home intranet, it renders correctly from both Windows and Macintosh machines.
    So I move it to my server (Mac Mini with OSX Server 10.3, php 5.3.0, apache 2.2.17, GD 2.034, MySQL and several virtual domains). When I put it in it's own registerd and working virtual domain, it refuses to render properly (loses page background, can't find several bits of art, puts divs in the wrong place, etc, etc. That domain is< www.okgrange.org >. (Right now, it contains the old table based version of the website, which does render correctly there.)
    When I put the new css version in my own  domain,< http;//www.tradersbend.com/Grange_Site/Index.html > it renders beautifully, just as it should. Same server, same everything as far as I can tell, except that the whole thing is in with some of my stuff, which requires the /Grange_Site path to find correctly.
    Does anyone have a theory as to why it would work in one spot and not another on the same server??
    Thanks,
    Robert

    JTANNA -
    Thanks for responding. I think I've found my problem. It's between the keyboard and the chair. I apparently had the links set to Site Root, instead of Relative to Document. Which worked fine when my Site Folder was dropped into a different domain. But when I dropped it into it's own virtual domain, the paths were to the enclosing folder, which is was unnecessary as the virtual domain setup expects that anyway. Since it couldn't find a bunch of the images, it choked.
    Once I cleaned up all the file paths for everything and made them relative to the document, everything seems to be fine now. So, for the record, if your site won't render properly, check your paths.

  • Mac Mini repeatedly refuses to wake from sleep

    Please to anyone I really need your help.
    First let me preface you that I know my console log is incredibly long, and let me know if there is a way to make them more manageable and I will update.
    Also let me know which other logs or screen shots or active programs I can provide
    I have a 2011 2.5 ghz Mac mini i5 with AMD Radeon 6630M
    I have customized this with a 256gb SSD and 2TB HDD as well as 16gb RAM.
    I also have a Monoprice drawing tablet attached.
    My keyboard and trackpad are bluetooth
    I am running yosemite 10.10.1.
    10.10 was installed with a clean install.
    So here is the issue:
    The computer was working perfectly, and then, I can't identify a specific time, it started to just occasionally refuse to wake up from sleep (monitor off, won't activate).
    Interestingly it seems to have only started happening AFTER I purchased an apple TV which I use to mirror my screen for video playback. Prior to that I had two mac mini's (one hooked up to TV as a media center and one desktop). This configuration resulted in no freezing issues for a few months.
    My parents wanted to get an apple desktop so I ended up giving them my mac mini media center and decided to try using an apple TV mirroring with my mac mini instead.
    Now the computer seems to work perfectly fine for a day or two and then it just refuses to wake from sleep.
    I do a hard reset and it boots up with no issue and everything works perfectly for a couple days (or less), then it just won't wake from sleep at all.
    This can occur when still mirrored to apple TV, but also occurs when it is not.
    Background programs tend to be: dropbox, google drive, evernote, flycut, Teamviewer, safari and google chrome
    Additionally I have noticed that if the computer has been on for a couple days, when trying got mirror it becomes very choppy.
    Activity monitor identifies no CPU or memory hogs. (can post if needed)
    The console does seem to show A LOT of issues, but I can't make any sense of them, and I have tried searching google for what they might mean.
    HERE ARE THE CONSOLE LOGS FROM THE FEW HOURS BEFORE I ATTEMPTED TO UNSUCCESSFULLY WAKE
    11/26/14 4:01:21.687 PM CalendarAgent[324]: [com.apple.calendar.store.log.caldav.coredav] [Refusing to parse response to PROPPATCH because of content-type: [text/html; charset=UTF-8].]
    11/26/14 4:01:21.728 PM CalendarAgent[324]: [com.apple.calendar.store.log.caldav.coredav] [Refusing to parse response to PROPPATCH because of content-type: [text/html; charset=UTF-8].]
    11/26/14 4:04:35.987 PM BezelServices 245.23[67]: ASSERTION FAILED: dvcAddrRef != ((void *)0) -[DriverServices getDeviceAddress:] line: 2602
    11/26/14 4:04:35.987 PM BezelServices 245.23[67]: ASSERTION FAILED: dvcAddrRef != ((void *)0) -[DriverServices getDeviceAddress:] line: 2602
    11/26/14 4:04:41.601 PM identityservicesd[346]: [Warning] ====== IDS Traffic Usage:
    11/26/14 4:04:41.601 PM identityservicesd[346]: [Warning]    Service: com.apple.private.alloy.icloudpairing
    11/26/14 4:04:41.601 PM identityservicesd[346]: [Warning]      outgoing-messages: 3
    11/26/14 4:04:41.601 PM identityservicesd[346]: [Warning]
    11/26/14 4:04:41.602 PM identityservicesd[346]: [Warning]    Service: com.apple.madrid
    11/26/14 4:04:41.602 PM identityservicesd[346]: [Warning]      incoming-messages: 8
    11/26/14 4:04:41.602 PM identityservicesd[346]: [Warning]
    11/26/14 4:04:41.602 PM identityservicesd[346]: [Warning] ====== Done
    11/26/14 4:19:21.821 PM CalendarAgent[324]: [com.apple.calendar.store.log.caldav.coredav] [Refusing to parse response to PROPPATCH because of content-type: [text/html; charset=UTF-8].]
    11/26/14 4:19:21.865 PM CalendarAgent[324]: [com.apple.calendar.store.log.caldav.coredav] [Refusing to parse response to PROPPATCH because of content-type: [text/html; charset=UTF-8].]
    11/26/14 4:19:31.000 PM kernel[0]: Over-release of kernel-internal importance assertions for pid 1559 (AddressBookSourc), dropping 1 assertion(s) but task only has 0 remaining (0 external).
    11/26/14 4:19:31.470 PM com.apple.xpc.launchd[1]: (com.apple.imfoundation.IMRemoteURLConnectionAgent) The _DirtyJetsamMemoryLimit key is not available on this platform.
    11/26/14 4:19:31.490 PM com.apple.iCloudHelper[1562]: objc[1562]: Class FALogging is implemented in both /System/Library/PrivateFrameworks/FamilyCircle.framework/Versions/A/FamilyCircl e and /System/Library/PrivateFrameworks/FamilyNotification.framework/Versions/A/Famil yNotification. One of the two will be used. Which one is undefined.
    11/26/14 4:19:31.497 PM com.apple.xpc.launchd[1]: (com.apple.imfoundation.IMRemoteURLConnectionAgent) The _DirtyJetsamMemoryLimit key is not available on this platform.
    11/26/14 4:21:01.000 PM kernel[0]: Google Chrome He (map: 0xffffff802e43ab40) triggered DYLD shared region unnest for map: 0xffffff802e43ab40, region 0x7fff97200000->0x7fff97400000. While not abnormal for debuggers, this increases system memory footprint until the target exits.
    11/26/14 4:37:21.951 PM CalendarAgent[324]: [com.apple.calendar.store.log.caldav.coredav] [Refusing to parse response to PROPPATCH because of content-type: [text/html; charset=UTF-8].]
    11/26/14 4:37:21.994 PM CalendarAgent[324]: [com.apple.calendar.store.log.caldav.coredav] [Refusing to parse response to PROPPATCH because of content-type: [text/html; charset=UTF-8].]
    11/26/14 4:53:02.000 PM kernel[0]: Google Chrome He (map: 0xffffff8036ea20f0) triggered DYLD shared region unnest for map: 0xffffff8036ea20f0, region 0x7fff97200000->0x7fff97400000. While not abnormal for debuggers, this increases system memory footprint until the target exits.
    11/26/14 4:55:06.723 PM CalendarAgent[324]: [com.apple.calendar.store.log.caldav.coredav] [Refusing to parse response to PROPPATCH because of content-type: [text/html; charset=UTF-8].]
    11/26/14 4:55:06.764 PM CalendarAgent[324]: [com.apple.calendar.store.log.caldav.coredav] [Refusing to parse response to PROPPATCH because of content-type: [text/html; charset=UTF-8].]
    11/26/14 4:55:32.526 PM com.apple.xpc.launchd[1]: (com.apple.imfoundation.IMRemoteURLConnectionAgent) The _DirtyJetsamMemoryLimit key is not available on this platform.
    11/26/14 4:55:32.565 PM com.apple.iCloudHelper[1587]: objc[1587]: Class FALogging is implemented in both /System/Library/PrivateFrameworks/FamilyCircle.framework/Versions/A/FamilyCircl e and /System/Library/PrivateFrameworks/FamilyNotification.framework/Versions/A/Famil yNotification. One of the two will be used. Which one is undefined.
    11/26/14 4:55:32.579 PM com.apple.xpc.launchd[1]: (com.apple.imfoundation.IMRemoteURLConnectionAgent) The _DirtyJetsamMemoryLimit key is not available on this platform.
    11/26/14 5:04:41.516 PM identityservicesd[346]: [Warning] ====== IDS Traffic Usage:
    11/26/14 5:04:41.516 PM identityservicesd[346]: [Warning]    Service: com.apple.private.alloy.icloudpairing
    11/26/14 5:04:41.517 PM identityservicesd[346]: [Warning]      outgoing-messages: 3
    11/26/14 5:04:41.517 PM identityservicesd[346]: [Warning]
    11/26/14 5:04:41.517 PM identityservicesd[346]: [Warning]    Service: com.apple.madrid
    11/26/14 5:04:41.517 PM identityservicesd[346]: [Warning]      incoming-messages: 10
    11/26/14 5:04:41.517 PM identityservicesd[346]: [Warning]
    11/26/14 5:04:41.518 PM identityservicesd[346]: [Warning] ====== Done
    11/26/14 5:13:22.527 PM CalendarAgent[324]: [com.apple.calendar.store.log.caldav.coredav] [Refusing to parse response to PROPPATCH because of content-type: [text/html; charset=UTF-8].]
    11/26/14 5:13:22.571 PM CalendarAgent[324]: [com.apple.calendar.store.log.caldav.coredav] [Refusing to parse response to PROPPATCH because of content-type: [text/html; charset=UTF-8].]
    11/26/14 5:13:31.440 PM com.apple.xpc.launchd[1]: (com.apple.imfoundation.IMRemoteURLConnectionAgent) The _DirtyJetsamMemoryLimit key is not available on this platform.
    11/26/14 5:13:31.464 PM com.apple.iCloudHelper[1596]: objc[1596]: Class FALogging is implemented in both /System/Library/PrivateFrameworks/FamilyCircle.framework/Versions/A/FamilyCircl e and /System/Library/PrivateFrameworks/FamilyNotification.framework/Versions/A/Famil yNotification. One of the two will be used. Which one is undefined.
    11/26/14 5:13:31.474 PM com.apple.xpc.launchd[1]: (com.apple.imfoundation.IMRemoteURLConnectionAgent) The _DirtyJetsamMemoryLimit key is not available on this platform.
    11/26/14 5:22:01.000 PM kernel[0]: Google Chrome He (map: 0xffffff8036ea20f0) triggered DYLD shared region unnest for map: 0xffffff8036ea20f0, region 0x7fff97200000->0x7fff97400000. While not abnormal for debuggers, this increases system memory footprint until the target exits.
    11/26/14 5:31:21.008 PM com.apple.iCloudHelper[1611]: objc[1611]: Class FALogging is implemented in both /System/Library/PrivateFrameworks/FamilyCircle.framework/Versions/A/FamilyCircl e and /System/Library/PrivateFrameworks/FamilyNotification.framework/Versions/A/Famil yNotification. One of the two will be used. Which one is undefined.
    11/26/14 5:31:21.021 PM com.apple.xpc.launchd[1]: (com.apple.imfoundation.IMRemoteURLConnectionAgent) The _DirtyJetsamMemoryLimit key is not available on this platform.
    11/26/14 5:31:21.665 PM CalendarAgent[324]: [com.apple.calendar.store.log.caldav.coredav] [Refusing to parse response to PROPPATCH because of content-type: [text/html; charset=UTF-8].]
    11/26/14 5:31:21.713 PM CalendarAgent[324]: [com.apple.calendar.store.log.caldav.coredav] [Refusing to parse response to PROPPATCH because of content-type: [text/html; charset=UTF-8].]
    11/26/14 5:33:33.218 PM com.apple.xpc.launchd[1]: (com.apple.imfoundation.IMRemoteURLConnectionAgent) The _DirtyJetsamMemoryLimit key is not available on this platform.
    11/26/14 5:49:20.819 PM bird[320]: notify name "CKStatusReport" has been registered 140 times - this may be a leak
    11/26/14 5:49:21.142 PM nsurlsessiond[349]: Being asked if container with identifier com.apple.clouddocs.VDZ8PCF9YD.com.halfbrick.FruitNinjaLite is foreground before getting callback from BRContainersMonitor!
    11/26/14 5:49:21.142 PM nsurlsessiond[349]: Being asked if container with identifier com.apple.clouddocs.VDZ8PCF9YD.com.halfbrick.FruitNinjaLite is foreground before getting callback from BRContainersMonitor!
    11/26/14 5:49:21.433 PM nsurlsessiond[349]: Being asked if container with identifier com.apple.clouddocs.com.apple.Pages is foreground before getting callback from BRContainersMonitor!
    11/26/14 5:49:21.434 PM nsurlsessiond[349]: Being asked if container with identifier com.apple.clouddocs.com.apple.Pages is foreground before getting callback from BRContainersMonitor!
    11/26/14 5:49:21.606 PM CalendarAgent[324]: [com.apple.calendar.store.log.caldav.coredav] [Refusing to parse response to PROPPATCH because of content-type: [text/html; charset=UTF-8].]
    11/26/14 5:49:21.641 PM CalendarAgent[324]: [com.apple.calendar.store.log.caldav.coredav] [Refusing to parse response to PROPPATCH because of content-type: [text/html; charset=UTF-8].]
    11/26/14 5:49:21.741 PM nsurlsessiond[349]: Being asked if container with identifier com.apple.clouddocs.com.apple.Automator is foreground before getting callback from BRContainersMonitor!
    11/26/14 5:49:21.741 PM nsurlsessiond[349]: Being asked if container with identifier com.apple.clouddocs.com.apple.Automator is foreground before getting callback from BRContainersMonitor!
    11/26/14 5:49:22.038 PM nsurlsessiond[349]: Being asked if container with identifier com.apple.clouddocs.VJXTL73S8G.com.algoriddim.djay-ios is foreground before getting callback from BRContainersMonitor!
    11/26/14 5:49:22.039 PM nsurlsessiond[349]: Being asked if container with identifier com.apple.clouddocs.VJXTL73S8G.com.algoriddim.djay-ios is foreground before getting callback from BRContainersMonitor!
    11/26/14 5:49:22.356 PM nsurlsessiond[349]: Being asked if container with identifier com.apple.clouddocs.C5Z3V9M735.com.bitmonstergames.lili is foreground before getting callback from BRContainersMonitor!
    11/26/14 5:49:22.357 PM nsurlsessiond[349]: Being asked if container with identifier com.apple.clouddocs.C5Z3V9M735.com.bitmonstergames.lili is foreground before getting callback from BRContainersMonitor!
    11/26/14 5:49:22.651 PM nsurlsessiond[349]: Being asked if container with identifier com.apple.clouddocs.com.apple.Numbers is foreground before getting callback from BRContainersMonitor!
    11/26/14 5:49:22.652 PM nsurlsessiond[349]: Being asked if container with identifier com.apple.clouddocs.com.apple.Numbers is foreground before getting callback from BRContainersMonitor!
    11/26/14 5:49:22.931 PM cloudd[354]: Stream 0x7fdd159500c0 is sending an event before being opened
    11/26/14 5:49:22.947 PM nsurlsessiond[349]: Being asked if container with identifier com.apple.clouddocs.ZL5FFY3M32.com.mseven.mSecure is foreground before getting callback from BRContainersMonitor!
    11/26/14 5:49:22.947 PM nsurlsessiond[349]: Being asked if container with identifier com.apple.clouddocs.ZL5FFY3M32.com.mseven.mSecure is foreground before getting callback from BRContainersMonitor!
    11/26/14 5:54:03.000 PM kernel[0]: Google Chrome He (map: 0xffffff802e3a7a50) triggered DYLD shared region unnest for map: 0xffffff802e3a7a50, region 0x7fff97200000->0x7fff97400000. While not abnormal for debuggers, this increases system memory footprint until the target exits.
    11/26/14 6:04:41.432 PM identityservicesd[346]: [Warning] ====== IDS Traffic Usage:
    11/26/14 6:04:41.432 PM identityservicesd[346]: [Warning]    Service: com.apple.private.alloy.icloudpairing
    11/26/14 6:04:41.432 PM identityservicesd[346]: [Warning]      outgoing-messages: 3
    11/26/14 6:04:41.432 PM identityservicesd[346]: [Warning]
    11/26/14 6:04:41.433 PM identityservicesd[346]: [Warning]    Service: com.apple.madrid
    11/26/14 6:04:41.433 PM identityservicesd[346]: [Warning]      incoming-messages: 10
    11/26/14 6:04:41.433 PM identityservicesd[346]: [Warning]
    11/26/14 6:04:41.433 PM identityservicesd[346]: [Warning] ====== Done
    11/26/14 6:07:21.702 PM CalendarAgent[324]: [com.apple.calendar.store.log.caldav.coredav] [Refusing to parse response to PROPPATCH because of content-type: [text/html; charset=UTF-8].]
    11/26/14 6:07:21.748 PM CalendarAgent[324]: [com.apple.calendar.store.log.caldav.coredav] [Refusing to parse response to PROPPATCH because of content-type: [text/html; charset=UTF-8].]
    11/26/14 6:07:31.474 PM com.apple.xpc.launchd[1]: (com.apple.imfoundation.IMRemoteURLConnectionAgent) The _DirtyJetsamMemoryLimit key is not available on this platform.
    11/26/14 6:07:31.492 PM com.apple.iCloudHelper[1636]: objc[1636]: Class FALogging is implemented in both /System/Library/PrivateFrameworks/FamilyCircle.framework/Versions/A/FamilyCircl e and /System/Library/PrivateFrameworks/FamilyNotification.framework/Versions/A/Famil yNotification. One of the two will be used. Which one is undefined.
    11/26/14 6:07:31.503 PM com.apple.xpc.launchd[1]: (com.apple.imfoundation.IMRemoteURLConnectionAgent) The _DirtyJetsamMemoryLimit key is not available on this platform.
    HERE ARE THE CONSOLE LOGS IN THE TIME AROUND WHEN I TRIED TO WAKE THE COMPUTER
    11/26/14 6:10:37.688 PM com.apple.xpc.launchd[1]: (com.apple.imfoundation.IMRemoteURLConnectionAgent) The _DirtyJetsamMemoryLimit key is not available on this platform.
    11/26/14 6:21:17.000 PM bootlog[0]: BOOT_TIME 1417044077 0
    11/26/14 6:21:19.000 PM syslogd[16]: Configuration Notice:
    ASL Module "com.apple.AccountPolicyHelper" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    11/26/14 6:21:19.000 PM syslogd[16]: Configuration Notice:
    ASL Module "com.apple.authd" sharing output destination "/var/log/asl" with ASL Module "com.apple.asl".
    Output parameters from ASL Module "com.apple.asl" override any specified in ASL Module "com.apple.authd".
    11/26/14 6:21:19.000 PM syslogd[16]: Configuration Notice:
    ASL Module "com.apple.authd" sharing output destination "/var/log/system.log" with ASL Module "com.apple.asl".
    Output parameters from ASL Module "com.apple.asl" override any specified in ASL Module "com.apple.authd".
    11/26/14 6:21:19.000 PM syslogd[16]: Configuration Notice:
    ASL Module "com.apple.authd" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    11/26/14 6:21:19.000 PM syslogd[16]: Configuration Notice:
    ASL Module "com.apple.awdd" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    11/26/14 6:21:19.000 PM syslogd[16]: Configuration Notice:
    ASL Module "com.apple.callhistory.asl.conf" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    11/26/14 6:21:19.000 PM syslogd[16]: Configuration Notice:
    ASL Module "com.apple.cloudd" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    11/26/14 6:21:19.000 PM syslogd[16]: Configuration Notice:
    ASL Module "com.apple.clouddocs" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    11/26/14 6:21:19.000 PM syslogd[16]: Configuration Notice:
    ASL Module "com.apple.commerce.asl" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    11/26/14 6:21:19.000 PM syslogd[16]: Configuration Notice:
    ASL Module "com.apple.CoreDuetAdmissionControl" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    11/26/14 6:21:19.000 PM syslogd[16]: Configuration Notice:
    ASL Module "com.apple.eventmonitor" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    11/26/14 6:21:19.000 PM syslogd[16]: Configuration Notice:
    ASL Module "com.apple.family.asl" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    11/26/14 6:21:19.000 PM syslogd[16]: Configuration Notice:
    ASL Module "com.apple.ical" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    11/26/14 6:21:19.000 PM syslogd[16]: Configuration Notice:
    ASL Module "com.apple.icloud.FindMyDevice" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    11/26/14 6:21:19.000 PM syslogd[16]: Configuration Notice:
    ASL Module "com.apple.install" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    11/26/14 6:21:19.000 PM syslogd[16]: Configuration Notice:
    ASL Module "com.apple.iokit.power" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    11/26/14 6:21:19.000 PM syslogd[16]: Configuration Notice:
    ASL Module "com.apple.mail" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    11/26/14 6:21:19.000 PM syslogd[16]: Configuration Notice:
    ASL Module "com.apple.MessageTracer" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    11/26/14 6:21:19.000 PM syslogd[16]: Configuration Notice:
    ASL Module "com.apple.networking.symptoms" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    11/26/14 6:21:19.000 PM syslogd[16]: Configuration Notice:
    ASL Module "com.apple.networking.symptoms" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    11/26/14 6:21:19.000 PM syslogd[16]: Configuration Notice:
    ASL Module "com.apple.performance" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    11/26/14 6:21:19.000 PM syslogd[16]: Configuration Notice:
    ASL Module "com.apple.secinitd" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    11/26/14 6:21:19.000 PM syslogd[16]: Configuration Notice:
    ASL Module "com.apple.securityd" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    11/26/14 6:21:19.000 PM syslogd[16]: Configuration Notice:
    ASL Module "com.apple.securityd" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    11/26/14 6:21:19.000 PM syslogd[16]: Configuration Notice:
    ASL Module "com.apple.securityd" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    11/26/14 6:21:19.000 PM syslogd[16]: Configuration Notice:
    ASL Module "com.apple.securityd" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    11/26/14 6:21:19.000 PM syslogd[16]: Configuration Notice:
    ASL Module "com.apple.securityd" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    11/26/14 6:21:19.000 PM syslogd[16]: Configuration Notice:
    ASL Module "com.apple.securityd" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    11/26/14 6:21:19.000 PM syslogd[16]: Configuration Notice:
    ASL Module "com.apple.securityd" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    11/26/14 6:21:19.000 PM kernel[0]: Longterm timer threshold: 1000 ms
    11/26/14 6:21:19.000 PM kernel[0]: PMAP: PCID enabled
    11/26/14 6:21:19.000 PM kernel[0]: Darwin Kernel Version 14.0.0: Fri Sep 19 00:26:44 PDT 2014; root:xnu-2782.1.97~2/RELEASE_X86_64
    11/26/14 6:21:19.000 PM kernel[0]: vm_page_bootstrap: 3920186 free pages and 241350 wired pages
    11/26/14 6:21:19.000 PM kernel[0]: kext submap [0xffffff7f80a00000 - 0xffffff8000000000], kernel text [0xffffff8000200000 - 0xffffff8000a00000]
    11/26/14 6:21:19.000 PM kernel[0]: zone leak detection enabled
    11/26/14 6:21:19.000 PM kernel[0]: "vm_compressor_mode" is 4
    11/26/14 6:21:19.000 PM kernel[0]: multiq scheduler config: deep-drain 0, urgent first 1, depth limit 4, band limit 127, sanity check 0
    11/26/14 6:21:19.000 PM kernel[0]: standard timeslicing quantum is 10000 us
    11/26/14 6:21:19.000 PM kernel[0]: standard background quantum is 2500 us
    11/26/14 6:21:19.000 PM kernel[0]: mig_table_max_displ = 13
    11/26/14 6:21:19.000 PM kernel[0]: TSC Deadline Timer supported and enabled
    11/26/14 6:21:19.000 PM kernel[0]: AppleACPICPU: ProcessorId=1 LocalApicId=0 Enabled
    11/26/14 6:21:19.000 PM kernel[0]: AppleACPICPU: ProcessorId=2 LocalApicId=2 Enabled
    11/26/14 6:21:19.000 PM kernel[0]: AppleACPICPU: ProcessorId=3 LocalApicId=1 Enabled
    11/26/14 6:21:19.000 PM kernel[0]: AppleACPICPU: ProcessorId=4 LocalApicId=3 Enabled
    11/26/14 6:21:19.000 PM kernel[0]: AppleACPICPU: ProcessorId=5 LocalApicId=255 Disabled
    11/26/14 6:21:19.000 PM kernel[0]: AppleACPICPU: ProcessorId=6 LocalApicId=255 Disabled
    11/26/14 6:21:19.000 PM kernel[0]: AppleACPICPU: ProcessorId=7 LocalApicId=255 Disabled
    11/26/14 6:21:19.000 PM kernel[0]: AppleACPICPU: ProcessorId=8 LocalApicId=255 Disabled
    11/26/14 6:21:19.000 PM kernel[0]: calling mpo_policy_init for TMSafetyNet
    11/26/14 6:21:19.000 PM kernel[0]: Security policy loaded: Safety net for Time Machine (TMSafetyNet)
    11/26/14 6:21:19.000 PM kernel[0]: calling mpo_policy_init for AMFI
    11/26/14 6:21:19.000 PM kernel[0]: Security policy loaded: Apple Mobile File Integrity (AMFI)
    11/26/14 6:21:19.000 PM kernel[0]: calling mpo_policy_init for Sandbox
    11/26/14 6:21:19.000 PM kernel[0]: Security policy loaded: Seatbelt sandbox policy (Sandbox)
    11/26/14 6:21:19.000 PM kernel[0]: calling mpo_policy_init for Quarantine
    11/26/14 6:21:19.000 PM kernel[0]: Security policy loaded: Quarantine policy (Quarantine)
    11/26/14 6:21:19.000 PM kernel[0]: Copyright (c) 1982, 1986, 1989, 1991, 1993
    11/26/14 6:21:19.000 PM kernel[0]: The Regents of the University of California. All rights reserved.
    11/26/14 6:21:19.000 PM kernel[0]: MAC Framework successfully initialized
    11/26/14 6:21:19.000 PM kernel[0]: using 16384 buffer headers and 10240 cluster IO buffer headers
    11/26/14 6:21:19.000 PM kernel[0]: AppleKeyStore starting (BUILT: Sep 19 2014 00:11:30)
    11/26/14 6:21:19.000 PM kernel[0]: IOAPIC: Version 0x20 Vectors 64:87
    11/26/14 6:21:19.000 PM kernel[0]: ACPI: sleep states S3 S4 S5
    11/26/14 6:21:19.000 PM kernel[0]: AppleIntelCPUPowerManagement: Turbo Ratios 0057
    11/26/14 6:21:19.000 PM kernel[0]: AppleIntelCPUPowerManagement: (built 00:11:36 Sep 19 2014) initialization complete
    11/26/14 6:21:19.000 PM kernel[0]: pci (build 00:11:20 Sep 19 2014), flags 0xe3000, pfm64 (36 cpu) 0xf80000000, 0x80000000
    11/26/14 6:21:19.000 PM kernel[0]: [ PCI configuration begin ]
    11/26/14 6:21:19.000 PM kernel[0]: console relocated to 0xf80010000
    11/26/14 6:21:19.000 PM kernel[0]: [ PCI configuration end, bridges 13, devices 18 ]
    11/26/14 6:21:19.000 PM kernel[0]: FireWire (OHCI) TI ID 823f built-in now active, GUID a4b197fffed35b90; max speed s800.
    11/26/14 6:21:19.000 PM kernel[0]: mcache: 4 CPU(s), 64 bytes CPU cache line size
    11/26/14 6:21:19.000 PM kernel[0]: mbinit: done [128 MB total pool size, (85/42) split]
    11/26/14 6:21:19.000 PM kernel[0]: rooting via boot-uuid from /chosen: 63B7062C-5B87-3FFD-939F-B3D35565E8D0
    11/26/14 6:21:19.000 PM kernel[0]: Waiting on <dict ID="0"><key>IOProviderClass</key><string ID="1">IOResources</string><key>IOResourceMatch</key><string ID="2">boot-uuid-media</string></dict>
    11/26/14 6:21:19.000 PM kernel[0]: com.apple.AppleFSCompressionTypeZlib kmod start
    11/26/14 6:21:19.000 PM kernel[0]: com.apple.AppleFSCompressionTypeDataless kmod start
    11/26/14 6:21:19.000 PM kernel[0]: com.apple.AppleFSCompressionTypeZlib load succeeded
    11/26/14 6:21:19.000 PM kernel[0]: com.apple.AppleFSCompressionTypeDataless load succeeded
    11/26/14 6:21:19.000 PM kernel[0]: AppleIntelCPUPowerManagementClient: ready
    11/26/14 6:21:19.000 PM kernel[0]: Got boot device = IOService:/AppleACPIPlatformExpert/PCI0@0/AppleACPIPCI/SATA@1F,2/AppleIntelPchS eriesAHCI/PRT0@0/IOAHCIDevice@0/AppleAHCIDiskDriver/IOAHCIBlockStorageDevice/IOB lockStorageDriver/Samsung SSD 840 EVO 250GB Media/IOGUIDPartitionScheme/Macintosh HD@2
    11/26/14 6:21:19.000 PM kernel[0]: BSD root: disk0s2, major 1, minor 3
    11/26/14 6:21:19.000 PM kernel[0]: jnl: b(1, 3): replay_journal: from: 21117952 to: 24910336 (joffset 0x747000)
    11/26/14 6:21:19.000 PM kernel[0]: BTCOEXIST off
    11/26/14 6:21:19.000 PM kernel[0]: BRCM tunables:
    11/26/14 6:21:19.000 PM kernel[0]: pullmode[1] txringsize[  256] txsendqsize[1024] reapmin[   32] reapcount[  128]
    11/26/14 6:21:19.000 PM kernel[0]: jnl: b(1, 3): journal replay done.
    11/26/14 6:21:19.000 PM kernel[0]: hfs: mounted Macintosh HD on device root_device
    11/26/14 6:21:19.000 PM kernel[0]: VM Swap Subsystem is ON
    11/26/14 6:21:19.000 PM kernel[0]: hfs: Removed 106 orphaned / unlinked files and 30 directories
    11/26/14 6:21:19.358 PM com.apple.xpc.launchd[1]: (com.teamviewer.service) This service is defined to be constantly running and is inherently inefficient.
    11/26/14 6:21:19.614 PM hidd[71]: void __IOHIDPlugInLoadBundles(): Loaded 0 HID plugins
    11/26/14 6:21:19.618 PM hidd[71]: ____IOHIDSessionScheduleAsync_block_invoke: thread_id=0x105ec0000
    11/26/14 6:21:19.619 PM hidd[71]: HID Session async scheduling initiated.
    11/26/14 6:21:19.619 PM hidd[71]: HID Session async root queue running at priority 63 and schedule 2.
    11/26/14 6:21:19.619 PM hidd[71]: HID Session async scheduling complete.
    11/26/14 6:21:19.619 PM hidd[71]: Successfully opened the IOHIDSession
    11/26/14 6:21:19.621 PM fseventsd[20]: event logs in /.fseventsd out of sync with volume.  destroying old logs. (80211 2 80234)
    11/26/14 6:21:19.636 PM com.apple.SecurityServer[53]: Session 100000 created
    11/26/14 6:21:19.358 PM com.apple.xpc.launchd[1]: (com.microsoft.office.licensing.helper) This key does not do anything: OnDemand
    11/26/14 6:21:19.358 PM com.apple.xpc.launchd[1]: (com.microsoft.office.licensing.helper) The ServiceIPC key is no longer respected. Please remove it.
    11/26/14 6:21:19.359 PM com.apple.xpc.launchd[1]: (com.apple.AppleFileServer) The HideUntilCheckIn property is an architectural performance issue. Please transition away from it.
    11/26/14 6:21:19.649 PM fseventsd[20]: log dir: /.fseventsd getting new uuid: 796B7427-D1EC-4899-9B10-F9396F84A986
    11/26/14 6:21:19.359 PM com.apple.xpc.launchd[1]: (com.apple.alf) The HideUntilCheckIn property is an architectural performance issue. Please transition away from it.
    11/26/14 6:21:19.361 PM com.apple.xpc.launchd[1]: (com.apple.audio.coreaudiod) Unknown key for array: seatbelt-profiles
    11/26/14 6:21:19.362 PM com.apple.xpc.launchd[1]: (com.apple.auditd) The TimeOut key is no longer respected. It never did anything anyway.
    11/26/14 6:21:19.363 PM launchd[1]: assertion failed: 14B25: libxpc.dylib + 34510 [9437C02E-A07B-38C8-91CB-299FAA63083D]: 0x8d
    11/26/14 6:21:19.363 PM com.apple.xpc.launchd[1]: (com.apple.backupd-status) The HideUntilCheckIn property is an architectural performance issue. Please transition away from it.
    11/26/14 6:21:19.363 PM com.apple.xpc.launchd[1]: (com.apple.backupd.status.xpc) The HideUntilCheckIn property is an architectural performance issue. Please transition away from it.
    11/26/14 6:21:19.365 PM com.apple.xpc.launchd[1]: (com.apple.bsd.dirhelper) The TimeOut key is no longer respected. It never did anything anyway.
    11/26/14 6:21:19.366 PM com.apple.xpc.launchd[1]: (com.apple.cmio.AVCAssistant) ThrottleInterval set to zero. You're not that important. Ignoring.
    11/26/14 6:21:19.366 PM com.apple.xpc.launchd[1]: (com.apple.autofsd) This service is defined to be constantly running and is inherently inefficient.
    11/26/14 6:21:19.366 PM com.apple.xpc.launchd[1]: (com.apple.cmio.IIDCVideoAssistant) ThrottleInterval set to zero. You're not that important. Ignoring.
    11/26/14 6:21:19.717 PM watchdogd[31]:  [watchdog_daemon] @(    wd_watchdog_open) - IOIteratorNext failed (kr=0)
    11/26/14 6:21:19.718 PM watchdogd[31]:  [watchdog_daemon] @(      wd_daemon_init) - could not initialize the hardware watchdog
    11/26/14 6:21:19.722 PM watchdogd[31]:  [watchdog_daemon] @(                main) - cannot initialize the watchdog service
    11/26/14 6:21:19.000 PM kernel[0]: IO80211Controller::dataLinkLayerAttachComplete():  adding AppleEFINVRAM notification
    11/26/14 6:21:19.000 PM kernel[0]: IO80211Interface::efiNVRAMPublished(): 
    11/26/14 6:21:19.000 PM kernel[0]: bpfAttach len 64 dlt 12
    11/26/14 6:21:19.725 PM com.apple.xpc.launchd[1]: (com.apple.watchdogd) Service only ran for 0 seconds. Pushing respawn out by 10 seconds.
    11/26/14 6:21:19.829 PM iconservicesagent[37]: iconservicesagent launched.
    11/26/14 6:21:19.973 PM com.apple.xpc.launchd[1]: (com.apple.CoreRAID[21]) Endpoint has been activated through legacy launch(3) APIs. Please switch to XPC or bootstrap_check_in(): com.apple.CoreRAID
    11/26/14 6:21:19.978 PM com.apple.xpc.launchd[1]: (com.apple.FileSyncAgent.PHD.isRunning) The HideUntilCheckIn property is an architectural performance issue. Please transition away from it.
    11/26/14 6:21:19.984 PM com.apple.xpc.launchd[1]: (com.apple.mbloginhelper.user) This key does not do anything: OnDemand
    11/26/14 6:21:19.984 PM com.apple.xpc.launchd[1]: (com.apple.mbpluginhost.user) This key does not do anything: OnDemand
    11/26/14 6:21:19.990 PM com.apple.xpc.launchd[1]: (com.apple.secd) This key does not do anything: OnDemand
    11/26/14 6:21:19.990 PM com.apple.xpc.launchd[1]: (com.apple.secd) The ServiceIPC key is no longer respected. Please remove it.
    11/26/14 6:21:19.993 PM com.apple.xpc.launchd[1]: (com.apple.speech.speechsynthesisd) This key does not do anything: OnDemand
    11/26/14 6:21:19.998 PM com.apple.xpc.launchd[1]: (com.apple.TrustEvaluationAgent) This key does not do anything: OnDemand
    11/26/14 6:21:20.080 PM com.apple.SecurityServer[53]: Entering service
    11/26/14 6:21:20.108 PM com.apple.xpc.launchd[1]: (com.apple.DataDetectorsDynamicData) The JoinExistingSession key is only available to Application services.
    11/26/14 6:21:20.000 PM kernel[0]: IOGraphics flags 0x43
    11/26/14 6:21:20.000 PM kernel[0]: IOBluetoothUSBDFU::probe
    11/26/14 6:21:20.000 PM kernel[0]: IOBluetoothUSBDFU::probe ProductID - 0x8281 FirmwareVersion - 0x0147
    11/26/14 6:21:20.000 PM kernel[0]: **** [IOBluetoothHostControllerUSBTransport][start] -- completed -- result = TRUE -- 0xd000 ****
    11/26/14 6:21:20.000 PM kernel[0]: **** [BroadcomBluetoothHostControllerUSBTransport][start] -- Completed -- 0xd000 ****
    11/26/14 6:21:20.000 PM kernel[0]: [IOBluetoothHCIController][staticBluetoothTransportShowsUp] -- Received Bluetooth Controller register service notification -- 0xd000
    11/26/14 6:21:20.000 PM kernel[0]: [IOBluetoothHCIController][start] -- completed
    11/26/14 6:21:20.000 PM kernel[0]: [IOBluetoothHCIController::setConfigState] calling registerService
    11/26/14 6:21:20.000 PM kernel[0]: **** [IOBluetoothHCIController][ProcessBluetoothTransportShowsUpActionWL] -- Connected to the transport successfully -- 0x7180 -- 0xc800 -- 0xd000 ****
    11/26/14 6:21:20.000 PM kernel[0]: ** GPU Hardware VM is disabled (multispace: disabled, page table updates with DMA: disabled)
    11/26/14 6:21:20.267 PM kdc[61]: label: default
    11/26/14 6:21:20.267 PM kdc[61]: dbname: od:/Local/Default
    11/26/14 6:21:20.269 PM kdc[61]: mkey_file: /var/db/krb5kdc/m-key
    11/26/14 6:21:20.286 PM kdc[61]: acl_file: /var/db/krb5kdc/kadmind.acl
    11/26/14 6:21:20.302 PM opendirectoryd[46]: BUG in libdispatch: 14B25 - 2004 - 0x5
    11/26/14 6:21:20.000 PM kernel[0]: jnl: disk1s2: replay_journal: from: 155467776 to: 156610560 (joffset 0x3a38000)
    11/26/14 6:21:20.000 PM kernel[0]: Previous shutdown cause: 3
    11/26/14 6:21:20.000 PM kernel[0]: DSMOS has arrived
    11/26/14 6:21:20.562 PM iconservicesagent[37]: Starting service with cache path: /var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/C/com.apple.iconservices
    11/26/14 6:21:20.682 PM com.apple.usbmuxd[52]: usbmuxd-344.3 on Oct 13 2014 at 21:10:09, running 64 bit
    11/26/14 6:21:20.692 PM loginwindow[67]: Login Window Application Started
    11/26/14 6:21:20.716 PM thermald[22]: Waiting for OSTT support notification
    11/26/14 6:21:20.000 PM kernel[0]: jnl: disk1s2: journal replay done.
    11/26/14 6:21:20.781 PM UserEventAgent[17]: Captive: CNPluginHandler en1: Inactive
    11/26/14 6:21:20.791 PM com.apple.xpc.launchd[1]: (com.apple.xpc.launchd.domain.system) Service "com.apple.ManagedClient.startup" tried to hijack endpoint "com.apple.ManagedClient.agent" from owner: com.apple.ManagedClient
    11/26/14 6:21:20.794 PM kdc[61]: WARNING Found KDC certificate (O=System Identity,CN=com.apple.kerberos.kdc)is missing the PK-INIT KDC EKU, this is bad for interoperability.
    11/26/14 6:21:20.000 PM kernel[0]: hfs: mounted Internal Storage Drive on device disk1s2
    11/26/14 6:21:20.895 PM secinitd[236]: UID[0]: cache loaded: /System/Library/Caches/com.apple.app-sandbox-cache.plist
    11/26/14 6:21:20.896 PM secinitd[236]: ctkd[235]: unable to get root path for bundle of main executable: /System/Library/Frameworks/CryptoTokenKit.framework/ctkd
    11/26/14 6:21:20.935 PM apsd[50]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1102)
    11/26/14 6:21:20.973 PM fseventsd[20]: event logs in /Volumes/Internal Storage Drive/.fseventsd out of sync with volume.  destroying old logs. (43490 0 80235)
    11/26/14 6:21:20.974 PM smb-sync-preferences[70]: Attempt to use XPC with a MachService that has HideUntilCheckIn set. This will result in unpredictable behavior: com.apple.smbd
    11/26/14 6:21:21.000 PM kernel[0]: AirPort: Link Down on en1. Reason 8 (Disassociated because station leaving).
    11/26/14 6:21:21.000 PM kernel[0]: en1::IO80211Interface::postMessage bssid changed
    11/26/14 6:21:21.000 PM kernel[0]: bpfAttach len 94 dlt 163
    11/26/14 6:21:21.000 PM kernel[0]: bpfAttach len 30 dlt 105
    11/26/14 6:21:21.000 PM kernel[0]: bpfAttach len 52 dlt 127
    11/26/14 6:21:21.000 PM kernel[0]: bpfAttach len 38 dlt 192
    11/26/14 6:21:21.013 PM configd[25]: dhcp_arp_router: en1 SSID unavailable
    11/26/14 6:21:21.016 PM configd[25]: preference: no sharing preferences
    11/26/14 6:21:21.017 PM digest-service[237]: label: default
    11/26/14 6:21:21.017 PM digest-service[237]: dbname: od:/Local/Default
    11/26/14 6:21:21.017 PM digest-service[237]: mkey_file: /var/db/krb5kdc/m-key
    11/26/14 6:21:21.017 PM digest-service[237]: acl_file: /var/db/krb5kdc/kadmind.acl
    11/26/14 6:21:21.028 PM digest-service[237]: digest-request: uid=0
    11/26/14 6:21:21.080 PM digest-service[237]: digest-request: netr probe 0
    11/26/14 6:21:21.084 PM WindowServer[233]: Server is starting up
    11/26/14 6:21:21.085 PM digest-service[237]: digest-request: init request
    11/26/14 6:21:21.097 PM digest-service[237]: digest-request: init return domain: BUILTIN server: LOCALHOST indomain was: <NULL>
    11/26/14 6:21:21.105 PM smb-sync-preferences[70]: Attempt to use XPC with a MachService that has HideUntilCheckIn set. This will result in unpredictable behavior: com.apple.smbd
    11/26/14 6:21:21.111 PM smb-sync-preferences[70]: Attempt to use XPC with a MachService that has HideUntilCheckIn set. This will result in unpredictable behavior: com.apple.smbd
    11/26/14 6:21:21.155 PM mds[33]: (FMW.Normal:1402) FMW 0 0
    11/26/14 6:21:21.196 PM apsd[50]: Unable to bootstrap_look_up connection port 'com.apple.askpermission.aps' for user 0: Unknown service name
    11/26/14 6:21:21.205 PM apsd[50]: Attempt to set push wake topics without dark wake enabled: ()
    11/26/14 6:21:21.206 PM apsd[50]: Unable to bootstrap_look_up connection port 'com.apple.askpermission.aps' for user 0: Unknown service name
    11/26/14 6:21:21.206 PM apsd[50]: <APSConnectionServer: 0x7f9fb8d2f7b0> Invalid mach port - Cleaning up this named port's topics. com.apple.askpermission.aps
    11/26/14 6:21:21.000 PM kernel[0]: in func createVirtualInterface ifRole = 1
    11/26/14 6:21:21.000 PM kernel[0]: AirPort_Brcm4331_P2PInterface::init name <p2p0> role 1
    11/26/14 6:21:21.000 PM kernel[0]: AirPort_Brcm4331_P2PInterface::init <p2p> role 1
    11/26/14 6:21:21.000 PM kernel[0]: Created virtif 0xffffff804584ec00 p2p0
    11/26/14 6:21:21.288 PM lsregister[242]: LaunchServices: Begin database seeding
    11/26/14 6:21:21.289 PM lsregister[242]: LaunchServices: Completed database seeding
    11/26/14 6:21:21.298 PM airportd[30]: airportdProcessDLILEvent: en1 attached (up)
    11/26/14 6:21:21.487 PM systemkeychain[174]: done file: /var/run/systemkeychaincheck.done
    11/26/14 6:21:21.634 PM iconservicesd[38]: iconservicesd launched.
    11/26/14 6:21:21.637 PM iconservicesd[38]: Cache path: /Library/Caches/com.apple.iconservices.store
    11/26/14 6:21:21.798 PM com.apple.xpc.launchd[1]: (com.apple.appkit.xpc.sandboxedServiceRunner) The JoinExistingSession key is only available to Application services.
    11/26/14 6:21:21.798 PM com.apple.xpc.launchd[1]: (com.apple.lakitu) The JoinExistingSession key is only available to Application services.
    11/26/14 6:21:21.799 PM com.apple.xpc.launchd[1]: (com.apple.accounts.dom) The _DirtyJetsamMemoryLimit key is not available on this platform.
    11/26/14 6:21:21.799 PM com.apple.xpc.launchd[1]: (com.apple.imfoundation.IMRemoteURLConnectionAgent) The _DirtyJetsamMemoryLimit key is not available on this platform.
    11/26/14 6:21:21.871 PM locationd[55]: Logging binary sensor data to /var/folders/zz/zyxvpxvq6csfxvn_n00000sm00006d/C/locationdSensors.bin
    11/26/14 6:21:21.893 PM locationd[55]: NBB-Could not get UDID for stable refill timing, falling back on random
    11/26/14 6:21:21.000 PM kernel[0]: en2: promiscuous mode enable succeeded
    11/26/14 6:21:21.992 PM discoveryd[49]: Basic Sockets GetProcessNameFromSocket() failed errno[57] err[-1]
    11/26/14 6:21:21.992 PM discoveryd[49]: Basic Sockets Unknown(-1), errno 0 UDS FD=3
    11/26/14 6:21:21.992 PM discoveryd[49]: Basic Sockets UDS FD=3 ERROR: failed to get effective user ID, errno 0
    11/26/14 6:21:21.993 PM discoveryd[49]: Basic SleepProxy BSP Server Disabled. Metric = 3373
    11/26/14 6:21:21.994 PM WindowServer[233]: Session 257 retained (2 references)
    11/26/14 6:21:21.994 PM WindowServer[233]: Session 257 released (1 references)
    11/26/14 6:21:21.998 PM discoveryd[49]: AwdlD2d AwdlD2dInitialize: Initialized
    11/26/14 6:21:22.001 PM discoveryd[49]: D2D_IPC: Loaded
    11/26/14 6:21:22.020 PM discoveryd_helper[249]: Basic RemoteControl com.apple.discoveryd_helper Starting XPC Server
    11/26/14 6:21:22.021 PM discoveryd_helper[249]: Detailed RemoteControl com.apple.discoveryd_helper XPC connection 0x7f8003407220: start (pid=49, <unknown> not root)
    11/26/14 6:21:22.024 PM WindowServer[233]: Session 257 retained (2 references)
    11/26/14 6:21:22.027 PM WindowServer[233]: init_page_flip: page flip mode is on
    11/26/14 6:21:22.074 PM discoveryd[49]: Basic WABServer NetResolverEvent no resolvers, resetting domains
    11/26/14 6:21:22.075 PM discoveryd[49]: Basic DNSResolver etc/hosts file changed: Event 0x7f9ef870c9f0 Flushed /etc/hosts cache
    11/26/14 6:21:22.077 PM discoveryd[49]: Basic BTMMServer,Warn Couldn't remove from DynStore No such key
    11/26/14 6:21:22.078 PM discoveryd[49]: Basic RemoteControl com.apple.discoveryd Starting XPC Server
    11/26/14 6:21:22.078 PM discoveryd[49]: Basic SleepProxy Could not get the primary interface
    11/26/14 6:21:22.079 PM discoveryd[49]: Basic RemoteControl com.apple.discoveryd.dnsproxy Starting XPC Server
    11/26/14 6:21:22.085 PM discoveryd[49]: Basic SleepProxy Sleep Proxy Server is not enabled
    11/26/14 6:21:22.000 PM kernel[0]: en1: 802.11d country code set to 'US'.
    11/26/14 6:21:22.000 PM kernel[0]: en1: Supported channels 1 2 3 4 5 6 7 8 9 10 11 36 40 44 48 52 56 60 64 100 104 108 112 116 120 124 128 132 136 140 149 153 157 161 165
    11/26/14 6:21:22.119 PM awacsd[251]: Starting awacsd connectivity_executables-112 (Sep  9 2014 16:16:55)
    11/26/14 6:21:22.137 PM networkd[250]: networkd-411 pid 250
    11/26/14 6:21:22.140 PM awacsd[251]: InnerStore CopyAllZones: no info in Dynamic Store
    11/26/14 6:21:22.194 PM kdc[61]: KDC started
    11/26/14 6:21:22.238 PM UserEventAgent[17]: nsurlsessiond_events plugin: adding token 1 for client softwareupdate_download_service
    11/26/14 6:21:22.336 PM awacsd[251]: Configuring lazy AWACS client: 109974245.p07.members.btmm.icloud.com.
    11/26/14 6:21:22.348 PM discoveryd[49]: Basic BTMMServer Got DNS key from awacsd for 109974245.members.btmm.icloud.com.
    11/26/14 6:21:22.353 PM discoveryd[49]: Basic BTMMServer Account info completed for 109974245.members.btmm.icloud.com.
    11/26/14 6:21:22.408 PM locationd[55]: locationd was started after an unclean shutdown
    11/26/14 6:21:22.442 PM WindowServer[233]: Found 76 modes for display 0x00000000 [76, 0]
    11/26/14 6:21:22.446 PM WindowServer[233]: Found 1 modes for display 0x00000000 [1, 0]
    11/26/14 6:21:22.448 PM WindowServer[233]: Found 1 modes for display 0x00000000 [1, 0]
    11/26/14 6:21:22.449 PM WindowServer[233]: Found 1 modes for display 0x00000000 [1, 0]
    11/26/14 6:21:22.451 PM WindowServer[233]: mux_initialize: Couldn't find any matches
    11/26/14 6:21:22.461 PM WindowServer[233]: Found 76 modes for display 0x00000000 [76, 0]
    11/26/14 6:21:22.483 PM WindowServer[233]: Found 1 modes for display 0x00000000 [1, 0]
    11/26/14 6:21:22.483 PM WindowServer[233]: Found 1 modes for display 0x00000000 [1, 0]
    11/26/14 6:21:22.484 PM WindowServer[233]: Found 1 modes for display 0x00000000 [1, 0]
    11/26/14 6:21:22.490 PM locationd[55]: Location icon should now be in state 'Inactive'
    11/26/14 6:21:22.518 PM WindowServer[233]: WSMachineUsesNewStyleMirroring: false
    11/26/14 6:21:22.522 PM WindowServer[233]: Display 0x1a492c40: GL mask 0x1; bounds (0, 0)[1920 x 1200], 76 modes available
    Main, Active, on-line, enabled, boot, Vendor 469, Model 24b1, S/N 0, Unit 0, Rotation 0
    UUID 0x5f28995fa90a8dcf15b9a417c318b0c9
    11/26/14 6:21:22.522 PM WindowServer[233]: Display 0x003f0040: GL mask 0x10; bounds (0, 0)[4096 x 2160], 2 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 4, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    11/26/14 6:21:22.522 PM WindowServer[233]: Display 0x003f003f: GL mask 0x8; bounds (0, 0)[0 x 0], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 3, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    11/26/14 6:21:22.522 PM WindowServer[233]: Display 0x003f003e: GL mask 0x4; bounds (0, 0)[0 x 0], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 2, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    11/26/14 6:21:22.523 PM WindowServer[233]: Display 0x003f003d: GL mask 0x2; bounds (0, 0)[0 x 0], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 1, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    11/26/14 6:21:22.524 PM WindowServer[233]: Set a breakpoint at CGSLogError to catch errors as they are logged.
    11/26/14 6:21:22.524 PM WindowServer[233]: WSSetWindowTransform: Singular matrix
    11/26/14 6:21:22.525 PM WindowServer[233]: WSSetWindowTransform: Singular matrix
    11/26/14 6:21:22.525 PM WindowServer[233]: WSSetWindowTransform: Singular matrix
    11/26/14 6:21:22.528 PM WindowServer[233]: Display 0x1a492c40: GL mask 0x1; bounds (0, 0)[1920 x 1200], 76 modes available
    Main, Active, on-line, enabled, boot, Vendor 469, Model 24b1, S/N 0, Unit 0, Rotation 0
    UUID 0x5f28995fa90a8dcf15b9a417c318b0c9
    11/26/14 6:21:22.529 PM WindowServer[233]: Display 0x003f0040: GL mask 0x10; bounds (2944, 0)[1 x 1], 2 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 4, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    11/26/14 6:21:22.529 PM WindowServer[233]: Display 0x003f003f: GL mask 0x8; bounds (2945, 0)[1 x 1], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 3, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    11/26/14 6:21:22.529 PM WindowServer[233]: Display 0x003f003e: GL mask 0x4; bounds (2946, 0)[1 x 1], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 2, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    11/26/14 6:21:22.529 PM WindowServer[233]: Display 0x003f003d: GL mask 0x2; bounds (2947, 0)[1 x 1], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 1, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    11/26/14 6:21:22.530 PM WindowServer[233]: CGXPerformInitialDisplayConfiguration
    11/26/14 6:21:22.530 PM WindowServer[233]:   Display 0x1a492c40: Unit 0; Vendor 0x469 Model 0x24b1 S/N 0 Dimensions 21.50 x 13.86; online enabled, Bounds (0,0)[1920 x 1200], Rotation 0, Resolution 1
    11/26/14 6:21:22.531 PM WindowServer[233]:   Display 0x003f0040: Unit 4; Vendor 0xffffffff Model 0xffffffff S/N -1 Dimensions 0.00 x 0.00; offline enabled, Bounds (2944,0)[1 x 1], Rotation 0, Resolution 1
    11/26/14 6:21:22.531 PM WindowServer[233]:   Display 0x003f003f: Unit 3; Vendor 0xffffffff Model 0xffffffff S/N -1 Dimensions 0.00 x 0.00; offline enabled, Bounds (2945,0)[1 x 1], Rotation 0, Resolution 1
    11/26/14 6:21:22.531 PM WindowServer[233]:   Display 0x003f003e: Unit 2; Vendor 0xffffffff Model 0xffffffff S/N -1 Dimensions 0.00 x 0.00; offline enabled, Bounds (2946,0)[1 x 1], Rotation 0, Resolution 1
    11/26/14 6:21:22.532 PM WindowServer[233]:   Display 0x003f003d: Unit 1; Vendor 0xffffffff Model 0xffffffff S/N -1 Dimensions 0.00 x 0.00; offline enabled, Bounds (2947,0)[1 x 1], Rotation 0, Resolution 1
    11/26/14 6:21:22.552 PM com.apple.xpc.launchd[1]: (com.apple.FileSyncAgent.PHD.isRunning) The HideUntilCheckIn property is an architectural performance issue. Please transition away from it.
    11/26/14 6:21:22.553 PM com.apple.xpc.launchd[1]: (com.apple.mbloginhelper.user) This key does not do anything: OnDemand
    11/26/14 6:21:22.553 PM com.apple.xpc.launchd[1]: (com.apple.mbpluginhost.user) This key does not do anything: OnDemand
    11/26/14 6:21:22.557 PM com.apple.xpc.launchd[1]: (com.apple.secd) This key does not do anything: OnDemand
    11/26/14 6:21:22.557 PM com.apple.xpc.launchd[1]: (com.apple.secd) The ServiceIPC key is no longer respected. Please remove it.
    11/26/14 6:21:22.558 PM com.apple.xpc.launchd[1]: (com.apple.speech.speechsynthesisd) This key does not do anything: OnDemand
    11/26/14 6:21:22.559 PM com.apple.xpc.launchd[1]: (com.apple.TrustEvaluationAgent) This key does not do anything: OnDemand
    11/26/14 6:21:22.562 PM WindowServer[233]: GLCompositor: GL renderer id 0x01021b06, GL mask 0x0000001f, accelerator 0x00003ef3, unit 0, caps QEX|MIPMAP, vram 256 MB
    11/26/14 6:21:22.562 PM WindowServer[233]: GLCompositor: GL renderer id 0x01021b06, GL mask 0x0000001f, texture max 16384, viewport max {16384, 16384}, extensions NPOT|GLSL|FLOAT
    11/26/14 6:21:22.563 PM WindowServer[233]: GLCompositor enabled for tile size [256 x 256]
    11/26/14 6:21:22.563 PM WindowServer[233]: CGXGLInitMipMap: mip map mode is on
    11/26/14 6:21:22.607 PM WindowServer[233]: CGXSetDisplayColorProfileAndTransfer: Display 0x1a492c40: Unit 0; ColorProfile { -1113921444 }; TransferFormula (1.000000, 1.000000, 1.000000)
    11/26/14 6:21:22.625 PM com.apple.AmbientDisplayAgent[262]: AmbientDisplayAgent started
    11/26/14 6:21:22.630 PM com.apple.AmbientDisplayAgent[262]: AMBD initializing devices
    11/26/14 6:21:22.636 PM com.apple.AmbientDisplayAgent[262]: AMBD Agent: xpc connection became invalid during event handler
    11/26/14 6:21:22.641 PM com.apple.xpc.launchd[1]: (com.apple.AssistiveControl.running) The HideUntilCheckIn property is an architectural performance issue. Please transition away from it.
    11/26/14 6:21:22.641 PM com.apple.xpc.launchd[1]: (com.apple.btsa) This key does not do anything: OnDemand
    11/26/14 6:21:22.643 PM com.apple.xpc.launchd[1]: (com.apple.coreservices.lsactivity) Unknown key for Boolean: DrainMessagesAfterFailedInit
    11/26/14 6:21:22.645 PM com.apple.xpc.launchd[1]: (com.apple.helpd) This key does not do anything: OnDemand
    11/26/14 6:21:22.650 PM com.apple.xpc.launchd[1]: (com.apple.noticeboard.agent) This key does not do anything: OnDemand
    11/26/14 6:21:22.653 PM com.apple.xpc.launchd[1]: (com.apple.speech.speechsynthesisd) This key does not do anything: OnDemand
    11/26/14 6:21:22.000 PM kernel[0]: hfs: mounted Recovery HD on device disk0s3
    11/26/14 6:21:22.669 PM mds[33]: (Volume.Normal:2464) volume:0x7f7f6180d000 ********** Bootstrapped Creating a default store:0 SpotLoc:(null) SpotVerLoc:(null) occlude:0 /Volumes/Recovery HD
    11/26/14 6:21:22.654 PM com.apple.xpc.launchd[1]: (com.apple.inputswitcher.running) The HideUntilCheckIn property is an architectural performance issue. Please transition away from it.
    11/26/14 6:21:22.654 PM com.apple.xpc.launchd[1]: (com.apple.universalaccesscontrol.running) The HideUntilCheckIn property is an architectural performance issue. Please transition away from it.
    11/26/14 6:21:22.654 PM com.apple.xpc.launchd[1]: (com.apple.universalaccessd.running) The HideUntilCheckIn property is an architectural performance issue. Please transition away from it.
    11/26/14 6:21:22.655 PM com.apple.xpc.launchd[1]: (com.apple.UserEventAgent-LoginWindow) This service is defined to be constantly running and is inherently inefficient.
    11/26/14 6:21:22.656 PM com.apple.xpc.launchd[1]: (com.apple.VoiceOver.running) The HideUntilCheckIn property is an architectural performance issue. Please transition away from it.
    11/26/14 6:21:22.657 PM com.apple.xpc.launchd[1]: (com.apple.ZoomWindow.running) The HideUntilCheckIn property is an architectural performance issue. Please transition away from it.
    11/26/14 6:21:22.657 PM com.apple.xpc.launchd[1]: (com.teamviewer.desktop) This service is defined to be constantly running and is inherently inefficient.
    11/26/14 6:21:22.775 PM com.apple.SecurityServer[53]: Session 100005 created
    11/26/14 6:21:22.857 PM WindowServer[233]: MPAccessSurfaceForDisplayDevice: Set up page flip mode on display 0x1a492c40 device: 0x7fb95bc16740  isBackBuffered: 1 numComp: 3 numDisp: 3
    11/26/14 6:21:22.857 PM WindowServer[233]: _CGXGLDisplayContextForDisplayDevice: acquired display context (0x7fb95bc16740) - enabling OpenGL
    11/26/14 6:21:22.928 PM configd[25]: network changed.
    11/26/14 6:21:22.928 PM configd[25]: setting hostname to "Seans-2011-Mac-Mini.local"
    11/26/14 6:21:22.950 PM configd[25]: dhcp_arp_router: en1 SSID unavailable
    11/26/14 6:21:23.006 PM loginwindow[67]: The current system was not found in the list of machines requiring a switch to a black background
    11/26/14 6:21:23.025 PM com.apple.xpc.launchd[1]: (com.apple.DataDetectorsDynamicData) The JoinExistingSession key is only available to Application services.
    11/26/14 6:21:23.026 PM com.apple.xpc.launchd[1]: (com.apple.appkit.xpc.sandboxedServiceRunner) The JoinExistingSession key is only available to Application services.
    11/26/14 6:21:23.041 PM loginwindow[67]: Login Window Started Security Agent
    11/26/14 6:21:23.070 PM askpermissiond[267]: objc[267]: Class FALogging is implemented in both /System/Library/PrivateFrameworks/FamilyCircle.framework/Versions/A/FamilyCircl e and /System/Library/PrivateFrameworks/FamilyNotification.framework/Versions/A/Famil yNotification. One of the two will be used. Which one is undefined.
    11/26/14 6:21:23.097 PM askpermissiond[267]: StoreTransport: Resetting APS Connection using environment name production
    11/26/14 6:21:23.104 PM apsd[50]: Unable to bootstrap_look_up connection port 'com.apple.askpermission.aps' for user 0: Unknown service name
    11/26/14 6:21:23.170 PM SecurityAgent[278]: This is the first run
    11/26/14 6:21:23.170 PM SecurityAgent[278]: MacBuddy was run = 0
    11/26/14 6:21:23.203 PM SecurityAgent[278]: User info context values set for seanstoy
    11/26/14 6:21:23.000 PM kernel[0]: MacAuthEvent en1   Auth result for: 92:81:d8:d1:65:f5  MAC AUTH succeeded
    11/26/14 6:21:23.000 PM kernel[0]: wlEvent: en1 en1 Link UP virtIf = 0
    11/26/14 6:21:23.000 PM kernel[0]: AirPort: Link Up on en1
    11/26/14 6:21:23.000 PM kernel[0]: en1: BSSID changed to 92:81:d8:d1:65:f5
    11/26/14 6:21:23.000 PM kernel[0]: en1::IO80211Interface::postMessage bssid changed
    11/26/14 6:21:23.390 PM UserEventAgent[272]: user agent networkd: built Sep  9 2014 16:11:57
    11/26/14 6:21:23.457 PM WiFiAgent[273]:  securityd_message_with_reply_sync Failed to talk to secd after 4 attempts.
    11/26/14 6:21:23.483 PM fseventsd[20]: log dir: /Volumes/Internal Storage Drive/.fseventsd getting new uuid: 13CDA244-CC79-498D-B287-5CAA4C7F080D
    11/26/14 6:21:23.496 PM SecurityAgent[278]: Login Window login proceeding
    11/26/14 6:21:23.577 PM awacsd[251]: KV HTTP 0
    11/26/14 6:21:23.609 PM fseventsd[20]: Logging disabled completely for device:1: /Volumes/Recovery HD
    11/26/14 6:21:23.685 PM loginwindow[67]: Login Window - Returned from Security Agent
    11/26/14 6:21:23.000 PM kernel[0]: rtR0InitNative: warning! failed to resolve special kernel symbols
    11/26/14 6:21:23.000 PM kernel[0]: vboxdrv: fAsync=0 offMin=0xa51 offMax=0xeaf
    11/26/14 6:21:23.000 PM kernel[0]: supdrvDTraceInit: RTR0DbgKrnlInfoOpen failed with rc=-102.
    11/26/14 6:21:23.000 PM kernel[0]: VBoxDrv: version 4.3.16 r95972; IOCtl version 0x1a0007; IDC version 0x10000; dev major=33
    11/26/14 6:21:23.000 PM kernel[0]: VBoxDrv: Failed to open kernel symbols, rc=-102
    11/26/14 6:21:23.907 PM com.apple.xpc.launchd[1]: (com.apple.DataDetectorsDynamicData) The JoinExistingSession key is only available to Application services.
    11/26/14 6:21:23.000 PM kernel[0]: hfs: unmount initiated on Recovery HD on device disk0s3
    11/26/14 6:21:23.913 PM com.apple.xpc.launchd[1]: (com.apple.FileSyncAgent.PHD.isRunning) The HideUntilCheckIn property is an architectural performance issue. Please transition away from it.
    11/26/14 6:21:23.915 PM com.apple.xpc.launchd[1]: (com.apple.mbloginhelper.user) This key does not do anything: OnDemand
    11/26/14 6:21:23.915 PM com.apple.xpc.launchd[1]: (com.apple.mbpluginhost.user) This key does not do anything: OnDemand
    11/26/14 6:21:23.918 PM com.apple.xpc.launchd[1]: (com.apple.secd) This key does not do anything: OnDemand
    11/26/14 6:21:23.918 PM com.apple.xpc.launchd[1]: (com.apple.secd) The ServiceIPC key is no longer respected. Please remove it.
    11/26/14 6:21:23.919 PM com.apple.xpc.launchd[1]: (com.apple.speech.speechsynthesisd) This key does not do anything: OnDemand
    11/26/14 6:21:23.921 PM com.apple.xpc.launchd[1]: (com.apple.TrustEvaluationAgent) This key does not do anything: OnDemand
    11/26/14 6:21:23.972 PM com.apple.audio.DriverHelper[292]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class AMDRadeonX4000_AMDAccelDevice.
    11/26/14 6:21:23.972 PM com.apple.audio.DriverHelper[292]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class AMDRadeonX4000_AMDAccelSharedUserClient.
    11/26/14 6:21:23.973 PM com.apple.audio.DriverHelper[292]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class AMDSIVideoContext.
    11/26/14 6:21:23.973 PM com.apple.audio.DriverHelper[292]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class Gen6DVDContext.
    11/26/14 6:21:23.973 PM com.apple.audio.DriverHelper[292]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelDevice.
    11/26/14 6:21:23.973 PM com.apple.audio.DriverHelper[292]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelSharedUserClient.
    11/26/14 6:21:23.973 PM com.apple.audio.DriverHelper[292]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelVideoContextMain.
    11/26/14 6:21:23.973 PM com.apple.audio.DriverHelper[292]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelVideoContextMedia.
    11/26/14 6:21:23.973 PM com.apple.audio.DriverHelper[292]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelVideoContextVEBox.
    11/26/14 6:21:23.974 PM com.apple.audio.DriverHelper[292]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IOBluetoothDeviceUserClient.
    11/26/14 6:21:23.974 PM com.apple.audio.DriverHelper[292]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IOHIDParamUserClient.
    11/26/14 6:21:23.974 PM com.apple.audio.DriverHelper[292]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IOSurfaceRootUserClient.
    11/26/14 6:21:23.974 PM com.apple.audio.DriverHelper[292]: The plug-in named AirPlay.driver requires extending the sandbox for the mach service named com.apple.AirPlayXPCHelper.
    11/26/14 6:21:23.974 PM com.apple.audio.DriverHelper[292]: The plug-in named AirPlay.driver requires extending the sandbox for the mach service named com.apple.wirelessproxd.
    11/26/14 6:21:23.981 PM com.apple.xpc.launchd[1]: (com.apple.appkit.xpc.sandboxedServiceRunner) The JoinExistingSession key is only available to Application services.
    11/26/14 6:21:24.002 PM coreaudiod[290]: 2014-11-26 06:21:24.001687 PM [AirPlay] BTLE discovery removing all devices
    11/26/14 6:21:24.003 PM coreaudiod[290]: 2014-11-26 06:21:24.003326 PM [AirPlay] Resetting AWDL traffic registration.
    11/26/14 6:21:24.004 PM coreaudiod[290]: 2014-11-26 06:21:24.003731 PM [AirPlay] Deregister AirPlay traffic for AWDL at MAC 00:00:00:00:00:00 with target infra non critical PeerIndication=0 err=-3900
    11/26/14 6:21:24.006 PM discoveryd[49]: AwdlD2d AwdlD2dStartBrowsingForKey: '_raop' Browsing service started
    11/26/14 6:21:24.006 PM discoveryd[49]: AwdlD2d AwdlD2dStartBrowsingForKey: '_airplay' Browsing service started
    11/26/14 6:21:24.007 PM com.apple.audio.DriverHelper[292]: The plug-in named BluetoothAudioPlugIn.driver requires extending the sandbox for the IOKit user-client class IOBluetoothDeviceUserClient.
    11/26/14 6:21:24.007 PM com.apple.audio.DriverHelper[292]: The plug-in named BluetoothAudioPlugIn.driver requires extending the sandbox for the mach service named com.apple.blued.
    11/26/14 6:21:24.007 PM com.apple.audio.DriverHelper[292]: The plug-in named BluetoothAudioPlugIn.driver requires

    I'm having this same issue. I also have this line in my log, which is curious:
    12/14/14 7:13:07.822 PM netbiosd[16766]: Attempt to use XPC with a MachService that has HideUntilCheckIn set. This will result in unpredictable behavior: com.apple.smbd
    Is this related to the problem? What does it mean?
    My 2010 27" iMac running Yosemite won't wake up from sleep.

  • PHP Issue

    I currently have been hacking around trying to get the pre-installed php that comes with Mac OS X enabled, but seem unable to get the page viewable from localhost or just simply viewing it in safari through finder. It gives me the underlying code when I try to view it, ie the php isn't running ... my httpd.conf file is below: Help greatly appreciated on this! Thanks
    ## httpd.conf -- Apache HTTP server configuration file
    # Based upon the NCSA server configuration files originally by Rob McCool.
    # This is the main Apache server configuration file. It contains the
    # configuration directives that give the server its instructions.
    # See <URL:<a class="jive-link-external-small" href="http://">http://httpd.apache.org/docs/> for detailed information about
    # the directives.
    # Do NOT simply read the instructions in here without understanding
    # what they do. They're here only as hints or reminders. If you are unsure
    # consult the online docs. You have been warned.
    # After this file is processed, the server will look for and process
    # /private/etc/httpd/srm.conf and then /private/etc/httpd/access.conf
    # unless you have overridden these with ResourceConfig and/or
    # AccessConfig directives here.
    # The configuration directives are grouped into three basic sections:
    # 1. Directives that control the operation of the Apache server process as a
    # whole (the 'global environment').
    # 2. Directives that define the parameters of the 'main' or 'default' server,
    # which responds to requests that aren't handled by a virtual host.
    # These directives also provide default values for the settings
    # of all virtual hosts.
    # 3. Settings for virtual hosts, which allow Web requests to be sent to
    # different IP addresses or hostnames and have them handled by the
    # same Apache server process.
    # Configuration and logfile names: If the filenames you specify for many
    # of the server's control files begin with "/" (or "drive:/" for Win32), the
    # server will use that explicit path. If the filenames do not begin
    # with "/", the value of ServerRoot is prepended -- so "logs/foo.log"
    # with ServerRoot set to "/usr/local/apache" will be interpreted by the
    # server as "/usr/local/apache/logs/foo.log".
    ### Section 1: Global Environment
    # The directives in this section affect the overall operation of Apache,
    # such as the number of concurrent requests it can handle or where it
    # can find its configuration files.
    # ServerType is either inetd, or standalone. Inetd mode is only supported on
    # Unix platforms.
    ServerType standalone
    # ServerRoot: The top of the directory tree under which the server's
    # configuration, error, and log files are kept.
    # NOTE! If you intend to place this on an NFS (or otherwise network)
    # mounted filesystem then please read the LockFile documentation
    # (available at <URL:<a class="jive-link-external-small" href="http://">http://www.apache.org/docs/mod/core.html#lockfile>);
    # you will save yourself a lot of trouble.
    ServerRoot "/usr"
    # The LockFile directive sets the path to the lockfile used when Apache
    # is compiled with either USEFCNTL_SERIALIZEDACCEPT or
    # USEFLOCK_SERIALIZEDACCEPT. This directive should normally be left at
    # its default value. The main reason for changing it is if the logs
    # directory is NFS mounted, since the lockfile MUST BE STORED ON A LOCAL
    # DISK. The PID of the main server process is automatically appended to
    # the filename.
    #LockFile "/private/var/run/httpd.lock"
    # PidFile: The file in which the server should record its process
    # identification number when it starts.
    PidFile "/private/var/run/httpd.pid"
    # ScoreBoardFile: File used to store internal server process information.
    # Not all architectures require this. But if yours does (you'll know because
    # this file will be created when you run Apache) then you must ensure that
    # no two invocations of Apache share the same scoreboard file.
    ScoreBoardFile "/private/var/run/httpd.scoreboard"
    # In the standard configuration, the server will process httpd.conf (this
    # file, specified by the -f command line option), srm.conf, and access.conf
    # in that order. The latter two files are now distributed empty, as it is
    # recommended that all directives be kept in a single file for simplicity.
    # The commented-out values below are the built-in defaults. You can have the
    # server ignore these files altogether by using "/dev/null" (for Unix) or
    # "nul" (for Win32) for the arguments to the directives.
    #ResourceConfig /private/etc/httpd/srm.conf
    #AccessConfig /private/etc/httpd/access.conf
    # Timeout: The number of seconds before receives and sends time out.
    Timeout 300
    # KeepAlive: Whether or not to allow persistent connections (more than
    # one request per connection). Set to "Off" to deactivate.
    KeepAlive On
    # MaxKeepAliveRequests: The maximum number of requests to allow
    # during a persistent connection. Set to 0 to allow an unlimited amount.
    # We recommend you leave this number high, for maximum performance.
    MaxKeepAliveRequests 100
    # KeepAliveTimeout: Number of seconds to wait for the next request from the
    # same client on the same connection.
    KeepAliveTimeout 15
    # Server-pool size regulation. Rather than making you guess how many
    # server processes you need, Apache dynamically adapts to the load it
    # sees --- that is, it tries to maintain enough server processes to
    # handle the current load, plus a few spare servers to handle transient
    # load spikes (e.g., multiple simultaneous requests from a single
    # Netscape browser).
    # It does this by periodically checking how many servers are waiting
    # for a request. If there are fewer than MinSpareServers, it creates
    # a new spare. If there are more than MaxSpareServers, some of the
    # spares die off. The default values are probably OK for most sites.
    MinSpareServers 5
    MaxSpareServers 10
    # Number of servers to start initially --- should be a reasonable ballpark
    # figure.
    StartServers 5
    # Limit on total number of servers running, i.e., limit on the number
    # of clients who can simultaneously connect --- if this limit is ever
    # reached, clients will be LOCKED OUT, so it should NOT BE SET TOO LOW.
    # It is intended mainly as a brake to keep a runaway server from taking
    # the system with it as it spirals down...
    MaxClients 150
    # MaxRequestsPerChild: the number of requests each child process is
    # allowed to process before the child dies. The child will exit so
    # as to avoid problems after prolonged use when Apache (and maybe the
    # libraries it uses) leak memory or other resources. On most systems, this
    # isn't really needed, but a few (such as Solaris) do have notable leaks
    # in the libraries. For these platforms, set to something like 10000
    # or so; a setting of 0 means unlimited.
    # NOTE: This value does not include keepalive requests after the initial
    # request per connection. For example, if a child process handles
    # an initial request and 10 subsequent "keptalive" requests, it
    # would only count as 1 request towards this limit.
    MaxRequestsPerChild 0
    # Listen: Allows you to bind Apache to specific IP addresses and/or
    # ports, instead of the default. See also the <VirtualHost>
    # directive.
    #Listen 3000
    #Listen 12.34.56.78:80
    # BindAddress: You can support virtual hosts with this option. This directive
    # is used to tell the server which IP address to listen to. It can either
    # contain "*", an IP address, or a fully qualified Internet domain name.
    # See also the <VirtualHost> and Listen directives.
    #BindAddress *
    # Dynamic Shared Object (DSO) Support
    # To be able to use the functionality of a module which was built as a DSO you
    # have to place corresponding `LoadModule' lines at this location so the
    # directives contained in it are actually available before they are used.
    # Please read the file http://httpd.apache.org/docs/dso.html for more
    # details about the DSO mechanism and run `httpd -l' for the list of already
    # built-in (statically linked and thus always available) modules in your httpd
    # binary.
    # Note: The order in which modules are loaded is important. Don't change
    # the order below without expert advice.
    # Example:
    # LoadModule foo_module libexec/mod_foo.so
    #LoadModule vhostaliasmodule libexec/httpd/modvhostalias.so
    #LoadModule env_module libexec/httpd/mod_env.so
    LoadModule configlogmodule libexec/httpd/modlogconfig.so
    #LoadModule mimemagicmodule libexec/httpd/modmimemagic.so
    LoadModule mime_module libexec/httpd/mod_mime.so
    LoadModule negotiation_module libexec/httpd/mod_negotiation.so
    #LoadModule status_module libexec/httpd/mod_status.so
    #LoadModule info_module libexec/httpd/mod_info.so
    LoadModule includes_module libexec/httpd/mod_include.so
    LoadModule autoindex_module libexec/httpd/mod_autoindex.so
    LoadModule dir_module libexec/httpd/mod_dir.so
    LoadModule cgi_module libexec/httpd/mod_cgi.so
    LoadModule asis_module libexec/httpd/mod_asis.so
    LoadModule imap_module libexec/httpd/mod_imap.so
    LoadModule action_module libexec/httpd/mod_actions.so
    #LoadModule speling_module libexec/httpd/mod_speling.so
    LoadModule userdir_module libexec/httpd/mod_userdir.so
    LoadModule alias_module libexec/httpd/mod_alias.so
    LoadModule rewrite_module libexec/httpd/mod_rewrite.so
    LoadModule access_module libexec/httpd/mod_access.so
    LoadModule auth_module libexec/httpd/mod_auth.so
    #LoadModule anonauthmodule libexec/httpd/modauthanon.so
    #LoadModule dbmauthmodule libexec/httpd/modauthdbm.so
    #LoadModule digest_module libexec/httpd/mod_digest.so
    #LoadModule proxy_module libexec/httpd/libproxy.so
    #LoadModule cernmetamodule libexec/httpd/modcernmeta.so
    #LoadModule expires_module libexec/httpd/mod_expires.so
    #LoadModule headers_module libexec/httpd/mod_headers.so
    #LoadModule usertrack_module libexec/httpd/mod_usertrack.so
    LoadModule logforensicmodule libexec/httpd/modlogforensic.so
    #LoadModule uniqueidmodule libexec/httpd/moduniqueid.so
    LoadModule setenvif_module libexec/httpd/mod_setenvif.so
    #LoadModule dav_module libexec/httpd/libdav.so
    #LoadModule ssl_module libexec/httpd/libssl.so
    #LoadModule perl_module libexec/httpd/libperl.so
    LoadModule php4_module libexec/httpd/libphp4.so
    LoadModule hfsapplemodule libexec/httpd/modhfsapple.so
    # Reconstruction of the complete module list from all available modules
    # (static and shared ones) to achieve correct module execution order.
    # [WHENEVER YOU CHANGE THE LOADMODULE SECTION ABOVE UPDATE THIS, TOO]
    ClearModuleList
    #AddModule modvhostalias.c
    #AddModule mod_env.c
    AddModule modlogconfig.c
    #AddModule modmimemagic.c
    AddModule mod_mime.c
    AddModule mod_negotiation.c
    #AddModule mod_status.c
    #AddModule mod_info.c
    AddModule mod_include.c
    AddModule mod_autoindex.c
    AddModule mod_dir.c
    AddModule mod_cgi.c
    AddModule mod_asis.c
    AddModule mod_imap.c
    AddModule mod_actions.c
    #AddModule mod_speling.c
    AddModule mod_userdir.c
    AddModule mod_alias.c
    AddModule mod_rewrite.c
    AddModule mod_access.c
    AddModule mod_auth.c
    #AddModule modauthanon.c
    #AddModule modauthdbm.c
    #AddModule mod_digest.c
    #AddModule mod_proxy.c
    #AddModule modcernmeta.c
    #AddModule mod_expires.c
    #AddModule mod_headers.c
    #AddModule mod_usertrack.c
    AddModule modlogforensic.c
    #AddModule moduniqueid.c
    AddModule mod_so.c
    AddModule mod_setenvif.c
    #AddModule mod_dav.c
    #AddModule mod_ssl.c
    #AddModule mod_perl.c
    AddModule mod_php4.c
    AddModule modhfsapple.c
    # ExtendedStatus controls whether Apache will generate "full" status
    # information (ExtendedStatus On) or just basic information (ExtendedStatus
    # Off) when the "server-status" handler is called. The default is Off.
    #ExtendedStatus On
    ### Section 2: 'Main' server configuration
    # The directives in this section set up the values used by the 'main'
    # server, which responds to any requests that aren't handled by a
    # <VirtualHost> definition. These values also provide defaults for
    # any <VirtualHost> containers you may define later in the file.
    # All of these directives may appear inside <VirtualHost> containers,
    # in which case these default settings will be overridden for the
    # virtual host being defined.
    # If your ServerType directive (set earlier in the 'Global Environment'
    # section) is set to "inetd", the next few directives don't have any
    # effect since their settings are defined by the inetd configuration.
    # Skip ahead to the ServerAdmin directive.
    # Port: The port to which the standalone server listens. For
    # ports < 1023, you will need httpd to be run as root initially.
    Port 80
    # If you wish httpd to run as a different user or group, you must run
    # httpd as root initially and it will switch.
    # User/Group: The name (or #number) of the user/group to run httpd as.
    # . On SCO (ODT 3) use "User nouser" and "Group nogroup".
    # . On HPUX you may not be able to use shared memory as nobody, and the
    # suggested workaround is to create a user www and use that user.
    # NOTE that some kernels refuse to setgid(Group) or semctl(IPC_SET)
    # when the value of (unsigned)Group is above 60000;
    # don't use Group "#-1" on these systems!
    User nobody
    Group nobody
    # ServerAdmin: Your address, where problems with the server should be
    # e-mailed. This address appears on some server-generated pages, such
    # as error documents.
    ServerAdmin [email protected]
    # ServerName allows you to set a host name which is sent back to clients for
    # your server if it's different than the one the program would get (i.e., use
    # "www" instead of the host's real name).
    # Note: You cannot just invent host names and hope they work. The name you
    # define here must be a valid DNS name for your host. If you don't understand
    # this, ask your network administrator.
    # If your host doesn't have a registered DNS name, enter its IP address here.
    # You will have to access it by its address (e.g., http://123.45.67.89/)
    # anyway, and this will make redirections work in a sensible way.
    # 127.0.0.1 is the TCP/IP local loop-back address, often named localhost. Your
    # machine always knows itself by this address. If you use Apache strictly for
    # local testing and development, you may use 127.0.0.1 as the server name.
    #ServerName new.host.name
    # DocumentRoot: The directory out of which you will serve your
    # documents. By default, all requests are taken from this directory, but
    # symbolic links and aliases may be used to point to other locations.
    DocumentRoot "/Library/WebServer/Documents"
    # Each directory to which Apache has access, can be configured with respect
    # to which services and features are allowed and/or disabled in that
    # directory (and its subdirectories).
    # First, we configure the "default" to be a very restrictive set of
    # permissions.
    <Directory />
    Options FollowSymLinks
    AllowOverride None
    </Directory>
    # Note that from this point forward you must specifically allow
    # particular features to be enabled - so if something's not working as
    # you might expect, make sure that you have specifically enabled it
    # below.
    # This should be changed to whatever you set DocumentRoot to.
    <Directory "/Library/WebServer/Documents">
    # This may also be "None", "All", or any combination of "Indexes",
    # "Includes", "FollowSymLinks", "ExecCGI", or "MultiViews".
    # Note that "MultiViews" must be named explicitly --- "Options All"
    # doesn't give it to you.
    Options Indexes FollowSymLinks MultiViews
    # This controls which options the .htaccess files in directories can
    # override. Can also be "All", or any combination of "Options", "FileInfo",
    # "AuthConfig", and "Limit"
    AllowOverride None
    # Controls who can get stuff from this server.
    Order allow,deny
    Allow from all
    </Directory>
    # UserDir: The name of the directory which is appended onto a user's home
    # directory if a ~user request is received.
    <IfModule mod_userdir.c>
    UserDir public_html
    </IfModule>
    #<IfModule mod_php4.c>
    AddType application/x-httpd-php .php
    #AddType application/x-httpd-php .php4
    #AddType application/x-httpd-php-source .phps
    #</IfModule>
    # Control access to UserDir directories. The following is an example
    # for a site where these directories are restricted to read-only.
    #<Directory /home/*/public_html>
    # AllowOverride FileInfo AuthConfig Limit
    # Options MultiViews Indexes SymLinksIfOwnerMatch IncludesNoExec
    # <Limit GET POST OPTIONS PROPFIND>
    # Order allow,deny
    # Allow from all
    # </Limit>
    # <LimitExcept GET POST OPTIONS PROPFIND>
    # Order deny,allow
    # Deny from all
    # </LimitExcept>
    #</Directory>
    # DirectoryIndex: Name of the file or files to use as a pre-written HTML
    # directory index. Separate multiple entries with spaces.
    <IfModule mod_dir.c>
    DirectoryIndex index.html index.php index.htm
    </IfModule>
    # AccessFileName: The name of the file to look for in each directory
    # for access control information.
    AccessFileName .htaccess
    # The following lines prevent .htaccess files from being viewed by
    # Web clients. Since .htaccess files often contain authorization
    # information, access is disallowed for security reasons. Comment
    # these lines out if you want Web visitors to see the contents of
    # .htaccess files. If you change the AccessFileName directive above,
    # be sure to make the corresponding changes here.
    # Also, folks tend to use names such as .htpasswd for password
    # files, so this will protect those as well.
    <Files ~ "^\.([Hh][Tt]|[Dd][Ss]_[Ss])">
    Order allow,deny
    Deny from all
    Satisfy All
    </Files>
    # Apple specific filesystem protection.
    <Files "rsrc">
    Order allow,deny
    Deny from all
    Satisfy All
    </Files>
    <Directory ~ ".*\.\.namedfork">
    Order allow,deny
    Deny from all
    Satisfy All
    </Directory>
    # CacheNegotiatedDocs: By default, Apache sends "Pragma: no-cache" with each
    # document that was negotiated on the basis of content. This asks proxy
    # servers not to cache the document. Uncommenting the following line disables
    # this behavior, and proxies will be allowed to cache the documents.
    #CacheNegotiatedDocs
    # UseCanonicalName: (new for 1.3) With this setting turned on, whenever
    # Apache needs to construct a self-referencing URL (a URL that refers back
    # to the server the response is coming from) it will use ServerName and
    # Port to form a "canonical" name. With this setting off, Apache will
    # use the hostname:port that the client supplied, when possible. This
    # also affects SERVER_NAME and SERVER_PORT in CGI scripts.
    UseCanonicalName On
    # TypesConfig describes where the mime.types file (or equivalent) is
    # to be found.
    <IfModule mod_mime.c>
    TypesConfig /private/etc/httpd/mime.types
    </IfModule>
    # DefaultType is the default MIME type the server will use for a document
    # if it cannot otherwise determine one, such as from filename extensions.
    # If your server contains mostly text or HTML documents, "text/plain" is
    # a good value. If most of your content is binary, such as applications
    # or images, you may want to use "application/octet-stream" instead to
    # keep browsers from trying to display binary files as though they are
    # text.
    DefaultType text/plain
    # The modmimemagic module allows the server to use various hints from the
    # contents of the file itself to determine its type. The MIMEMagicFile
    # directive tells the module where the hint definitions are located.
    # modmimemagic is not part of the default server (you have to add
    # it yourself with a LoadModule [see the DSO paragraph in the 'Global
    # Environment' section], or recompile the server and include modmimemagic
    # as part of the configuration), so it's enclosed in an <IfModule> container.
    # This means that the MIMEMagicFile directive will only be processed if the
    # module is part of the server.
    <IfModule modmimemagic.c>
    MIMEMagicFile /private/etc/httpd/magic
    </IfModule>
    # HostnameLookups: Log the names of clients or just their IP addresses
    # e.g., www.apache.org (on) or 204.62.129.132 (off).
    # The default is off because it'd be overall better for the net if people
    # had to knowingly turn this feature on, since enabling it means that
    # each client request will result in AT LEAST one lookup request to the
    # nameserver.
    HostnameLookups Off
    # ErrorLog: The location of the error log file.
    # If you do not specify an ErrorLog directive within a <VirtualHost>
    # container, error messages relating to that virtual host will be
    # logged here. If you do define an error logfile for a <VirtualHost>
    # container, that host's errors will be logged there and not here.
    ErrorLog "/private/var/log/httpd/error_log"
    # LogLevel: Control the number of messages logged to the error_log.
    # Possible values include: debug, info, notice, warn, error, crit,
    # alert, emerg.
    LogLevel warn
    # The following directives define some format nicknames for use with
    # a CustomLog directive (see below).
    LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined
    LogFormat "%h %l %u %t \"%r\" %>s %b" common
    LogFormat "%{Referer}i -> %U" referer
    LogFormat "%{User-agent}i" agent
    # The location and format of the access logfile (Common Logfile Format).
    # If you do not define any access logfiles within a <VirtualHost>
    # container, they will be logged here. Contrariwise, if you do
    # define per-<VirtualHost> access logfiles, transactions will be
    # logged therein and not in this file.
    CustomLog "/private/var/log/httpd/access_log" common
    # If you would like to have agent and referer logfiles, uncomment the
    # following directives.
    #CustomLog "/private/var/log/httpd/referer_log" referer
    #CustomLog "/private/var/log/httpd/agent_log" agent
    # If you prefer a single logfile with access, agent, and referer information
    # (Combined Logfile Format) you can use the following directive.
    #CustomLog "/private/var/log/httpd/access_log" combined
    # Optionally add a line containing the server version and virtual host
    # name to server-generated pages (error documents, FTP directory listings,
    # mod_status and mod_info output etc., but not CGI generated documents).
    # Set to "EMail" to also include a mailto: link to the ServerAdmin.
    # Set to one of: On | Off | EMail
    ServerSignature On
    # EBCDIC configuration:
    # (only for mainframes using the EBCDIC codeset, currently one of:
    # Fujitsu-Siemens' BS2000/OSD, IBM's OS/390 and IBM's TPF)!!
    # The following default configuration assumes that "text files"
    # are stored in EBCDIC (so that you can operate on them using the
    # normal POSIX tools like grep and sort) while "binary files" are
    # stored with identical octets as on an ASCII machine.
    # The directives are evaluated in configuration file order, with
    # the EBCDICConvert directives applied before EBCDICConvertByType.
    # If you want to have ASCII HTML documents and EBCDIC HTML documents
    # at the same time, you can use the file extension to force
    # conversion off for the ASCII documents:
    # > AddType text/html .ahtml
    # > EBCDICConvert Off=InOut .ahtml
    # EBCDICConvertByType On=InOut text/* message/* multipart/*
    # EBCDICConvertByType On=In application/x-www-form-urlencoded
    # EBCDICConvertByType On=InOut application/postscript model/vrml
    # EBCDICConvertByType Off=InOut /
    # Aliases: Add here as many aliases as you need (with no limit). The format is
    # Alias fakename realname
    <IfModule mod_alias.c>
    # Note that if you include a trailing / on fakename then the server will
    # require it to be present in the URL. So "/icons" isn't aliased in this
    # example, only "/icons/". If the fakename is slash-terminated, then the
    # realname must also be slash terminated, and if the fakename omits the
    # trailing slash, the realname must also omit it.
    Alias /icons/ "/usr/share/httpd/icons/"
    <Directory "/usr/share/httpd/icons">
    Options Indexes MultiViews
    AllowOverride None
    Order allow,deny
    Allow from all
    </Directory>
    # This Alias will project the on-line documentation tree under /manual/
    # even if you change the DocumentRoot. Comment it if you don't want to
    # provide access to the on-line documentation.
    Alias /manual/ "/Library/WebServer/Documents/manual/"
    <Directory "/Library/WebServer/Documents/manual">
    Options Indexes FollowSymlinks MultiViews
    AllowOverride None
    Order allow,deny
    Allow from all
    </Directory>
    # ScriptAlias: This controls which directories contain server scripts.
    # ScriptAliases are essentially the same as Aliases, except that
    # documents in the realname directory are treated as applications and
    # run by the server when requested rather than as documents sent to the client.
    # The same rules about trailing "/" apply to ScriptAlias directives as to
    # Alias.
    ScriptAlias /cgi-bin/ "/Library/WebServer/CGI-Executables/"
    # "/Library/WebServer/CGI-Executables" should be changed to whatever your ScriptAliased
    # CGI directory exists, if you have that configured.
    <Directory "/Library/WebServer/CGI-Executables">
    AllowOverride None
    Options None
    Order allow,deny
    Allow from all
    </Directory>
    </IfModule>
    # End of aliases.
    # Redirect allows you to tell clients about documents which used to exist in
    # your server's namespace, but do not anymore. This allows you to tell the
    # clients where to look for the relocated document.
    # Format: Redirect old-URI new-URL
    # Directives controlling the display of server-generated directory listings.
    <IfModule mod_autoindex.c>
    # FancyIndexing is whether you want fancy directory indexing or standard
    IndexOptions FancyIndexing
    # AddIcon* directives tell the server which icon to show for different
    # files or filename extensions. These are only displayed for
    # FancyIndexed directories.
    AddIconByEncoding (CMP,/icons/compressed.gif) x-compress x-gzip
    AddIconByType (TXT,/icons/text.gif) text/*
    AddIconByType (IMG,/icons/image2.gif) image/*
    AddIconByType (SND,/icons/sound2.gif) audio/*
    AddIconByType (VID,/icons/movie.gif) video/*
    AddIcon /icons/binary.gif .bin .exe
    AddIcon /icons/binhex.gif .hqx
    AddIcon /icons/tar.gif .tar
    AddIcon /icons/world2.gif .wrl .wrl.gz .vrml .vrm .iv
    AddIcon /icons/compressed.gif .Z .z .tgz .gz .zip
    AddIcon /icons/a.gif .ps .ai .eps
    AddIcon /icons/layout.gif .html .shtml .htm .pdf
    AddIcon /icons/text.gif .txt
    AddIcon /icons/c.gif .c
    AddIcon /icons/p.gif .pl .py
    AddIcon /icons/f.gif .for
    AddIcon /icons/dvi.gif .dvi
    AddIcon /icons/uuencoded.gif .uu
    AddIcon /icons/script.gif .conf .sh .shar .csh .ksh .tcl
    AddIcon /icons/tex.gif .tex
    AddIcon /icons/bomb.gif core
    AddIcon /icons/back.gif ..
    AddIcon /icons/hand.right.gif README
    AddIcon /icons/folder.gif ^^DIRECTORY^^
    AddIcon /icons/blank.gif ^^BLANKICON^^
    # DefaultIcon is which icon to show for files which do not have an icon
    # explicitly set.
    DefaultIcon /icons/unknown.gif
    # AddDescription allows you to place a short description after a file in
    # server-generated indexes. These are only displayed for FancyIndexed
    # directories.
    # Format: AddDescription "description" filename
    #AddDescription "GZIP compressed document" .gz
    #AddDescription "tar archive" .tar
    #AddDescription "GZIP compressed tar archive" .tgz
    # ReadmeName is the name of the README file the server will look for by
    # default, and append to directory listings.
    # HeaderName is the name of a file which should be prepended to
    # directory indexes.
    ReadmeName README.html
    HeaderName HEADER.html
    # IndexIgnore is a set of filenames which directory indexing should ignore
    # and not include in the listing. Shell-style wildcarding is permitted.
    IndexIgnore .??* *~ *# HEADER* README* RCS CVS *,v *,t
    </IfModule>
    # End of indexing directives.
    # Document types.
    <IfModule mod_mime.c>
    # AddLanguage allows you to specify the language of a document. You can
    # then use content negotiation to give a browser a file in a language
    # it can understand.
    # Note 1: The suffix does not have to be the same as the language
    # keyword --- those with documents in Polish (whose net-standard
    # language code is pl) may wish to use "AddLanguage pl .po" to
    # avoid the ambiguity with the common suffix for perl scripts.
    # Note 2: The example entries below illustrate that in quite
    # some cases the two character 'Language' abbreviation is not
    # identical to the two character 'Country' code for its country,
    # E.g. 'Danmark/dk' versus 'Danish/da'.
    # Note 3: In the case of 'ltz' we violate the RFC by using a three char
    # specifier. But there is 'work in progress' to fix this and get
    # the reference data for rfc1766 cleaned up.
    # Danish (da) - Dutch (nl) - English (en) - Estonian (ee)
    # French (fr) - German (de) - Greek-Modern (el)
    # Italian (it) - Korean (kr) - Norwegian (no) - Norwegian Nynorsk (nn)
    # Portugese (pt) - Luxembourgeois* (ltz)
    # Spanish (es) - Swedish (sv) - Catalan (ca) - Czech(cs)
    # Polish (pl) - Brazilian Portuguese (pt-br) - Japanese (ja)
    # Russian (ru)
    AddLanguage da .dk
    AddLanguage nl .nl
    AddLanguage en .en
    AddLanguage et .ee
    AddLanguage fr .fr
    AddLanguage de .de
    AddLanguage el .el
    AddLanguage he .he
    AddCharset ISO-8859-8 .iso8859-8
    AddLanguage it .it
    AddLanguage ja .ja
    AddCharset ISO-2022-JP .jis
    AddLanguage kr .kr
    AddCharset ISO-2022-KR .iso-kr
    AddLanguage nn .nn
    AddLanguage no .no
    AddLanguage pl .po
    AddCharset ISO-8859-2 .iso-pl
    AddLanguage pt .pt
    AddLanguage pt-br .pt-br
    AddLanguage ltz .lu
    AddLanguage ca .ca
    AddLanguage es .es
    AddLanguage sv .sv
    AddLanguage cs .cz .cs
    AddLanguage ru .ru
    AddLanguage zh-TW .zh-tw
    AddCharset Big5 .Big5 .big5
    AddCharset WINDOWS-1251 .cp-1251
    AddCharset CP866 .cp866
    AddCharset ISO-8859-5 .iso-ru
    AddCharset KOI8-R .koi8-r
    AddCharset UCS-2 .ucs2
    AddCharset UCS-4 .ucs4
    AddCharset UTF-8 .utf8
    # LanguagePriority allows you to give precedence to some languages
    # in case of a tie during content negotiation.
    # Just list the languages in decreasing order of preference. We have
    # more or less alphabetized them here. You probably want to change this.
    <IfModule mod_negotiation.c>
    LanguagePriority en da nl et fr de el it ja kr no pl pt pt-br ru ltz ca es sv tw
    </IfModule>
    # AddType allows you to tweak mime.types without actually editing it, or to
    # make certain files to be certain types.
    AddType application/x-tar .tgz
    # AddEncoding allows you to have certain browsers uncompress
    # information on the fly. Note: Not all browsers support this.
    # Despite the name similarity, the following Add* directives have nothing
    # to do with the FancyIndexing customization directives above.
    AddEncoding x-compress .Z
    AddEncoding x-gzip .gz .tgz
    # If the AddEncoding directives above are commented-out, then you
    # probably should define those extensions to indicate media types:
    #AddType application/x-compress .Z
    #AddType application/x-gzip .gz .tgz
    # AddHandler allows you to map certain file extensions to "handlers",
    # actions unrelated to filetype. These can be either built into the server
    # or added with the Action command (see below)
    # If you want to use server side includes, or CGI outside
    # ScriptAliased directories, uncomment the following lines.
    # To use CGI scripts:
    #AddHandler cgi-script .cgi
    # To use server-parsed HTML files
    #AddType text/html .shtml
    #AddHandler server-parsed .shtml
    # Uncomment the following line to enable Apache's send-asis HTTP file
    # feature
    #AddHandler send-as-is asis
    # If you wish to use server-parsed imagemap files, use
    #AddHandler imap-file map
    # To enable type maps, you might want to use
    #AddHandler type-map var
    </IfModule>
    # End of document types.
    # Action lets you define media types that will execute a script whenever
    # a matching file is called. This eliminates the need for repeated URL
    # pathnames for oft-used CGI file processors.
    # Format: Action media/type /cgi-script/location
    # Format: Action handler-name /cgi-script/location
    # MetaDir: specifies the name of the directory in which Apache can find
    # meta information files. These files contain additional HTTP headers
    # to include when sending the document
    #MetaDir .web
    # MetaSuffix: specifies the file name suffix for the file containing the
    # meta information.
    #MetaSuffix .meta
    # Customizable error response (Apache style)
    # these come in three flavors
    # 1) plain text
    #ErrorDocument 500 "The server made a boo boo.
    # n.b. the single leading (") marks it as text, it does not get output
    # 2) local redirects
    #ErrorDocument 404 /missing.html
    # to redirect to local URL /missing.html
    #ErrorDocument 404 /cgi-bin/missing_handler.pl
    # N.B.: You can redirect to a script or a document using server-side-includes.
    # 3) external redirects
    #ErrorDocument 402 http://some.other-server.com/subscription_info.html
    # N.B.: Many of the environment variables associated with the original
    # request will not be available to such a script.
    # Customize behaviour based on the browser
    <IfModule mod_setenvif.c>
    # The following directives modify normal HTTP response behavior.
    # The first directive disables keepalive for Netscape 2.x and browsers that
    # spoof it. There are known problems with these browser implementations.
    # The second directive is for Microsoft Internet Explorer 4.0b2
    # which has a broken HTTP/1.1 implementation and does not properly
    # support keepalive when it is used on 301 or 302 (redirect) responses.
    BrowserMatch "Mozilla/2" nokeepalive
    BrowserMatch "MSIE 4\.0b2;" nokeepalive downgrade-1.0 force-response-1.0
    # The following directive disables HTTP/1.1 responses to browsers which
    # are in violation of the HTTP/1.0 spec by not being able to grok a
    # basic 1.1 response.
    BrowserMatch "RealPlayer 4\.0" force-response-1.0
    BrowserMatch "Java/1\.0" force-response-1.0
    BrowserMatch "JDK/1\.0" force-response-1.0
    </IfModule>
    # End of browser customization directives
    # Allow server status reports, with the URL of http://servername/server-status
    # Change the ".your-domain.com" to match your domain to enable.
    #<Location /server-status>
    # SetHandler server-status
    # Order deny,allow
    # Deny from all
    # Allow from .your-domain.com
    #</Location>
    # Allow remote server configuration reports, with the URL of
    # http://servername/server-info (requires that mod_info.c be loaded).
    # Change the ".your-domain.com" to match your domain to enable.
    #<Location /server-info>
    # SetHandler server-info
    # Order deny,allow
    # Deny from all
    # Allow from .your-domain.com
    #</Location>
    # There have been reports of people trying to abuse an old bug from pre-1.1
    # days. This bug involved a CGI script distributed as a part of Apache.
    # By uncommenting these lines you can redirect these attacks to a logging
    # script on phf.apache.org. Or, you can record them yourself, using the script
    # support/phfabuselog.cgi.
    #<Location /cgi-bin/phf*>
    # Deny from all
    # ErrorDocument 403 http://phf.apache.org/phfabuselog.cgi
    #</Location>
    # Proxy Server directives. Uncomment the following lines to
    # enable the proxy server:
    #<IfModule mod_proxy.c>
    # ProxyRequests On
    # <Directory proxy:*>
    # Order deny,allow
    # Deny from all
    # Allow from .your-domain.com
    # </Directory>
    # Enable/disable the handling of HTTP/1.1 "Via:" headers.
    # ("Full" adds the server version; "Block" removes all outgoing Via: headers)
    # Set to one of: Off | On | Full | Block
    # ProxyVia On
    # To enable the cache as well, edit and uncomment the following lines:
    # (no cacheing without CacheRoot)
    # CacheRoot "/private/var/run/proxy"
    # CacheSize 5
    # CacheGcInterval 4
    # CacheMaxExpire 24
    # CacheLastModifiedFactor 0.1
    # CacheDefaultExpire 1
    # NoCache a-domain.com another-domain.edu joes.garage-sale.com
    #</IfModule>
    # End of proxy directives.
    ### Section 3: Virtual Hosts
    # VirtualHost: If you want to maintain multiple domains/hostnames on your
    # machine you can setup VirtualHost containers for them. Most configurations
    # use only name-based virtual hosts so the server doesn't need to worry about
    # IP addresses. This is indicated by the asterisks in the directives below.
    # Please see the documentation at <URL:<a class="jive-link-external-small" href="http://">http://www.apache.org/docs/vhosts/>
    # for further details before you try to setup virtual hosts.
    # You may use the command line option '-S' to verify your virtual host
    # configuration.
    # Use name-based virtual hosting.
    #NameVirtualHost *:80
    # VirtualHost example:
    # Almost any Apache directive may go into a VirtualHost container.
    # The first VirtualHost section is used for requests without a known
    # server name.
    #<VirtualHost *:80>
    # ServerAdmin [email protected]
    # DocumentRoot /www/docs/dummy-host.example.com
    # ServerName dummy-host.example.com
    # ErrorLog logs/dummy-host.example.com-error_log
    # CustomLog logs/dummy-host.example.com-access_log common
    #</VirtualHost>

    gparker03 wrote:
    Holy cow .... http://localhost/index.php is working! So basically the php has to be run ON the apache server correct? How would I get it to run in something like Coda? It's not viewable currently in Coda's preview menu.
    Hmm. I downloaded Coda and messed with it a bit and I can't figure out how to get it to do that. Basically, you'd need a way to get it to recognize that the files need to be previewed with the Apache server instead of just reading them from the temporary files it seems to create. You might have to resort to using two apps open: Coda for editing, then just switch to your regular browser and access it through the "http://localhost" address. That's basically what I do. I edit in TextMate or BBEdit, then use a shortcut like "command-tab" to switch to my browser and preview it there.
    Also mysql is already installed correct?
    No, there's a user created for MySQL, but the server itself isn't installed. The best place to get it is from MySQL's web site. Just make sure you get the right version for your OS and CPU architecture.
    charlie

  • Subject: Verizon suddenly refuses to send email from Eudora (Mac)

    Hello. On August 1st, my computer suddenly lost the ability to send verizon email. It will still receive it, and still sends and receives gmail. I had changed no settings whatsoever (not since last year, when Verizon required a change in the outgoing server name and use of SSL port 465 for SMTP). My iPad will still send a receive fine; it’s just my computer that’s changed. After much troubleshooting, I’ve determined that something changed with verizon’s servers on August 1. Yet a call to Verizon tech support yielded no acknowledgment – other than to confirm that all of my settings appear to be correct.
    I’ve been using Eudora, Mac OS 10.6.8 (I still requre Rosetta for several apps.) Side note: before anyone tells me to “join the modern world:” I add my voice to the small chorus who proclaim that no other email program provides Eudora’s functionality. Having been using it for ~20 years, I have several hundred filtering rules, several dozen active in-boxes (windows spatially arrayed on my screen), several user profiles, and a well-organized, easily-searchable archive of my on-going correspondence. Yes, I am well familiar with Mac Mail, having been using it for three years on my iPad. It pales in comparison (as does iOS in general). I seriously tried Thunderbird about five years ago, and unless it has completely changed its paradigm, it too will not suffice. I hope to continue with Eudora and OS 10.6 (Rosetta) for two more years until I retire, then the rest of world can go ahead and proceed with the dumbing-down of computer functionality, right along with the gradual, slo-mo plunge into idiocracy. But I digress.
    In addition to having confirmed with Verizon that my settings appear to be correct, I have explored various options using ‘x-eudora-settings”, which provide for all sorts of configuration tweaks. For instance, using “<x-eudora-setting:32403@[USER-PERSONALITY]=465> I can confirm that SMTP is using the correct port for SSL authentication. But then this shouldn’t even need changing, as I already had the setting “SSL for SMTP Required ‘alternate port’.”
    Elsewhere, forum users suggest inserting the string “SmtpAuthBanished=CRAM-MD5” into Eudora WINDOWS “.ini” file. I’ve tried the corresponding x-eudora-setting on Mac, to no avail. [ <x-eudora-setting:12909@[USER-PERSONALITY]=cram-md5> ]
    Meanwhile, the official Eudora support site specifies two situations where sending mail might fail: “The server advertises that it supports an authentication mechanism that it does not actually support...[or] The server advertises that it supports an authentication mechanism, but has implemented the mechanism incorrectly.” It seems that this is what has occurred with Verizon – but wish me luck in getting them to acknowledge anything along those lines.
    I’ve explored other settings too. But at this point maybe I’ve noted enough here for someone to recognize the precise issue and to please suggest a fix.
    BTW, Verizon forums website is messed up: it won’t even allow me to register as a user to post there. When I try to sign up, it keeps returning, “Error in Registering User : Could not Register User,Please retry” [sic]. ***?
    A few references:
    http://www.eudora.com/techsupport/mac/xsettings.html
    http://www.eudora.com/techsupport/mac/download/X-Eudora-Settings.txt
    http://www.calweb.com/email-setup/eudora.html
    Thanks,
    Dr. K Hill

    Seamonsters wrote:
    Michael,
    I'm confused. Is SL *Server* required or just the basic SL?
    The MacRumors thread at least implies that basic Snow Leopard can be used:
    http://forums.macrumors.com/showthread.php?t=1365439
    The graphic there of SL is the same as the SL available on the Apple website, part no. MC573Z/A.
    But the thread also states:
    Snow Leopard Server for $19.99 + sales tax & shipping costs at 1.800.MYAPPLE (1.800.692.7753) - Apple Part Number: MC588Z/A (telephone orders only)."
    Different part nos. But I understand the thread is a few years old now. Is it now the case that one can simply order part no. MC573Z/A from the website, for use in a Parallels environment?
    Secondly, I've just read some comments elsewhere to the effect that Oracle's VirtualBox is a nice environment for hosting SL/rosetta – and it's free. Do you, or does anyone, have any comments or tips on running SL (server or basic) in an OVB environment?
    https://www.virtualbox.org/
    I wrote the original tutorial, initially on this site and later moved over to MacRumors when I discovered that it is impossible to modify the initial post on this forum, back when Snow Leopard Server was being sold by Apple for $499+!  So at that time, virtualizing Snow Leopard client was the priority and those instructions successfully completed that task.
    But now with Apple selling SLS at $20, a 95% discount, there is really no reason to go through the added installation and maintenance required by Snow Leopard client into Parallels; much better to just install and maintain SLS!
    I personally have no experience with VirtualBox and little experience with VMWare Fusion.  When I purchased my first Intel Mac, I migrated from VirtualPC on the PPC platform to Parallels and I have stayed with them for convenience and, in my experiences, a good product!  Ironically to this day I am still able to use the licensed copy of Windows XP from VirtualPC on Parallels for my brief Windows needs!
    Aha, I read on VMWare's site that the SL has to be "server" due only to Apple's EULA. So that's it.
    It was a common Urban Myth that the Snow Leopard EULA prohibits its virtualization in Lion, Mt. Lion and Mavericks on a Mac.  That myth has been successfully debunked over the last three years, and given the price reduction in SLS, this action has effectively rendered the little remaining debate (by the one or two members of this forum, who have nothing better to do with their time) moot!
    I would be curious to see a link over to where the VMWare site makes such a claim and I would be happy to address it, once I have reviewed it.
    Still would be nice to have a better comparative sense of Parallels, VMWare and VirtualBox, as pertains to running SL Server, Eudora, and other Rosetta apps (e.g., in the music and audio world in particular).
    Again, I cannot help you here; maybe others will jump in on this question; however anecdotal comments on this forum suggest that Parallels functions at a better level in general (and they also offer a 14 day free trial download, which if you intend to use, you should obtain SLS before you activate the 14 day period).

  • How do i change the path of data ajax false from returning to homepage, when using a PHP mail form in jquery mobile?

    I have a put a php mail form in the quote page of my mobile site. However when i send the form it returns to the route page rather than the quote page, i have used the data ajax false action as i dont want to send via ajax. i have left the thanks page blank as i want it to remain on the same page showing sent or declined message.  Can someone help please? 
    <?php
    // OPTIONS - PLEASE CONFIGURE THESE BEFORE USE!
    $yourEmail = "[email protected]"; // the email address you wish to receive these mails through
    $yourWebsite = "www.firstcalltransport.co.uk"; // the name of your website
    $thanksPage = ''; // URL to 'thanks for sending mail' page; leave empty to keep message on the same page
    $maxPoints = 4; // max points a person can hit before it refuses to submit - recommend 4
    $requiredFields = "name,email,collection,delivery,comments"; // names of the fields you'd like to be required as a minimum, separate each field with a comma
    // DO NOT EDIT BELOW HERE
    $error_msg = array();
    $result = null;
    $requiredFields = explode(",", $requiredFields);
    function clean($data) {
      $data = trim(stripslashes(strip_tags($data)));
      return $data;
    function isBot() {
      $bots = array("Indy", "Blaiz", "Java", "libwww-perl", "Python", "OutfoxBot", "User-Agent", "PycURL", "AlphaServer", "T8Abot", "Syntryx", "WinHttp", "WebBandit", "nicebot", "Teoma", "alexa", "froogle", "inktomi", "looksmart", "URL_Spider_SQL", "Firefly", "NationalDirectory", "Ask Jeeves", "TECNOSEEK", "InfoSeek", "WebFindBot", "girafabot", "crawler", "www.galaxy.com", "Googlebot", "Scooter", "Slurp", "appie", "FAST", "WebBug", "Spade", "ZyBorg", "rabaz");
      foreach ($bots as $bot)
      if (stripos($_SERVER['HTTP_USER_AGENT'], $bot) !== false)
      return true;
      if (empty($_SERVER['HTTP_USER_AGENT']) || $_SERVER['HTTP_USER_AGENT'] == " ")
      return true;
      return false;
    if ($_SERVER['REQUEST_METHOD'] == "POST") {
      if (isBot() !== false)
      $error_msg[] = "No bots please! UA reported as: ".$_SERVER['HTTP_USER_AGENT'];
      // lets check a few things - not enough to trigger an error on their own, but worth assigning a spam score..
      // score quickly adds up therefore allowing genuine users with 'accidental' score through but cutting out real spam
      $points = (int)0;
      foreach ($badwords as $word)
      if (
      strpos(strtolower($_POST['comments']), $word) !== false ||
      strpos(strtolower($_POST['name']), $word) !== false
      $points += 2;
      if (strpos($_POST['comments'], "http://") !== false || strpos($_POST['comments'], "www.") !== false)
      $points += 2;
      if (isset($_POST['nojs']))
      $points += 1;
      if (preg_match("/(<.*>)/i", $_POST['comments']))
      $points += 2;
      if (strlen($_POST['name']) < 3)
      $points += 1;
      if (strlen($_POST['comments']) < 15 || strlen($_POST['comments'] > 1500))
      $points += 2;
      if (preg_match("/[bcdfghjklmnpqrstvwxyz]{7,}/i", $_POST['comments']))
      $points += 1;
      // end score assignments
      foreach($requiredFields as $field) {
      trim($_POST[$field]);
      if (!isset($_POST[$field]) || empty($_POST[$field]) && array_pop($error_msg) != "Please fill in all the required fields and submit again.\r\n")
      $error_msg[] = "Please fill in all the required fields and submit again.";
      if (!empty($_POST['name']) && !preg_match("/^[a-zA-Z-'\s]*$/", stripslashes($_POST['name'])))
      $error_msg[] = "The name field must not contain special characters.\r\n";
      if (!empty($_POST['email']) && !preg_match('/^([a-z0-9])(([-a-z0-9._])*([a-z0-9]))*\@([a-z0-9])(([a-z0-9-])*([a-z0-9]))+ ' . '(\.([a-z0-9])([-a-z0-9_-])?([a-z0-9])+)+$/i', strtolower($_POST['email'])))
      $error_msg[] = "That is not a valid e-mail address.\r\n";
      if (!empty($_POST['url']) && !preg_match('/^(http|https):\/\/(([A-Z0-9][A-Z0-9_-]*)(\.[A-Z0-9][A-Z0-9_-]*)+)(:(\d+))?\ /?/i', $_POST['url']))
      $error_msg[] = "Invalid website url.\r\n";
      if ($error_msg == NULL && $points <= $maxPoints) {
      $subject = "Automatic Form Email";
      $message = "You received this e-mail message through your website: \n\n";
      foreach ($_POST as $key => $val) {
      if (is_array($val)) {
      foreach ($val as $subval) {
      $message .= ucwords($key) . ": " . clean($subval) . "\r\n";
      } else {
      $message .= ucwords($key) . ": " . clean($val) . "\r\n";
      $message .= "\r\n";
      $message .= 'IP: '.$_SERVER['REMOTE_ADDR']."\r\n";
      $message .= 'Browser: '.$_SERVER['HTTP_USER_AGENT']."\r\n";
      $message .= 'Points: '.$points;
      if (strstr($_SERVER['SERVER_SOFTWARE'], "Win")) {
      $headers   = "From: $yourEmail\r\n";
      } else {
      $headers   = "From: $yourWebsite <$yourEmail>\r\n";
      $headers  .= "Reply-To: {$_POST['email']}\r\n";
      if (mail($yourEmail,$subject,$message,$headers)) {
      if (!empty($thanksPage)) {
      header("Location: $thanksPage");
      exit;
      } else {
      $result = 'Your mail was successfully sent.';
      $disable = true;
      } else {
      $error_msg[] = 'Your mail could not be sent this time. ['.$points.']';
      } else {
      if (empty($error_msg))
      $error_msg[] = 'Your mail looks too much like spam, and could not be sent this time. ['.$points.']';
    function get_data($var) {
      if (isset($_POST[$var]))
      echo htmlspecialchars($_POST[$var]);
    ?>
    <!DOCTYPE HTML>
    <html>
    <head>
    <meta charset="utf-8">
    <title>Untitled Document</title>
    <link href="CSS/stylesheetnew.css" rel="stylesheet" type="text/css">
    <link href="../jquery-mobile/jquery.mobile-1.0a3.min.css" rel="stylesheet" type="text/css">
    <script src="../jquery-mobile/jquery-1.5.min.js" type="text/javascript"></script>
    <script src="../jquery-mobile/jquery.mobile-1.0a3.min.js" type="text/javascript"></script>
    <style type="text/css">
      p.error, p.success {
      font-weight: bold;
      padding: 10px;
      border: 1px solid;
      p.error {
      background: #ffc0c0;
      color: #F00;
      p.success {
      background: #b3ff69;
      color: #4fa000;
    </style>
    </head>
    <body>
    <div data-role="page" id="home">
      <div data-role="header" data-position="fixed">
       <h1>FIRSTCALL TRANSPORT</h1>
    </div>
        <div data-role="navbar" data-position="fixed">
                                    <ul>
                                      <li><a href="#about">About</a></li>
                                      <li><a href="#services">Services</a></li>
                                      <li><a href="#contact">Contact</a></li>
                                      <li><a href="#quote">Quote</a></li>
                                    </ul>
      </div>
      <div data-role="content"> </div>
         <div data-role="footer" data-position="fixed" > </div>
    </div>
    </div>
    <div data-role="page" id="quote">
      <div data-role="header" data-position="fixed">
        <h1>GET A QUOTE</h1>
      </div>
      <div data-role="content">
       <?php
    if (!empty($error_msg)) {
      echo '<p class="error">ERROR: '. implode("<br />", $error_msg) . "</p>";
    if ($result != NULL) {
      echo '<p class="success">'. $result . "</p>";
    ?>
    <form action="<?php echo basename(__FILE__); ?>" method="post" data-ajax="false"  >
    <noscript>
      <p><input type="hidden" name="nojs" id="nojs" /></p>
    </noscript>
    <p>
      <label for="name">Name: *</label>
      <input type="text" name="name" id="name" value="<?php get_data("name"); ?>" /><br />
      <label for="email">E-mail: *</label>
      <input type="text" name="email" id="email" value="<?php get_data("email"); ?>" /><br />
            <label for="company">Company:</label>
      <input type="text" name="company" id="company" value="<?php get_data("company"); ?>" /><br />
      <label for="collection">Collection: *</label>
      <input type="text" name="collection" id="collection" value="<?php get_data("collection"); ?>" /><br />
        <label for="delivery">Delivery: *</label>
      <input type="text" name="delivery" id="delivery" value="<?php get_data("delivery"); ?>" /><br />
      <label for="comments">Message: *</label>
      <textarea name="comments" id="comments" rows="5" cols="20"><?php get_data("comments"); ?></textarea><br />
      <input type="submit" name="submit" id="submit" value="Send" <?php if (isset($disable) && $disable === true) echo ' disabled="disabled"'; ?> />
    </p>
    </form>  </div>
         <div data-role="footer" >  </div>
      </div>
      </div>           
    </body>
    </html>

    My wife has left me for four weeks, favouring to be with our son who lives 4,000 km away. I now have to cook for myself and the steaks taste horrible. What am I doing wrong?
    If you do not know what I have (not) done to make the steak taste horrible, my question is as hard to answer as your question above.
    Please give us more info like giving us the code that sends the page to the homepage rather than to the previous page.

Maybe you are looking for