PEAK XOOPS - Downloads in englishin japanese






Main : Etc. : 



Sort by:  Title () Date () Rating () Popularity ()
Files currently sorted by: Date (New Files Listed First)

Category: Etc.           php5
Download Now! Download Now! FCKeditor on XOOPS Popular Version: 2.5.1-003
Submitted Date:  2009/11/11
Description:
in englishin japanese
== FCKeditor for XOOPS ==

USAGE
- extract file tree under XOOPS_ROOT_PATH (XOOPS_ROOT_PATH/common/)
- make directory named fckeditor under uploads (XOOPS_ROOT_PATH/uploads/fckeditor/)
- set permission of the directory 0777 (if your PHP runs as CGI, set 0755 instead)
- to modify configuration, rename editor/filemanager/connectors/php/config_and_auth.inc.dist.php to config_and_auth.inc.php. then edit the file.


DIFF

- file tree
all of connectors or uploaders other than php are removed.
and php connector and uploader have been modified radically. (for preventing fatal vulnerability)

- two repositories for images and files
Image files (jpeg,gif,png) will be stored inside DocumentRoot.
Files other than images will be stored outside of DocumentRoot (XOOPS_TRUST_PATH).

- the file name stored in the server is independent from local file name
Image files will be renamed newly.
File names of other than images will be encoded like pukiwiki.

- consider safe_mode
if you want to create folder under safe_mode, you have to make the directory manually via FTP etc.

- permission of uploading
only admin of XOOPS can upload with default config_and_auth.inc.php

- uploading by normal users
If you want to allow normal users can upload image files, modify $fck_uploadable_groups in config_and_auth.inc.php
A normal user can browse only files uploaded by him/herself.
A normal user cannot create a new folder.

- permission of listing files
Admins can get a list of all uploaded files.
Normal users can get a list of files uploaded by him/herself.

- permission of accessing each files
All visitors within guests can access any uploaded files if he/she knows its url.

- permission of removing files
Admins can delete all of uploaded files.
Normal users can delete files uploaded by him/herself within 3600sec. (default)

- resize original/making thumnail
If you want special action about uploaded files, modify config_and_auth.inc.php as you like.
A function fck_resize_by_imagemagick() will be a good sample.
(Resizing original image files inside 480x480 box by ImageMagick Package)




Downloaded 53513 times  53513  File Size 522.67 KB  Supported Platforms tar.gz|zip|php5  Home Page http://www.peak.ne.jp/
Modify | Report Broken File | Tell a Friend | Comments (4)


Category: Etc.           php5
Download Now! mymenu 1.00 for conventional modules Popular Version: 1.00
Submitted Date:  2008/12/8
Description:
in englishin japanese- mymenu for conventional modules -


SUMMARY:

This file makes your conventional module friendly with altsys.
If you make D3 modules, try "mymenu for D3".


BACKGROUND:

myblocksadmin, mytplsadmin or mylangadmin offered by altsys will be more useful if the user can access them via the module's admin area directly.

This "mymenu" must help module developpers and site administrators.


HOW TO USE:

1) copy mymenu.php to modules/(your module)/admin/

2) edit all of your admin's files and add include('./mymenu.php');
after xoops_cp_header();

3) edit admin/index.php and insert branch code for altsys after including cp_header.php

4) insert a constant definition '_MYMENU_CONSTANT_IN_MODINFO' into the top of admin/index.php for preventing notices by double definitions. (if necessary)

5) define constants _MD_A_MYMENU_MYTPLSADMIN , _MD_A_MYMENU_MYBLOCKSADMIN , _MD_A_MYMENU_MYLANGADMIN , _MD_A_MYMENU_MYPREFERENCES in your language/(lang)/admin.php (if necessary)


This is a sample skelton of your admin/index.php

require_once( '../../../include/cp_header.php' ) ;
define( '_MYMENU_CONSTANT_IN_MODINFO' , '(constant name defined in modinfo.php)' ) ;

// branch for altsys
if( defined( 'XOOPS_TRUST_PATH' ) && ! empty( $_GET['lib'] ) ) {
	$mydirname = basename( dirname( dirname( __FILE__ ) ) ) ;
	$mydirpath = dirname( dirname( __FILE__ ) ) ;

	// common libs (eg. altsys)
	$lib = preg_replace( '/[^a-zA-Z0-9_-]/' , '' , $_GET['lib'] ) ;
	$page = preg_replace( '/[^a-zA-Z0-9_-]/' , '' , @$_GET['page'] ) ;
	
	if( file_exists( XOOPS_TRUST_PATH.'/libs/'.$lib.'/'.$page.'.php' ) ) {
		include XOOPS_TRUST_PATH.'/libs/'.$lib.'/'.$page.'.php' ;
	} else if( file_exists( XOOPS_TRUST_PATH.'/libs/'.$lib.'/index.php' ) ) {
		include XOOPS_TRUST_PATH.'/libs/'.$lib.'/index.php' ;
	} else {
		die( 'wrong request' ) ;
	}
	exit ;
}


(DB update section)

xoops_cp_header() ;
include(dirname(__FILE__).'/mymenu.php');

(output section)

xoops_cp_footer() ;


code snippet for language/(lang)/admin.php

// altsys
define('_MD_A_MYMENU_MYTPLSADMIN','Templates');
define('_MD_A_MYMENU_MYBLOCKSADMIN','Permissions');
define('_MD_A_MYMENU_MYLANGADMIN','Literals');
define('_MD_A_MYMENU_MYPREFERENCES','Preferences');


That's all !





CHANGELOG:

2008-12-08 1.00 modified altsys friendly radically
2007-03-22 0.20 added page title for breadcrumbs of "admin in theme"
2006-12-18 0.19 modified compatibility environment without XOOPS_TRUST_PATH
2006-10-31 0.18 modified compatibility with Cube 2.1
modified altsys friendly
2006-05-03 0.17 updated gticket2
2006-02-10 0.16 fixed compatibility problem with XoopsCube2.1alpha (thx nobunobu)
2005-11-13 0.15 modified the compatibility with PHP 5.0.5
modified some files from CR+LF into LF
fixed some Notices in saving preferences (0.15a)
2005-06-09 0.14 modified 'area' in preference.inc.php
2005-05-25 0.13 modified XoopsGTicket supports 'area' and 'referer'
2005-02-22 0.12 fixed a typo of HTML tag
2005-02-21 0.11 disable checking IP
modified not to display top menu against ORETEKI
modified HTML of menu
2005-01-13 0.10 modified ticket system (limit stubs max 10)
fixed the highlight and the link to configs
2005-01-04 0.08 modified the usage of XoopsForm (thx okuhiki)
2004-12-30 0.07 modified using $_SERVER instead of $_ENV (thx Marijuana)
2004-12-16 0.06 eliminated unsed codes from preferences.inc.php for the security
2004-12-10 0.05 modified ticket system
2004-12-06 0.04 modified ticket system
2004-12-05 0.03 modified ticket system
2004-12-03 0.02 modified to use $_GET or $_POST instead of $HTTP_*_VARS (mari)
added admin_refcheck() for security (mari)
added ticket system for security (mari)
eliminated foreach() extraction from $_POST (mari)
fixed a place to include language files (thx marcan)
2004-06-15 0.01 the first release



COPYRIGHT:

I do not insist on the right of these codes, and don't guarantee.


Downloaded 14610 times  14610  File Size 3.51 KB  Supported Platforms zip|php5  Home Page http://www.peak.ne.jp/
Modify | Report Broken File | Tell a Friend | Comments (0)


Category: Etc.          
Download Now! Hodajuku Distribution Installer/Updater (CGI) Popular Version: 0.01
Submitted Date:  2008/10/22
Description:

Downloaded 2978 times  2978  File Size 5.47 KB  Supported Platforms zip  Home Page 
Modify | Report Broken File | Tell a Friend | Comments (1)


Category: Etc.     x22     xc21   php5
Download Now! Theme - newbase0db Popular Version: 1.01
Submitted Date:  2008/2/25
Description:
A special theme for dbtheme module.
You have to install dbtheme also.

- auto breadcrumbs
- css template (colors, widths etc.)
- flexible liquid design

This theme is based on full_flex_1 made by hodaka.
http://www.kuri3.net/

Downloaded 4305 times  4305  File Size 14.16 KB  Supported Platforms zip|php5|x22|xc21  Home Page http://www.peak.ne.jp/
Modify | Report Broken File | Tell a Friend | Comments (0)


Category: Etc.         xc21   php5
Download Now! xmobile plugin for pico Popular Version: 1.40
Submitted Date:  2007/8/9
Description:
==== xmobile plugin for pico ====

Extract the archive and copy the file into modules/xmobile/plugins/

This plugin needs pico >= 1.40


Downloaded 3704 times  3704  File Size 575 bytes  Supported Platforms zip|php5|xc21  Home Page http://www.peak.ne.jp/
Modify | Report Broken File | Tell a Friend | Comments (0)


Category: Etc.          
Download Now! Download Now! common/lib Popular Version: 1.00
Submitted Date:  2007/6/30
Description:
A JavaScript library including ...

- prototype.js
- script.aculo.us

Place it like this.

XOOPS_ROOT_PATH
   - class
   - kernel
   - (etc)

   - common
      - lib




Downloaded 9785 times  9785  File Size 53.95 KB  Supported Platforms tar.gz|zip  Home Page http://www.peak.ne.jp/
Modify | Report Broken File | Tell a Friend | Comments (0)


Category: Etc.          
Download Now! Xoops Language Checker Popular Version: 2.20
Submitted Date:  2007/5/4
Description:
in englishin japanese

This is a Language file checker for Xoops.
This tool needs PHP-CLI. (/usr/local/bin/php)

You can manage some kind of language files for duplicatable modules.
If you are a module's developper and you want to make duplicatable modules, you shoud code the language files like this skelton:

(D1 and D2)

if( defined( 'FOR_XOOPS_LANG_CHECKER' ) || ! defined( '(YOUR MODULE)_MB_LOADED' ) ) {
	define( '(YOUR MODULE)_MD_LOADED' , 1 ) ;

	define( "_MD_..." , "..." ) ;
	define( "_MD_..." , "..." ) ;
	define( "_MD_..." , "..." ) ;
}


In version 2.1, D3 module can be managed.

(modinfo.php and blocks_each.php of D3)

if( defined( 'FOR_XOOPS_LANG_CHECKER' ) ) $mydirname = 'd3forum' ;
$constpref = '_MI_' . strtoupper( $mydirname ) ;

if( defined( 'FOR_XOOPS_LANG_CHECKER' ) || ! defined( $constpref.'_LOADED' ) ) {

	define( $constpref.'_LOADED' , 1 ) ;

	define($constpref."_...","...");
	define($constpref."_...","...");
	define($constpref."_...","...");
}


Usage (Unix):

- Uncompress and extract it
- Set 3 files into executable path (like /usr/local/bin)
- chdir to module's root directory (XOOPS_ROOT_PATH./modules/.../)
- exec xoops_lang_check.php

Sample:

$ xoops_lang_check.php --help
displaying usages

$ xoops_lang_check.php . english japanese
listing up constants which exist in english and don't exist in japanese.
(for localizer)

$ xoops_lang_check.php . japanese english
listing up constants which exist in japanese and don't exist in english.
(for module developper whose mother tongue is not english)

$ xoops_lang_check.php . english
listing up all language's constants which exist in english.
(for module developper who want to manage all language files)

$ xoops_lang_check.php
Same as upper sample. (1st operator's default is '.', 2nd operator's default is 'english')

$ xoops_lang_check.php --patch . english japanese
Patching the shortfall definitions into the japanese language files.
The criteria is english.
(for a little bit lazy localizer)

$ xoops_lang_check.php --patch
Patching the shortfall definitions into all of the language files.
The criteria is english.
(for scrupulous module developper who want to manage all language files)



Downloaded 10297 times  10297  File Size 2.26 KB  Supported Platforms tar.gz  Home Page http://www.peak.ne.jp/
Modify | Report Broken File | Tell a Friend | Comments (1)


Category: Etc.     x22     xc21   php5
Download Now! Theme - newbase0 Popular Version: 1.00
Submitted Date:  2007/4/3
Description:
A sample theme demonstrating some features.

- auto breadcrumbs
- css template (colors, widths etc.)
- flexible liquid design

This theme is based on full_flex_1 made by hodaka.
http://www.kuri3.net/

Downloaded 4067 times  4067  File Size 14.16 KB  Supported Platforms zip|php5|x22|xc21  Home Page http://www.peak.ne.jp/
Modify | Report Broken File | Tell a Friend | Comments (0)


Category: Etc.          
Download Now! KIHON2 as a sample theme can layout center parts Popular Version: 1.04
Submitted Date:  2006/5/9
Description:
in englishin japanese
A sample theme based on matchan's theme "KIHON1".

You can controll the order of center parts

-CenterLeftBlocks
-CenterCenterBlocks
-CenterRightBlocks
-ContentsBody

All you have to do is setting their weights.
See the GIF displayed below.

This feature is valid with XOOPS >= 2.0.10JP or XOOPS 2.2.x

If you want to use this logic with XOOPS 2.0.13 or older, you have to assign block's weights in header.php manually.




-------------
(2006-5-9) modified for some warnings and redirect message hack

Downloaded 10092 times  10092  File Size 6.81 KB  Supported Platforms zip  Home Page http://www.oceannet.jp/
Modify | Report Broken File | Tell a Friend | Comments (4)


Category: Etc. ore     x22      
Download Now! Sample Smilies Package Popular Version: 1.0
Submitted Date:  2006/4/5
Description:
A sample of Smilies Package.
Upload this zip file to smilies manager of AVAMAN.

Note: %3A will be traslated into ':' by uploading.


Downloaded 7665 times  7665  File Size 3.90 KB  Supported Platforms zip|x22|ore  Home Page http://www.peak.ne.jp/
Modify | Report Broken File | Tell a Friend | Comments (0)


(1) 2 »
Login
Username or e-mail:

Password:

Remember Me

Lost Password?

Register now!