Strict Standards: Non-static method Protector::getInstance() should not be called statically in /home/suehirogari/suehirogari.com/xoops_trust_path/modules/protector/include/precheck_functions.php on line 12

Strict Standards: Non-static method XCube_Root::getSingleton() should not be called statically in /home/suehirogari/suehirogari.com/public_html/include/common.php on line 18

Deprecated: Non-static method XCube_Root::getSingleton() should not be called statically, assuming $this from incompatible context in /home/suehirogari/suehirogari.com/public_html/modules/user/preload/Primary/Primary.class.php on line 13
xoopsズープスカテゴリのエントリ | 社内SEのウェブ制作

2010.04.02xoopsズープス

セッションが不正です。 って。 検索した情報で index.phpの } elseif ( $inq_req->get_session_vars('op') !== "" ) { $op = intval($inq_req->get_session_vars('op')); の2行をコメントアウトした。 検収はこれから。


このカテゴリの人気記事



  • コメント (0)
  • トラックバック (0)
  • 閲覧 (22134)
2010.04.01xoopsズープス
ブレティンのテンプレート管理の bulletin_submit.htmlの以下の
箇所を変更して広く使う

<tr align="left" valign="top">
<td class="head"><{$smarty.const._MD_THESCOOP}></td>
<td class="even">
<{if $use_fckeditor}>
<label><input type="checkbox" name="using_fck" checked="checked" onClick="var td=xoopsGetElementById('area_dhtmltarea');var tf=xoopsGetElementById('area_fckxoops');if(this.checked){tf.style.display='block';td.style.display='none';}else{td.style.display='block';tf.style.display='none';};" /><{$smarty.const._MD_FCKXOOPS_ONOFF}></label>
<{/if}>
<div id="area_dhtmltarea">
<label><input type="checkbox" onClick="var pre=xoopsGetElementById('text_bbcode_buttons_pre');var post=xoopsGetElementById('text_bbcode_buttons_post');if(this.checked){pre.style.display='block';post.style.display='block'}else{pre.style.display='none';post.style.display='none'};" /><{$smarty.const._MD_INPUTHELPER}></label>
<br />
<{xoopsdhtmltarea name="text" cols=$bulletin_post_tray_col rows=$bulletin_post_tray_row value=$text pre_style="display:none;" post_style="display:none;"}> </div>
<{if $use_fckeditor}>
<div id="area_fckxoops">
<script type="text/javascript" src="<{$xoops_url}>/common/fckeditor/fckeditor.js"></script>
<script type="text/javascript">
function fckeditor_exec() {
var oFCKeditor = new FCKeditor( "text_fck" , "100%" , "500" , "Default" );
oFCKeditor.BasePath = "<{$xoops_url}>/common/fckeditor/";
oFCKeditor.ReplaceTextarea();
}
</script>
<textarea id="text_fck" name="text_fck"><{$text}></textarea>
<script>
fckeditor_exec();
xoopsGetElementById('area_dhtmltarea').style.display='none';
</script>
</div>
<{/if}>
<div><{$smarty.const._MULTIPAGE}></div> </td>
</tr>




<tr align="left" valign="top">
<td colspan="2"><{if $use_fckeditor}>
<label><input type="checkbox" name="using_fck" checked="checked" onclick="var td=xoopsGetElementById('area_dhtmltarea');var tf=xoopsGetElementById('area_fckxoops');if(this.checked){tf.style.display='block';td.style.display='none';}else{td.style.display='block';tf.style.display='none';};" /><{$smarty.const._MD_FCKXOOPS_ONOFF}></label>
<{/if}>
<div id="area_dhtmltarea">
<label><input type="checkbox" onclick="var pre=xoopsGetElementById('text_bbcode_buttons_pre');var post=xoopsGetElementById('text_bbcode_buttons_post');if(this.checked){pre.style.display='block';post.style.display='block'}else{pre.style.display='none';post.style.display='none'};" /><{$smarty.const._MD_INPUTHELPER}></label>
<br />
<{xoopsdhtmltarea name="text" cols=$bulletin_post_tray_col rows=$bulletin_post_tray_row value=$text pre_style="display:none;" post_style="display:none;"}> </div> <{if $use_fckeditor}>
<div id="area_fckxoops">
<script type="text/javascript" src="<{$xoops_url}>/common/fckeditor/fckeditor.js"></script>
<script type="text/javascript">
function fckeditor_exec() {
var oFCKeditor = new FCKeditor( "text_fck" , "100%" , "500" , "Default" );
oFCKeditor.BasePath = "<{$xoops_url}>/common/fckeditor/";
oFCKeditor.ReplaceTextarea();
}
</script>
<textarea id="text_fck" name="text_fck"><{$text}></textarea>
<script>
fckeditor_exec();
xoopsGetElementById('area_dhtmltarea').style.display='none';
</script>
</div> <{/if}>
<div><{$smarty.const._MULTIPAGE}></div></td>
</tr>


に変更する。

このカテゴリの人気記事



  • コメント (0)
  • トラックバック (0)
  • 閲覧 (17498)
2010.04.01xoopsズープス
xoops_root_path] [common][fckeditor]fckconfig.js

FCKConfig.CustomConfigurationsPath = '' ;
FCKConfig.EditorAreaCSS = FCKConfig.BasePath + 'css/fck_editorarea.css' ;

をcss/fck_editorarea.css を変更する。
キャッシュが残るのかアップロードしてもすぐに反映されない。

このカテゴリの人気記事



  • コメント (0)
  • トラックバック (0)
  • 閲覧 (20977)
2010.04.01xoopsズープス
xoops_trust_pathのclass buletin.php

$this->initVar("html", XOBJ_DTYPE_INT, 1, false);
$this->initVar("smiley", XOBJ_DTYPE_INT, 1, false);
$this->initVar("br", XOBJ_DTYPE_INT, 0, false);
$this->initVar("xcode", XOBJ_DTYPE_INT, 1, false);

へ変更で HTMLを有効にして、かつ改行を自動挿入するを解除できる。

このカテゴリの人気記事



  • コメント (0)
  • トラックバック (0)
  • 閲覧 (14773)
2010.03.30xoopsズープス
pico
・モジュールタイトル
<{$xoops_modulename}>

ページタイトル
<{$content.subject}>

このカテゴリの人気記事



  • コメント (0)
  • トラックバック (0)
  • 閲覧 (14993)


キーワードでサイト内を検索
人気のエントリ