This file contains hidden or 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 get_header(); ?> | |
<div id="content" class="group two-col"> | |
<div id="main-content" class="single-<?php the_ID(); ?>"> | |
<h1> <?php the_title(); ?> </h1> | |
<?php if(have_posts()) : while(have_posts()) : the_post(); ?> | |
<div class="single-content"> | |
<?php the_content(); ?> |
This file contains hidden or 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
#!/bin/sh | |
# | |
# memcached Startup script for memcached processes | |
# | |
# chkconfig: - 90 10 | |
# description: Memcache provides fast memory based storage. | |
# processname: memcached | |
# These mappings correspond one-to-one with Drupal's settings.php file. |
This file contains hidden or 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 | |
return $node->title !== '' ? $node->title : hash('md5', $node->field_subtitle[0]['value']); | |
?> |
This file contains hidden or 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
troubleshooting | |
=========================================== | |
http://vagrantup.com/v1/docs/troubleshooting.html | |
[default] -- v-root: /vagrant | |
The following SSH command responded with a non-zero exit status. | |
Vagrant assumes that this means the command failed! | |
mount -t vboxsf -o uid=`id -u vagrant`,gid=`id -g vagrant` v-root /vagrant |
This file contains hidden or 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 | |
/** APC-AA configuration file */ | |
require_once "include/config.php3"; | |
/** Main include file for using session management function on a page */ | |
require_once AA_INC_PATH."locsess.php3"; | |
/** Set of useful functions used on most pages */ | |
require_once AA_INC_PATH."util.php3"; | |
$AA_CP_Session = $_POST['AA_CP_Session']; |
This file contains hidden or 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
class AA_Stringexpand_Selectbox extends AA_Stringexpand { | |
function expand() { | |
$group_id = 'NIVELPROCESOS'; | |
$fid = 'category.......7'; | |
$categ = 1; | |
$return_url = "http://www.google.com"; | |
$form .= ''; | |
$form .= "<form action=\"\" method=\"post\" name=\"form-tipo-procesos\" id=\"form-tipo-procesos\">"; | |
$form .= "<input type=hidden name=\"AA_CP_Session\" value=\"" . $AA_CP_Session . "\">"; |
This file contains hidden or 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 | |
/** | |
* @file | |
* Set field to default value. | |
*/ | |
$plugin = array( | |
'form' => 'feeds_tamper_php_form', | |
'callback' => 'feeds_tamper_php_callback', |
This file contains hidden or 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
CREATE TABLE IF NOT EXISTS `agrovocterm` ( | |
`termcode` int(11) NOT NULL DEFAULT '0', | |
`languagecode` varchar(2) NOT NULL, | |
`termspell` varchar(170) NOT NULL, | |
`statusid` tinyint(4) DEFAULT NULL, | |
`createdate` datetime DEFAULT NULL, | |
`frequencyiad` int(11) DEFAULT NULL, | |
`frequencycad` int(11) DEFAULT NULL, | |
`lastupdate` datetime DEFAULT NULL, | |
`scopeid` varchar(2) DEFAULT NULL, |
This file contains hidden or 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
'./configure' '--build=x86_64-redhat-linux-gnu' '--host=x86_64-redhat-linux-gnu' '--target=x86_64-redhat-linux-gnu' '--program-prefix=' '--prefix=/usr' '--exec-prefix=/usr' '--bindir=/usr/bin' '--sbindir=/usr/sbin' '--sysconfdir=/etc' '--datadir=/usr/share' '--includedir=/usr/include' '--libdir=/usr/lib64' '--libexecdir=/usr/libexec' '--localstatedir=/var' '--sharedstatedir=/var/lib' '--mandir=/usr/share/man' '--infodir=/usr/share/info' '--cache-file=../config.cache' '--with-libdir=lib64' '--with-config-file-path=/etc' '--with-config-file-scan-dir=/etc/php.d' '--disable-debug' '--with-pic' '--disable-rpath' '--without-pear' '--with-bz2' '--with-exec-dir=/usr/bin' '--with-freetype-dir=/usr' '--with-png-dir=/usr' '--with-xpm-dir=/usr' '--enable-gd-native-ttf' '--without-gdbm' '--with-gettext' '--with-gmp' '--with-iconv' '--with-jpeg-dir=/usr' '--with-openssl' '--with-pcre-regex=/usr' '--with-zlib' '--with-layout=GNU' '--enable-exif' '--enable-ftp' '--enable-magic-quotes' '--enable-sockets' '--enable-sysvsem' '- |