This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
chmod 777 administrator/backups/ administrator/language/ administrator/components/ administrator/language/en-GB/ administrator/modules/ administrator/templates/ components/ images/ images/banners/ images/stories/ language/ language/en-GB/ language/en-GB/ language/pdf_fonts/ media/ modules/ plugins/ plugins/content/ plugins/editors/ plugins/editors-xtd/ plugins/search/ plugins/system/ plugins/user/ plugins/xmlrpc/ templates/ /opt/local/www/joomla15/cache/ /opt/local/www/joomla15/administrator/cache/ /opt/local/www/joomla15/logs/ /opt/local/www/joomla15/tmp/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<? | |
/* | |
Author: Jamie Telin ([email protected]), currently at employed Zebramedia.se | |
Scriptname: W3C Validation Api v1.0 (W3C Markup Validation Service) | |
Use: | |
//Create new object | |
$validate = new W3cValidateApi; | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo ln -s /opt/local/var/run/mysql5/mysqld.sock /tmp/mysql.sock // to make rails find mysql.sock http://paulsturgess.co.uk/articles/46-using-macportsdarwinports-to-install-ruby-on-rails-mysql-subversion-capistrano-and-mongrel-on-mac-os-x | |
database.yml | |
Development: | |
adapter: mysql2 | |
encoding: utf8 | |
database: blog_development | |
pool: 5 | |
username: root |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
To avoid: RuntimeError (Please install the mysql2 adapter: `gem install activerecord-mysql2-adapter` (no such file to load -- active_record/connection_adapters/mysql2_adapter)): | |
in Gemfile gem 'mysql2', '< 0.3' | |
bundle update |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This is a template .gitignore file for git-managed WordPress projects. | |
# | |
# Fact: you don't want WordPress core files, or your server-specific | |
# configuration files etc., in your project's repository. You just don't. | |
# | |
# Solution: stick this file up your repository root (which it assumes is | |
# also the WordPress root directory) and add exceptions for any plugins, | |
# themes, and other directories that should be under version control. | |
# | |
# See the comments below for more info on how to add exceptions for your |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/* | |
Plugin Name: Accompany Text Widget | |
Plugin URI: http://imagewize.com/ | |
Description: Accompany Post Widget grabs a Accompany post and the associated thumbnail to display on your sidebar based on egetway.com 's development | |
Author: Jasper Frumau | |
Version: 2 | |
Author URI: http://jasperfrumau.com/ | |
*/ | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div id="slider-wrapper"> | |
<div class="slider-wrapper theme-default"> | |
<div class="ribbon"></div> | |
<div id="slider" class="nivoSlider"> | |
<?php $pj_slider = new WP_Query('post_type=img_slideshow&showposts=4'); while($pj_slider->have_posts()) : $pj_slider->the_post(); ?> | |
<?php $pj_slider_caption = '#slider-caption-'.get_the_ID(); ?> | |
<?php if(has_post_thumbnail() ) { ?> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- Include the Nivo Slider JS file --> | |
<script src="<?php bloginfo("template_url"); ?>/scripts/nivoslider/jquery.nivo.slider.pack.js" type="text/javascript"></script> | |
<!-- Set up the Nivo Slider --> | |
<script type="text/javascript"> | |
jQuery(window).load(function() { | |
jQuery('#slider').nivoSlider({ | |
effect: 'fade', // Specify sets like: 'fold,fade,sliceDown,slideInRight,sliceUpLeft' | |
animSpeed: 500, // Slide transition speed | |
pauseTime: 6000, // How long each slide will show | |
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*---------------------------------------- | |
Slider Custom Post Type | |
---------------------------------------------*/ | |
add_action( 'init', 'create_slider' ); | |
function create_slider() { | |
register_post_type( 'img_slideshow', | |
array( | |
'labels' => array( | |
'name' => __( 'Slides' ), |
OlderNewer