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
# 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 all requests that do not | |
# match a ServerName or ServerAlias in any <VirtualHost> block. | |
# |
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 | |
/* * | |
* This script belongs to the TYPO3 Flow framework. * | |
* * | |
* It is free software; you can redistribute it and/or modify it under * | |
* the terms of the GNU Lesser General Public License, either version 3 * | |
* of the License, or (at your option) any later version. * | |
* * | |
* The TYPO3 project - inspiring people to share! * |
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 file contains any messages produced by compilers while | |
running configure, to aid debugging if configure makes a mistake. | |
configure:1897: checking for Cygwin environment | |
configure:1913: /usr/bin/clang -c -pipe -Os -arch x86_64 -I/opt/local/include conftest.c 1>&5 | |
configure:1909:8: error: use of undeclared identifier '__CYGWIN32__' | |
return __CYGWIN__; | |
^ | |
configure:1907:20: note: expanded from macro '__CYGWIN__' | |
#define __CYGWIN__ __CYGWIN32__ |
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
Warning: Uncaught exception 'TYPO3\Flow\Error\Exception' with message 'Notice: Undefined variable: exception in /opt/local/apache2/htdocs/TYPO3-Neos/Data/Temporary/Development/Cache/Code/Flow_Object_Classes/TYPO3_Flow_Persistence_Doctrine_Query.php line 166' in /opt/local/apache2/htdocs/TYPO3-Neos/Packages/Framework/TYPO3.Flow/Classes/TYPO3/Flow/Error/ErrorHandler.php:77 Stack trace: #0 /opt/local/apache2/htdocs/TYPO3-Neos/Data/Temporary/Development/Cache/Code/Flow_Object_Classes/TYPO3_Flow_Persistence_Doctrine_Query.php(166): TYPO3\Flow\Error\ErrorHandler->handleError(8, 'Undefined varia...', '/opt/local/apac...', 166, Array) #1 /opt/local/apache2/htdocs/TYPO3-Neos/Data/Temporary/Development/Cache/Code/Flow_Object_Classes/TYPO3_Flow_Persistence_Doctrine_QueryResult.php(48): TYPO3\Flow\Persistence\Doctrine\Query_Original->getResult() #2 /opt/local/apache2/htdocs/TYPO3-Neos/Data/Temporary/Development/Cache/Code/Flow_Object_Classes/TYPO3_Flow_Persistence_Doctrine_QueryResult.php(97): TYPO3\Flow\Persistence\Doct |
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
/** | |
* Magento Mobile | |
* | |
* NOTICE OF LICENSE | |
* | |
* This source file is subject to the Magento Mobile License | |
* that is bundled with this package in the file LICENSE_MOBILE.txt. | |
* It is also available through the world-wide-web at this URL: | |
* http://www.magentocommerce.com/license/mobile-source-code | |
* If you did not receive a copy of the license and are unable to |
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
jQuery(document).ready(function($){ | |
$('form').submit(function(event){ | |
//if analytics object exists | |
if(window._gat){ | |
event.preventDefault(); | |
optinForm = this; | |
_gaq.push(['_set','hitCallback', function(){ | |
optinForm.submit(); | |
}]); | |
_gaq.push(['_trackEvent', 'Forms', 'Submit', 'hbsanewtraffic']); |