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
/** | |
* jQuery Markup First and Last Plugin | |
* | |
* Copyright 2009, nojimage (http://php-tips.com/) | |
* | |
* Licensed under The MIT License | |
* Redistributions of files must retain the above copyright notice. | |
* | |
* @filesource | |
* @version 1.0 |
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 | |
/** | |
* | |
* AppEmailComponent (for Japanese) | |
* | |
* Copyright 2010, nojimage (http://php-tips.com/) | |
* | |
* Licensed under The MIT License | |
* Redistributions of files must retain the above copyright notice. | |
* |
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
/** | |
* jQuery firefox table border bug fix plugin | |
* | |
* Copyright 2009, nojimage (http://php-tips.com/) | |
* | |
* Licensed under The MIT License | |
* Redistributions of files must retain the above copyright notice. | |
* | |
* @filesource | |
* @version 1.0 |
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
Index: mpdf.php | |
=================================================================== | |
--- mpdf.php (original) | |
+++ mpdf.php (new) | |
@@ -8000,16 +8000,25 @@ | |
// JPEG | |
if ($type == 'jpeg' || $type == 'jpg') { | |
- $hdr = $this->_jpgHeaderFromString($data); | |
- if (!$hdr) { return $this->_imageError($file, $firsttime, 'Error parsing JPG header'); } |
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 | |
## EC CUBE set permission | |
chmod -R o+w html/install/temp/ | |
chmod -R o+w html/user_data/ | |
chmod -R o+w html/upload/ | |
chmod -R o+w data/class/ | |
chmod -R o+w data/cache/ | |
chmod -R o+w data/logs/ | |
chmod -R o+w data/downloads/ | |
chmod -R o+w data/upload/ |
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
diff --git a/cake/libs/model/datasources/dbo/dbo_mysql.php b/cake/libs/model/datasources/dbo/dbo_mysql.php | |
index 2cc215b..2730c0d 100644 | |
--- a/cake/libs/model/datasources/dbo/dbo_mysql.php | |
+++ b/cake/libs/model/datasources/dbo/dbo_mysql.php | |
@@ -781,5 +781,20 @@ class DboMysql extends DboMysqlBase { | |
} | |
return false; | |
} | |
+ | |
+/** |
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 | |
/** | |
* PEAR Class Loader for CakePHP | |
* | |
* ex. pear_import('Net_DNS'); | |
* | |
* @param $className | |
* @return boolean | |
*/ | |
function pear_import($className) { |
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
.svn/ | |
.DS_Store | |
*.bak | |
; eclipse files | |
.buildpath | |
.project | |
.settings/ | |
; cakephp temp files |
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 | |
## | |
# | |
# BaserCMS install suppot script | |
# | |
## | |
## set permissions | |
chmod o+w app/config/ | |
chmod o+w app/config/core.php |
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 | |
# | |
# .git/hooks/post-checkout | |
# | |
# cakephp apps chmod app tmp dir | |
chmod -R o+w app/tmp |