Pagina 1 van 1

Extreme Styles Mod Installatie

Geplaatst: 04 okt 2005, 13:45
door Xoxion
Support template:
Geen
  • Wat is het probleem?
    Ik kan Extreme Styles niet installeren
    Wanneer ontstond het probleem?
    Nu!
    Adres van je forum: http://erwinmp3music.er.funpic.de/
    Geïnstalleerde mods:
    Geen
    Huidige template:
    phpBB versie: 2.0.17
    Host:
    Funpic.de
    Heb je onlangs een mod of stijl geïnstalleerd?
    Nee
    Heb je gezocht naar een antwoord?
Ja
Overige opmerkingen:
Hoe moet ik installeren

Geplaatst: 04 okt 2005, 13:46
door XP-Rene
Het is wel zo handig als je de template in code-tags zet, met daarin aangevuld je opmerkingen.

Zo dus:

Code: Selecteer alles

Wat is het probleem? --->heb ik niet
Wanneer ontstond het probleem? --->niet dus
Adres van je forum: http:// --->ben ik vergeten
Geïnstalleerde mods: --->geen
Huidige template: --->geen
phpBB versie: 2.0. 
Host: --->kabala
Heb je onlangs een mod of stijl geïnstalleerd?--->nee 
Heb je gezocht naar een antwoord?--->tuurlijk 

Sorry..

Geplaatst: 04 okt 2005, 13:50
door Xoxion
Sorry maar ik had wel wat ingetikt enzo maar toen hij hier kwam stond er niks!

Geplaatst: 04 okt 2005, 13:55
door XP-Rene
Volg onderstaande stappen:

Code: Selecteer alles

################################################################# 
## Mod Title: eXtreme Styles mod
## Mod Version: 1.01
## Author: Vjacheslav Trushkin <slava@trushkin.net> (aka CyberAlien)
## Description: 
##		This mod is heavily optimized version of phpBB templates system
##		and has some additional features. It compiles and executes
##		files much faster, has cache system that speeds up templates
##		many times, allowes to use php in templates and few other new
##		features to style designers.
##
## Features:
##		- Fast templates compilation algorythm
##		- Fast templates execution (even if not cached)
##		- Cache system that doesn't use database
##		- Auto-check errors in templates while compiling
##		- Almost all features of this mod can be configured in acp
##		- PHP code in templates. PHP code should start with
##		  <?php or <!-- PHP --> and end with ?> or <!-- ENDPHP -->
##		  Short tags are not allowed. See manual for examples of code.
##		- Unlimited <!-- BEGIN blah --><!-- END blah --> switches in one line.
##		- Include other tpl files with <!-- INCLUDE file.tpl -->
##		- You can configure separate .tpl files for usual template.php
##		  and eXtreme Styles template.php. It can be configured in xs.cfg
##		  (like jumpbox.tpl for usual phpbb and jumpbox_xs.tpl for xs mod
##		  that is included with this mod)
##		- Variable {LANG} that corresponds to current language. Can be
##		  used to create truly multi-lingual templates (you can use this
##		  in urls: "images/lang_{LANG}/icon_blah.gif").
##		- Variable {PHP} that corresponds to file extension with session
##		  data. Can be used to avoid modding when you need to add some
##		  url (like "somescript.{PHP}" or "script.{PHP}test=1")
##		  Variable contains "?" or "&" at the end so you could easily
##		  add arguments to url.
##		- Variable {TEMPLATE} that corresponds to current template
##		  directory (like "templates/subSilver/"). Can be used to avoid
##		  filenames case confusion and to fix phpBB path error when
##		  confirm_body.tpl and message_body.tpl are used in acp.
##		- In admin control panel you can switch all users from one style
##		  to another and easily change default style.
##
## Installation Level:	easy
## Installation Time:	1-2 Minutes
## Files To Upload (10): admin/admin_xs_config.php,
##			admin/admin_xs_styles.php,
##			admin/admin_xs_update.php,
##			lanugage/lang_english/lang_xs.php,
##			templates/subSilver/jumpbox_xs.tpl,
##			templates/subSilver/xs.cfg,
##			templates/subSilver/admin/xs_config_body.tpl,
##			templates/subSilver/admin/xs_styles_body.tpl,
##			templates/subSilver/admin/xs_update_body.tpl,
##			templates/subSilver/admin/xs_update_body2.tpl
## Files To Overwrite (1):	includes/template.php
##
############################################################## 
##
## Latest version of this mod can be found at this url:
## http://www.trushkin.net/phpbbmods.php?mod=xs
##
## Additional documentation for this mod can be found at this url:
## http://www.trushkin.net/manual.php?cat=xs
## 
################################################################# 
## Before Adding This MOD To Your Forum, You Should Back Up All Files Related To This MOD 
################################################################# 
#
# Changes from 1.0
#		- fixed bug when file wasn't include via <!-- INCLUDE -->
#		  if cache is disabled and multiple files were included
#
# Changes from 0.6
#		! mod is finally stable so this is a release version.
#		  this means that all future 1.x versions will be compatible
#		  with this one so you can write templates for this mod without
#		  worrying about compatibility with future versions.
#		- added feature to detect known errors in templates and
#		  automatically fix it while compiling.
#		- added "styles admin" section to control panel. it allowes
#		  you to switch all users from one style to another and easily
#		  change default style.
#		- variable {PHP} now ends with "?" or "&" so you could easily
#		  append parameters to it in templates.
#
# Changes from 0.5
#		- added feature to include tpl files in template with
#		  <!-- INCLUDE file.tpl -->.
#		  note: template will not show any error or warning of included
#		  file doesn't exists - it will just skip it.
#		- added feature to use different tpl files for usual template.php
#		  and template.php from this mod. configurable in xs.cfg
#		- added auto-update feature. in control panel admin can see
#		  list of installed mods/styles (that support this mod) and
#		  update it if needed.
#		- fixed bad bug that caused one useless sql query on every run
#
# Changes from 0.4
#		- added feature to check for errors in templates while compiling
#		- rebuilt administration part
#		- fixed few bugs
#
# Changes from 0.3
#		- fixed error when tpl files with ".." in filename were cached
#		- changed array "data" back to "_tpldata" because too many mods
#		  use internal template.php variables and that was causing lots
#		  of compatibility problems.
#
# Changes from 0.2
#		- admin can change cache directory to anything, including 
#		  locations outside of phpBB path
#		- cache can be stored in one directory instead of subdirectories
#		  by changing filename separator in admin control panel from '/'
#		  to anything else like '.' or '_'.
#		- configurable filename extension of cache files
#		- fixed error with short tags in tpl files
#		- made compatible with phpBB 2.0.3 and older versions (previous
#		  versions worked only with phpBB 2.0.4)
#		- fixed lots of bugs
#		- added variable {TEMPLATE_NAME}
#		- easier modding. now there is no need to edit php/tpl files -
#		  you have to upload few new files instead
#
# Changes from 0.1
#		- made function compile() compatible with original function
#		- fixed compatiblity error with stats mod
#		- hopefully made it compatible with subtemplates mod
#		- fixed problem with error messages when accessing non-existant file/dir
#		- fixed typo in board_config_body.tpl
#		- doesn't write cache to dirs outside "cache/"
#		- fixed variable {TEMPLATE}
#
################################################################# 

#
# Here starts the Installation, follow the steps very close.
#

# 
# STEP NUMBER I: Uploading all new Files
#
# Copy/Upload all files to their respective Location (the directory structure
# is in the folder root). Overwrite old files if needed.
#
# xs_mod/root/includes/template.php				-> includes/template.php
# xs_mod/root/admin/admin_xs_config.php				-> admin/admin_xs_config.php
# xs_mod/root/admin/admin_xs_styles.php				-> admin/admin_xs_styles.php
# xs_mod/root/admin/admin_xs_update.php				-> admin/admin_xs_update.php
# xs_mod/root/language/lang_english/lang_xs.php			-> language/lang_english/lang_xs.php
# xs_mod/root/templates/subSilver/admin/xs_config_body.tpl	-> templates/subSilver/admin/xs_config_body.tpl
# xs_mod/root/templates/subSilver/admin/xs_styles_body.tpl	-> templates/subSilver/admin/xs_styles_body.tpl
# xs_mod/root/templates/subSilver/admin/xs_update_body.tpl	-> templates/subSilver/admin/xs_update_body.tpl
# xs_mod/root/templates/subSilver/admin/xs_update_body2.tpl	-> templates/subSilver/admin/xs_update_body2.tpl
#
# Copy/Upload these files to their respective locations. Do not overwrite if
# old files exists. There files are must be in directory "subSilver" - if you
# are using other styles do not copy there files to those directories.
#
# xs_mod/root/templates/subSilver/jumpbox_xs.tpl		-> templates/subSilver/jumpbox_xs.tpl
# xs_mod/root/templates/subSilver/xs.cfg			-> templates/subSilver/xs.cfg
#

#
# STEP NUMBER II: Additional Instructions
#
# Create directory "cache" within your phpBB2 root folder and chmod it to 777
# (or change the owner to you httpd-servers owner). if you have only plain
# ftp-access change the 'Attribute' of your cache-directory to rwxrwxrwx.
#

# EoM
Deze mod is in principe heel simpel, omdat je alleen het bestand includes/template.php hoeft te bewerken.

Versie...

Geplaatst: 04 okt 2005, 14:00
door Xoxion
Dat is versie 1.0.1 ik gebruik de laatste versie 2.2.1!

Geplaatst: 04 okt 2005, 14:09
door XP-Rene
Woops, sorry, dit is 2.2.1:

Code: Selecteer alles

################################################################# 
## MOD Title: eXtreme Styles mod 2
## MOD Author: CyberAlien <no@public.email> (CyberAlien) http://www.phpbbstyles.com
## MOD Description: 
##		This mod is heavily optimized version of phpBB templates system
##		and has some additional features. It compiles and executes
##		files much faster, has cache system that speeds up templates
##		many times, allowes to use php in templates and few other new
##		features to style designers. Also it has huge control panel
##		that replaces phpBB styles management with more efficient
##		easy to use functions. It also allowes to quickly import/export
##		styles using .style format.
## MOD Version: 2.2.1
##
## Installation Level:	Easy
## Installation Time:	1-2 Minutes
## Files To Edit (0):
## Included Files (64): admin/admin_xs.php,
##			admin/xs_cache.php
##			admin/xs_chmod.php
##			admin/xs_clone.php
##			admin/xs_config.php
##			admin/xs_download.php
##			admin/xs_edit.php
##			admin/xs_edit_data.php
##			admin/xs_export.php
##			admin/xs_export_data.php
##			admin/xs_frame_top.php
##			admin/xs_frameset.php
##			admin/xs_import.php
##			admin/xs_include.php
##			admin/xs_include_import.php
##			admin/xs_include_import2.php
##			admin/xs_index.php
##			admin/xs_install.php
##			admin/xs_style_config.php
##			admin/xs_styles.php
##			admin/xs_uninstall.php
##			admin/xs_update.php
##			admin/xs_main.cfg
##			language/lang_english/lang_xs.php
##			xs_mod/formIE.css
##			xs_mod/images/button.gif
##			xs_mod/images/cellpic1.gif
##			xs_mod/images/cellpic2.jpg
##			xs_mod/images/cellpic3.gif
##			xs_mod/images/cellpic4.gif
##			xs_mod/images/dot.gif
##			xs_mod/images/spacer.gif
##			xs_mod/images/top_bg.gif
##			xs_mod/images/top_bg2.gif
##			xs_mod/images/top_logo.jpg
##			xs_mod/style.css
##			xs_mod/tpl/cache.tpl
##			xs_mod/tpl/clone.tpl
##			xs_mod/tpl/clone2.tpl
##			xs_mod/tpl/config.tpl
##			xs_mod/tpl/downloads.tpl
##			xs_mod/tpl/edit.tpl
##			xs_mod/tpl/edit_data.tpl
##			xs_mod/tpl/edit_data_list.tpl
##			xs_mod/tpl/edit_file.tpl
##			xs_mod/tpl/export.tpl
##			xs_mod/tpl/export2.tpl
##			xs_mod/tpl/export_data.tpl
##			xs_mod/tpl/export_data2.tpl
##			xs_mod/tpl/frame_top.tpl
##			xs_mod/tpl/frameset.tpl
##			xs_mod/tpl/ftp.tpl
##			xs_mod/tpl/import.tpl
##			xs_mod/tpl/import2.tpl
##			xs_mod/tpl/index.tpl
##			xs_mod/tpl/install.tpl
##			xs_mod/tpl/message.tpl
##			xs_mod/tpl/style_config.tpl
##			xs_mod/tpl/styles.tpl
##			xs_mod/tpl/uninstall.tpl
##			xs_mod/tpl/update.tpl
##			xs_mod/tpl/update2.tpl
##			xs_mod/tpl/xs_footer.tpl
##			xs_mod/tpl/xs_header.tpl
## Files To Overwrite (1):	includes/template.php
############################################################## 
## For Security Purposes, Please Check: http://www.phpbb.com/mods/ for the 
## latest version of this MOD. Downloading this MOD from other sites could cause malicious code 
## to enter into your phpBB Forum. As such, phpBB will not offer support for MOD's not offered 
## in our MOD-Database, located at: http://www.phpbb.com/mods/ 
############################################################## 
## Author Notes: 
##
##
## Important:
##
## Create directory "cache" within your phpBB2 root folder (if it isn't created
## yet) and chmod it to 777 (or change the owner to you httpd-servers owner).
##
## If you do not know how to CHMOD this article should help you: 
## http://www.phpbb.com/kb/article.php?article_id=22
##
##
## Important:
##
## When upgrading from mod version 1.19 or older version you MUST delete all
## files of old mod from directory "admin".
##
## Latest version of this mod can be found at this url:
## http://www.phpbbstyles.com
##
## Additional documentation for this mod can be found at this url:
## http://www.phpbbstyles.com/viewforum.php?f=6
##
##
## MOD Features:
##		- Fast templates compilation algorythm
##		- Fast templates execution (even if not cached)
##		- Cache system that doesn't use database
##		- Auto-check errors in templates while compiling
##		- Almost all features of this mod can be configured in acp
##		- PHP code in templates. PHP code should start with
##		  <?php or <!-- PHP --> and end with ?> or <!-- ENDPHP -->
##		  Short tags are not allowed. See manual for examples of code.
##		- Unlimited <!-- BEGIN blah --><!-- END blah --> switches in one line.
##		- Include other tpl files with <!-- INCLUDE file.tpl -->
##		- You can configure separate .tpl files for usual template.php
##		  and eXtreme Styles template.php. It can be configured in xs.cfg
##		  (like jumpbox.tpl for usual phpbb and jumpbox_xs.tpl for xs mod
##		  that is included with this mod)
##		- Variable {LANG} that corresponds to current language. Can be
##		  used to create truly multi-lingual templates (you can use this
##		  in urls: "images/lang_{LANG}/icon_blah.gif").
##		- Variable {PHP} that corresponds to file extension with session
##		  data. Can be used to avoid modding when you need to add some
##		  url (like "somescript.{PHP}" or "script.{PHP}test=1")
##		  Variable contains "?" or "&" at the end so you could easily
##		  add arguments to url.
##		- Variable {TEMPLATE} that corresponds to current template
##		  directory (like "templates/subSilver/"). Can be used to avoid
##		  filenames case confusion and to fix phpBB path error when
##		  confirm_body.tpl and message_body.tpl are used in acp.
##		- In admin control panel you can switch all users from one style
##		  to another and easily change default style.
## New Features in 2.0:
##		- Faster template compilation
##		- Mod has its own interface independant from current style
##		- Mod completely replaces phpBB styles management
##		- Cache management
##		- Import/Export styles
##		- Clone templates and styles
##		- Better install/uninstall for styles
##		- Templates editor. Can also edit text files and .htaccess
##		- Tokens IF, ELSEIF, ELSE, ENDIF, DEFINE, UNDEFINE
## New Features in 2.1:
##		- Built-in support for Category Hierarchy mod 2.1.x
##		- Style configuration (applies only to complex configurable styles)
## New Features in 2.2:
##		- Support for BEGINELSE command
##
##  /***************************************************************************
##  *
##  *   This program is free software; you can redistribute it and/or modify
##  *   it under the terms of the GNU General Public License as published by
##  *   the Free Software Foundation; either version 2 of the License, or
##  *   (at your option) any later version.
##  *
##  ***************************************************************************/
##
############################################################## 
## Before Adding This MOD To Your Forum, You Should Back Up All Files Related To This MOD 
############################################################## 

# 
#-----[ COPY ]------------------------------------------ 
# 

copy root/admin/admin_xs.php to admin/admin_xs.php
copy root/admin/xs_cache.php to admin/xs_cache.php
copy root/admin/xs_chmod.php to admin/xs_chmod.php
copy root/admin/xs_clone.php to admin/xs_clone.php
copy root/admin/xs_config.php to admin/xs_config.php
copy root/admin/xs_download.php to admin/xs_download.php
copy root/admin/xs_edit.php to admin/xs_edit.php
copy root/admin/xs_edit_data.php to admin/xs_edit_data.php
copy root/admin/xs_export.php to admin/xs_export.php
copy root/admin/xs_export_data.php to admin/xs_export_data.php
copy root/admin/xs_frame_top.php to admin/xs_frame_top.php
copy root/admin/xs_frameset.php to admin/xs_frameset.php
copy root/admin/xs_import.php to admin/xs_import.php
copy root/admin/xs_include.php to admin/xs_include.php
copy root/admin/xs_include_import.php to admin/xs_include_import.php
copy root/admin/xs_include_import2.php to admin/xs_include_import2.php
copy root/admin/xs_index.php to admin/xs_index.php
copy root/admin/xs_install.php to admin/xs_install.php
copy root/admin/xs_style_config.php to admin/xs_style_config.php
copy root/admin/xs_styles.php to admin/xs_styles.php
copy root/admin/xs_uninstall.php to admin/xs_uninstall.php
copy root/admin/xs_update.php to admin/xs_update.php
copy root/admin/xs_main.cfg to admin/xs_main.cfg
copy root/includes/template.php to includes/template.php
copy root/language/lang_english/lang_xs.php to language/lang_english/lang_xs.php
copy root/xs_mod/formIE.css to xs_mod/formIE.css
copy root/xs_mod/images/button.gif to xs_mod/images/button.gif
copy root/xs_mod/images/cellpic1.gif to xs_mod/images/cellpic1.gif
copy root/xs_mod/images/cellpic2.jpg to xs_mod/images/cellpic2.jpg
copy root/xs_mod/images/cellpic3.gif to xs_mod/images/cellpic3.gif
copy root/xs_mod/images/cellpic4.gif to xs_mod/images/cellpic4.gif
copy root/xs_mod/images/dot.gif to xs_mod/images/dot.gif
copy root/xs_mod/images/spacer.gif to xs_mod/images/spacer.gif
copy root/xs_mod/images/top_bg.gif to xs_mod/images/top_bg.gif
copy root/xs_mod/images/top_bg2.gif to xs_mod/images/top_bg2.gif
copy root/xs_mod/images/top_logo.jpg to xs_mod/images/top_logo.jpg
copy root/xs_mod/style.css to xs_mod/style.css
copy root/xs_mod/tpl/cache.tpl to xs_mod/tpl/cache.tpl
copy root/xs_mod/tpl/clone.tpl to xs_mod/tpl/clone.tpl
copy root/xs_mod/tpl/clone2.tpl to xs_mod/tpl/clone2.tpl
copy root/xs_mod/tpl/config.tpl to xs_mod/tpl/config.tpl
copy root/xs_mod/tpl/downloads.tpl to xs_mod/tpl/downloads.tpl
copy root/xs_mod/tpl/edit.tpl to xs_mod/tpl/edit.tpl
copy root/xs_mod/tpl/edit_data.tpl to xs_mod/tpl/edit_data.tpl
copy root/xs_mod/tpl/edit_data_list.tpl to xs_mod/tpl/edit_data_list.tpl
copy root/xs_mod/tpl/edit_file.tpl to xs_mod/tpl/edit_file.tpl
copy root/xs_mod/tpl/export.tpl to xs_mod/tpl/export.tpl
copy root/xs_mod/tpl/export2.tpl to xs_mod/tpl/export2.tpl
copy root/xs_mod/tpl/export_data.tpl to xs_mod/tpl/export_data.tpl
copy root/xs_mod/tpl/export_data2.tpl to xs_mod/tpl/export_data2.tpl
copy root/xs_mod/tpl/frame_top.tpl to xs_mod/tpl/frame_top.tpl
copy root/xs_mod/tpl/frameset.tpl to xs_mod/tpl/frameset.tpl
copy root/xs_mod/tpl/ftp.tpl to xs_mod/tpl/ftp.tpl
copy root/xs_mod/tpl/import.tpl to xs_mod/tpl/import.tpl
copy root/xs_mod/tpl/import2.tpl to xs_mod/tpl/import2.tpl
copy root/xs_mod/tpl/index.tpl to xs_mod/tpl/index.tpl
copy root/xs_mod/tpl/install.tpl to xs_mod/tpl/install.tpl
copy root/xs_mod/tpl/message.tpl to xs_mod/tpl/message.tpl
copy root/xs_mod/tpl/style_config.tpl to xs_mod/tpl/style_config.tpl
copy root/xs_mod/tpl/styles.tpl to xs_mod/tpl/styles.tpl
copy root/xs_mod/tpl/uninstall.tpl to xs_mod/tpl/uninstall.tpl
copy root/xs_mod/tpl/update.tpl to xs_mod/tpl/update.tpl
copy root/xs_mod/tpl/update2.tpl to xs_mod/tpl/update2.tpl
copy root/xs_mod/tpl/xs_footer.tpl to xs_mod/tpl/xs_footer.tpl
copy root/xs_mod/tpl/xs_header.tpl to xs_mod/tpl/xs_header.tpl

# 
#-----[ SAVE/CLOSE ALL FILES ]------------------------------------------ 
# 
# EoM
Maar is net zo simpel :thumb:

Ja...

Geplaatst: 04 okt 2005, 14:24
door Xoxion
Ja en wat moet ik daarmee die heb ik zelf ook al gelezen maar welk bestand moet ik in mijn browser openen zodat hij installeerd?

Geplaatst: 04 okt 2005, 14:31
door XP-Rene

Code: Selecteer alles

copy root/admin/admin_xs.php to admin/admin_xs.php 
copy root/admin/xs_cache.php to admin/xs_cache.php 
copy root/admin/xs_chmod.php to admin/xs_chmod.php 
copy root/admin/xs_clone.php to admin/xs_clone.php 
copy root/admin/xs_config.php to admin/xs_config.php 
copy root/admin/xs_download.php to admin/xs_download.php 
copy root/admin/xs_edit.php to admin/xs_edit.php 
copy root/admin/xs_edit_data.php to admin/xs_edit_data.php 
copy root/admin/xs_export.php to admin/xs_export.php 
copy root/admin/xs_export_data.php to admin/xs_export_data.php 
copy root/admin/xs_frame_top.php to admin/xs_frame_top.php 
copy root/admin/xs_frameset.php to admin/xs_frameset.php 
copy root/admin/xs_import.php to admin/xs_import.php 
copy root/admin/xs_include.php to admin/xs_include.php 
copy root/admin/xs_include_import.php to admin/xs_include_import.php 
copy root/admin/xs_include_import2.php to admin/xs_include_import2.php 
copy root/admin/xs_index.php to admin/xs_index.php 
copy root/admin/xs_install.php to admin/xs_install.php 
copy root/admin/xs_style_config.php to admin/xs_style_config.php 
copy root/admin/xs_styles.php to admin/xs_styles.php 
copy root/admin/xs_uninstall.php to admin/xs_uninstall.php 
copy root/admin/xs_update.php to admin/xs_update.php 
copy root/admin/xs_main.cfg to admin/xs_main.cfg 
copy root/includes/template.php to includes/template.php 
copy root/language/lang_english/lang_xs.php to language/lang_english/lang_xs.php 
copy root/xs_mod/formIE.css to xs_mod/formIE.css 
copy root/xs_mod/images/button.gif to xs_mod/images/button.gif 
copy root/xs_mod/images/cellpic1.gif to xs_mod/images/cellpic1.gif 
copy root/xs_mod/images/cellpic2.jpg to xs_mod/images/cellpic2.jpg 
copy root/xs_mod/images/cellpic3.gif to xs_mod/images/cellpic3.gif 
copy root/xs_mod/images/cellpic4.gif to xs_mod/images/cellpic4.gif 
copy root/xs_mod/images/dot.gif to xs_mod/images/dot.gif 
copy root/xs_mod/images/spacer.gif to xs_mod/images/spacer.gif 
copy root/xs_mod/images/top_bg.gif to xs_mod/images/top_bg.gif 
copy root/xs_mod/images/top_bg2.gif to xs_mod/images/top_bg2.gif 
copy root/xs_mod/images/top_logo.jpg to xs_mod/images/top_logo.jpg 
copy root/xs_mod/style.css to xs_mod/style.css 
copy root/xs_mod/tpl/cache.tpl to xs_mod/tpl/cache.tpl 
copy root/xs_mod/tpl/clone.tpl to xs_mod/tpl/clone.tpl 
copy root/xs_mod/tpl/clone2.tpl to xs_mod/tpl/clone2.tpl 
copy root/xs_mod/tpl/config.tpl to xs_mod/tpl/config.tpl 
copy root/xs_mod/tpl/downloads.tpl to xs_mod/tpl/downloads.tpl 
copy root/xs_mod/tpl/edit.tpl to xs_mod/tpl/edit.tpl 
copy root/xs_mod/tpl/edit_data.tpl to xs_mod/tpl/edit_data.tpl 
copy root/xs_mod/tpl/edit_data_list.tpl to xs_mod/tpl/edit_data_list.tpl 
copy root/xs_mod/tpl/edit_file.tpl to xs_mod/tpl/edit_file.tpl 
copy root/xs_mod/tpl/export.tpl to xs_mod/tpl/export.tpl 
copy root/xs_mod/tpl/export2.tpl to xs_mod/tpl/export2.tpl 
copy root/xs_mod/tpl/export_data.tpl to xs_mod/tpl/export_data.tpl 
copy root/xs_mod/tpl/export_data2.tpl to xs_mod/tpl/export_data2.tpl 
copy root/xs_mod/tpl/frame_top.tpl to xs_mod/tpl/frame_top.tpl 
copy root/xs_mod/tpl/frameset.tpl to xs_mod/tpl/frameset.tpl 
copy root/xs_mod/tpl/ftp.tpl to xs_mod/tpl/ftp.tpl 
copy root/xs_mod/tpl/import.tpl to xs_mod/tpl/import.tpl 
copy root/xs_mod/tpl/import2.tpl to xs_mod/tpl/import2.tpl 
copy root/xs_mod/tpl/index.tpl to xs_mod/tpl/index.tpl 
copy root/xs_mod/tpl/install.tpl to xs_mod/tpl/install.tpl 
copy root/xs_mod/tpl/message.tpl to xs_mod/tpl/message.tpl 
copy root/xs_mod/tpl/style_config.tpl to xs_mod/tpl/style_config.tpl 
copy root/xs_mod/tpl/styles.tpl to xs_mod/tpl/styles.tpl 
copy root/xs_mod/tpl/uninstall.tpl to xs_mod/tpl/uninstall.tpl 
copy root/xs_mod/tpl/update.tpl to xs_mod/tpl/update.tpl 
copy root/xs_mod/tpl/update2.tpl to xs_mod/tpl/update2.tpl 
copy root/xs_mod/tpl/xs_footer.tpl to xs_mod/tpl/xs_footer.tpl 
copy root/xs_mod/tpl/xs_header.tpl to xs_mod/tpl/xs_header.tpl 
Meer moet je niet doen.
Vervolgens kun je vanuit je admin paneel de zaak configureren.
Makkleijker kan ik het niet maken

Geplaatst: 04 okt 2005, 16:09
door Xoxion
Het lukt nog steeds niet? En ik heb nog geen antwoord wat moet ik doen met de admin/xs_install.php file doen en ik heb ook geprobeerd om die van phpBB Hacks te installeren maar ik heb de _xs_test.tpl bestand niet die je nodig heb om te configureren!

Geplaatst: 04 okt 2005, 16:17
door mac-rolec
Je moet gewoon precies doen wat er staat. Die bestanden heb je gedownload, dan moet je ze uploaden naar naar de directories die daar staan aangegeven.

Dus admin_xs.php moet je uploaden naar: jouw_url/phpBB2/admin

Makkelijker dan deze worden mods niet.

Dit heb ik tot nu toe gedaan...

Geplaatst: 04 okt 2005, 16:52
door Xoxion
Dit heb ik totnutoe gedaan:

- Alle bestanden geupload

En dit is het resultaat: http://home.hccnet.nl/s.wildenburg/temp ... %20Mod.PNG

En voorderest heb ik nog niets gedaan :?

En deze bestanden heb ik:
admin/admin_xs.php
admin/xs_cache.php
admin/xs_chmod.php
admin/xs_clone.php
admin/xs_config.php
admin/xs_download.php
admin/xs_edit.php
admin/xs_edit_data.php
admin/xs_export.php
admin/xs_export_data.php
admin/xs_frame_top.php
admin/xs_frame_set.php
admin/xs_import.php
admin/xs_include.php
admin/xs_include_import2.php
admin/xs_include_import.php
admin/xs_index.php
admin/xs_install.php
admin/xs_main.cfg
admin/xs_style_config.php
admin/xs_styles.php
admin/xs_uninstall.php
admin/xs_update.php
includes/template.php
language/lang_english/lang_xs.php
language/lang_dutch/lang_xs.php
xs_mod/tpl/cache.tpl
xs_mod/tpl/clone2.tpl
xs_mod/tpl/clone.tpl
xs_mod/tpl/config.tpl
xs_mod/tpl/downloads.tpl
xs_mod/tpl/edit.tpl
xs_mod/tpl/edit_data.tpl
xs_mod/tpl/edit_data_list.tpl
xs_mod/tpl/edit_file.tpl
xs_mod/tpl/export2.tpl
xs_mod/tpl/export.tpl
xs_mod/tpl/export_data2.tpl
xs_mod/tpl/export_data.tpl
xs_mod/tpl/frame_top.tpl
xs_mod/tpl/frameset.tpl
xs_mod/tpl/ftp.tpl
xs_mod/tpl/import2.tpl
xs_mod/tpl/import.tpl
xs_mod/tpl/index.tpl
xs_mod/tpl/install.tpl
xs_mod/tpl/message.tpl
xs_mod/tpl/style_config.tpl
xs_mod/tpl/styles.tpl
xs_mod/tpl/uninstall.tpl
xs_mod/tpl/update2.tpl
xs_mod/tpl/update.tpl
xs_mod/tpl/xs_footer.tpl
xs_mod/tpl/xs_header.tpl
xs_mod/images/button.gif
xs_mod/images/cellpic1.gif
xs_mod/images/cellpic2.jpg
xs_mod/images/cellpic3.gif
xs_mod/images/cellpic4.gif
xs_mod/images/dot.gif
xs_mod/images/spacer.gif
xs_mod/images/top_bg2.gif
xs_mod/images/top_bg.gif
xs_mod/images/top_logo.jpg
xs_mod/formIE.css
xs_mod/style.css

Nou dit is alles wat ik heb! En voorderest nog niets!

Gelukt!

Geplaatst: 04 okt 2005, 17:55
door Xoxion
Bedankt,

Ik weet nu wat er mis was! Ik dacht dat includes/templates.php wel geupload was! (Ik had dat bestand ook geselecteerd) Maar dat was niet zo! Nu werkt alles perfect!

Geplaatst: 04 okt 2005, 18:05
door mac-rolec
Vergeet ook niet je 'cache' directory te CHmodden naar 777.