[2015-12-18 15:32:04] myapp.INFO: > GET /html/admin/setting/system/member [] []
[2015-12-18 15:32:04] myapp.INFO: Matched route "admin_setting_system_member". {"route_parameters":{"_controller":"\\Eccube\\Controller\\Admin\\Setting\\System\\MemberController::index","_route":"admin_setting_system_member"},"request_uri":"http://localhost:33984/html/admin/setting/system/member"} []
[2015-12-18 15:31:13] myapp.INFO: < 200 [] []
[2015-12-18 15:31:13] myapp.INFO: Matched route "block_news". {"route_parameters":{"_controller":"\\Eccube\\Controller\\Block\\NewsController::index","_route":"block_news"},"request_uri":"http://localhost:33984/html/block/news"} []
[2015-12-18 15:31:13] myapp.INFO: Matched route "block_category". {"route_parameters":{"_controller":"\\Eccube\\Controller\\Block\\CategoryController::index","_route":"block_category"},"request_uri":"http://localhost:33984/html/block/category"} []
[2015-12-18 15:31:13] myapp.INFO: Matched route "block_login". {"route_parameters":{"_controller":"\\Eccube\\
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
say -v '?' | while read i; do say -i -v `echo ${i} | awk '{print $1}'` ${i} ; done |
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
public function getValue($keyname) | |
{ | |
// リアルタイム表示 | |
switch ($keyname) { | |
case 'point': | |
case 'sf_id: | |
$objQuery =& SC_Query_Ex::getSingletonInstance(); | |
$value = $objQuery->get($keyname, 'dtb_customer', 'customer_id = ?', array($_SESSION['customer']['customer_id'])); | |
$_SESSION['customer'][$keyname] = $value; |
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
{% macro recursiveCategories(Category) %} | |
{% if Category.hasChildNodes() %} | |
<ul> | |
{% for child in Category.childNodes() %} | |
<li>{{ child.name }}</li> | |
{{ _self.recursiveCategories(child) }} | |
{% endfor %} | |
</ul> | |
{% endif %} | |
{% endmacro %} |
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
--- a/src/Eccube/Controller/ShoppingController.php | |
+++ b/src/Eccube/Controller/ShoppingController.php | |
@@ -134,6 +134,7 @@ class ShoppingController extends AbstractController | |
$cartService = $app['eccube.service.cart']; | |
$orderService = $app['eccube.service.order']; | |
$orderRepository = $app['eccube.repository.order']; | |
+ $paymentService = $app['eccube.service.payment']; | |
// カートチェック | |
if (!$cartService->isLocked()) { |
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 | |
require_once DATA_REALDIR . 'module/force.com-toolkit/SforcePartnerClient.php'; | |
/** | |
* EC-CUBE セールスフォース連携ヘルパー | |
*/ | |
class SC_Helper_SForce { | |
private static $instance; |
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
extension_dir=D:\home\site\wwwroot\bin\php\ext\ ;; 修正 | |
;extension=php_oci8.dll ;; Oracle 11g より前のバージョンはこちらを有効に | |
extension=php_oci8_11g.dll ;; Oracle 11g 以降のバージョンはこちらを有効に | |
extension=php_pdo_oci.dll ;; 追加 |
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
########################################### | |
# log4j でバッチの情報ログとデバッグログを分ける | |
########################################### | |
## アプリケーションの情報ログ | |
log4j.category.jp.example.batch=INFO, FILE, C | |
log4j.additivity.jp.example.batch=false | |
## 各種ライブラリのログ | |
log4j.category.org.seasar=DEBUG, FILE2, C |
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
$dbh = DBI->connect("dbi:Oracle://<Host Name>:1521/<Service Name>", username, password); |
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
CREATE INDEX index_name_idx ON table_name (column_name text_pattern_ops); |