Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/pixelhandler/simplephpskinner
very basic template that wraps common files around content with php
https://github.com/pixelhandler/simplephpskinner
Last synced: 8 days ago
JSON representation
very basic template that wraps common files around content with php
- Host: GitHub
- URL: https://github.com/pixelhandler/simplephpskinner
- Owner: pixelhandler
- Created: 2010-08-15T08:58:40.000Z (over 14 years ago)
- Default Branch: master
- Last Pushed: 2010-08-15T09:06:27.000Z (over 14 years ago)
- Last Synced: 2024-10-30T12:25:31.739Z (about 2 months ago)
- Language: PHP
- Homepage:
- Size: 93.8 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
README for simplephpskinner
================================---------------------------------------
* Very basic template that wraps common files around content with php
---------------------------------------_DNS notes, running on MAMP_
instructions for running your site on http://mysite.local:8888/edit your hosts file with Textmate
`mate /etc/hosts`add your site
`127.0.0.1 mysite.local`if needed flush DNS on mac
`dscacheutil -flushcache`add vhosts include:
`mate /Applications/MAMP/conf/apache/httpd.conf`
the code below needs to be at the end of our httpd.conf file ...NameVirtualHost *
`Include /Applications/MAMP/conf/apache/httpd-vhosts.conf``mate /Applications/MAMP/conf/apache/httpd-vhosts.conf`
below are the contents of the httpd-vhosts.conf file ...
be sure to change yourhomedirectory to the result of
`cd ~
pwd`
remember to start/stop MAMP when all setup
`
#
# Virtual Hosts
#
NameVirtualHost *:8888DocumentRoot /Users/home/Sites/htdocs
ServerName localhost
AllowOverride All
DocumentRoot /Users/yourhomedirectory/Sites/htdocs/simplephpskinner
ServerName mysite.local`