Nederlandse ondersteuning voor CMS Made Simple
Moderator: velden
Haghorst
Forum Members
Posts: 49 Joined: Wed Oct 03, 2007 8:31 am
Post
by Haghorst » Sat Oct 06, 2012 1:28 pm
Goedemiddag,
Ik heb zojuist mijn website verplaatst van de submap /cms naar de root. Echter is de website niet zichtbaar maar ik kan wel in de admin komen?
Kan iemand mij hiermee helpen, ik kom er niet uit.
http://www.vangestelhoveniers.nl is niet zichtbaar.
http://www.vangestelhoveniers.nl/admin werkt dus wel.
.htaccess
Code: Select all
# BEGIN Optional settings
# Turns off directory browsing
# not absolutely essential, but keeps people from snooping around without
# needing empty index.html files everywhere
# Options -Indexes
# Deny access to config.php
# This can be useful if php ever breaks or dies
# Use with caution, this may break other functions of CMSms that use a config.php
# file. This may also break other programs you have running under your CMSms
# install that use config.php. You may need to add another .htaccess file to those
# directories to specifically allow config.php.
<Files "config.php">
order allow,deny
deny from all
</Files>
# Sets your 403 error document
# not absolutely essential to have,
# or you may already have error pages defined elsewhere
ErrorDocument 403 /forbidden403.shtml
# No sense advertising what we are running
ServerSignature Off
# END Optional Settings
# BEGIN CMSMS and Rewrite Rules
# Make sure you have Options FollowSymLinks
# and Allow on
RewriteEngine On
# Might be needed in a subdirectory
#RewriteBase /
# URL Filtering helps stop some hack attempts
#IF the URI contains a "http:"
RewriteCond %{QUERY_STRING} http\: [OR]
#OR if the URI contains a "["
RewriteCond %{QUERY_STRING} \[ [OR]
#OR if the URI contains a "]"
RewriteCond %{QUERY_STRING} \] [OR]
#OR if the URI contains a "<__script__>"
RewriteCond %{QUERY_STRING} (\<|%3C).*script.*(\>|%3E) [NC,OR]
#OR script trying to set a PHP GLOBALS variable via URL
RewriteCond %{QUERY_STRING} GLOBALS(=|\[|\%[0-9A-Z]{0,2}) [OR]
#OR any script trying to modify a _REQUEST variable via URL
RewriteCond %{QUERY_STRING} _REQUEST(=|\[|\%[0-9A-Z]{0,2})
RewriteRule ^.*$ - [F,L]
# END Filtering
# CMSMS Rewriting
# Set assume mod_rewrite to true in config.php and clear CMSMS cache
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.+)$ index.php?page=$1 [QSA]
# END CMSMS
# END Rewrite rules
config.php
Code: Select all
<?php
# CMS Made Simple Configuration File
# Documentation: /doc/CMSMS_config_reference.pdf
#
$config['dbms'] = 'mysqli';
$config['db_hostname'] = 'localhost';
$config['db_username'] = 'user';
$config['db_password'] = 'pass';
$config['db_name'] = 'dbnaam';
$config['db_prefix'] = 'cms_';
$config['timezone'] = 'Europe/Amsterdam';
$config['url_rewriting'] = 'mod_rewrite'; // this is new from 1.6
$config['page_extension'] = '';
$config['use_hierarchy'] = true; // no longer in the config file
$config['query_var'] = 'page';
$config['root_url'] = 'http://www.vangestelhoveniers.nl';
?>
Last edited by
Haghorst on Sat Oct 06, 2012 2:46 pm, edited 2 times in total.
Rolf
Power Poster
Posts: 7825 Joined: Wed Apr 23, 2008 7:53 am
Contact:
Post
by Rolf » Sat Oct 06, 2012 1:34 pm
Heb je de buffer geleegd? clear cache.
rolf
- + - + - + - + - + - + -
- + - + - + - + - + - + -
Haghorst
Forum Members
Posts: 49 Joined: Wed Oct 03, 2007 8:31 am
Post
by Haghorst » Sat Oct 06, 2012 1:40 pm
Dat heb ik zojuist gedaan via: websitebeheer -> systeembeheer ->
Cache Status -> Buffer wissen
Ik kom er echt niet meer uit.
Rolf
Power Poster
Posts: 7825 Joined: Wed Apr 23, 2008 7:53 am
Contact:
Post
by Rolf » Sat Oct 06, 2012 1:53 pm
# Might be needed in a subdirectory
#RewriteBase /
^-------- hekje moet hier weg
- + - + - + - + - + - + -
- + - + - + - + - + - + -
Haghorst
Forum Members
Posts: 49 Joined: Wed Oct 03, 2007 8:31 am
Post
by Haghorst » Sat Oct 06, 2012 1:56 pm
Aangepast nu is hij zo:
.htaccess
Code: Select all
# BEGIN Optional settings
# Turns off directory browsing
# not absolutely essential, but keeps people from snooping around without
# needing empty index.html files everywhere
# Options -Indexes
# Deny access to config.php
# This can be useful if php ever breaks or dies
# Use with caution, this may break other functions of CMSms that use a config.php
# file. This may also break other programs you have running under your CMSms
# install that use config.php. You may need to add another .htaccess file to those
# directories to specifically allow config.php.
<Files "config.php">
order allow,deny
deny from all
</Files>
# Sets your 403 error document
# not absolutely essential to have,
# or you may already have error pages defined elsewhere
ErrorDocument 403 /forbidden403.shtml
# No sense advertising what we are running
ServerSignature Off
# END Optional Settings
# BEGIN CMSMS and Rewrite Rules
# Make sure you have Options FollowSymLinks
# and Allow on
RewriteEngine On
# Might be needed in a subdirectory
RewriteBase /
# URL Filtering helps stop some hack attempts
#IF the URI contains a "http:"
RewriteCond %{QUERY_STRING} http\: [OR]
#OR if the URI contains a "["
RewriteCond %{QUERY_STRING} \[ [OR]
#OR if the URI contains a "]"
RewriteCond %{QUERY_STRING} \] [OR]
#OR if the URI contains a "<__script__>"
RewriteCond %{QUERY_STRING} (\<|%3C).*script.*(\>|%3E) [NC,OR]
#OR script trying to set a PHP GLOBALS variable via URL
RewriteCond %{QUERY_STRING} GLOBALS(=|\[|\%[0-9A-Z]{0,2}) [OR]
#OR any script trying to modify a _REQUEST variable via URL
RewriteCond %{QUERY_STRING} _REQUEST(=|\[|\%[0-9A-Z]{0,2})
RewriteRule ^.*$ - [F,L]
# END Filtering
# CMSMS Rewriting
# Set assume mod_rewrite to true in config.php and clear CMSMS cache
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.+)$ index.php?page=$1 [QSA]
# END CMSMS
# END Rewrite rules
Voor de zekerheid heb ik nog een keer de cache geleegd.
Helaas werkt het nog steeds niet:
http://www.vangestelhoveniers.nl
Rolf
Power Poster
Posts: 7825 Joined: Wed Apr 23, 2008 7:53 am
Contact:
Post
by Rolf » Sat Oct 06, 2012 2:00 pm
Uhm
Heb je toegang tot de php error log van de webhost?
Staat daar iets in?
wellicht even toevoegen aan de config.php
Rolf
- + - + - + - + - + - + -
- + - + - + - + - + - + -
Haghorst
Forum Members
Posts: 49 Joined: Wed Oct 03, 2007 8:31 am
Post
by Haghorst » Sat Oct 06, 2012 2:07 pm
Toegevoegd aan config.php:
Code: Select all
<?php
# CMS Made Simple Configuration File
# Documentation: /doc/CMSMS_config_reference.pdf
#
$config['dbms'] = 'mysqli';
$config['db_hostname'] = 'localhost';
$config['db_username'] = 'xx';
$config['db_password'] = 'xx';
$config['db_name'] = 'xx';
$config['db_prefix'] = 'cms_';
$config['timezone'] = 'Europe/Amsterdam';
$config['url_rewriting'] = 'mod_rewrite'; // this is new from 1.6
$config['page_extension'] = '';
$config['use_hierarchy'] = true; // no longer in the config file
$config['query_var'] = 'page';
$config['root_url'] = 'http://www.vangestelhoveniers.nl/';
$config['debug'] = 'true';
?>
Ik heb nagevraagd of ik toegang heb tot de php error log van de webhost. Ik wacht op een reactie.
Verder is het erg vreemd, er kan ook wat fout zijn gegaan met het kopieren. Verder werkt de admin nog gewoon zoals hij moet werken, ik kan alles aanpassen en alles is nog zichtbaar. Het enige wat dus niet zichtbaar is, is de website in de browser.
Wat zou er kunnen opvallen in de php error log? Ik heb zoiets namelijk nog nooit gezien.
Rolf
Power Poster
Posts: 7825 Joined: Wed Apr 23, 2008 7:53 am
Contact:
Post
by Rolf » Sat Oct 06, 2012 2:11 pm
Als je bijv. 1.11.2 gebruikt kun je een checksum bestand downloaden van
http://dev.cmsmadesimple.org/project/files/6 >>
cmsmadesimple-1.11.2-full-checksum.dat (rechtermuis toets - opslaan als)
En dan in de admin een Systeem Verificatie doen. Dan zie je wel of er bestanden missen of verkeerd zijn
debug kan wel weer uit, die zegt niets in het frontend...
®
- + - + - + - + - + - + -
- + - + - + - + - + - + -
Haghorst
Forum Members
Posts: 49 Joined: Wed Oct 03, 2007 8:31 am
Post
by Haghorst » Sat Oct 06, 2012 2:24 pm
Bij een checksum test krijg ik dit terug:
Code: Select all
152 Bestanden niet gevonden
Bestanden niet gevonden:
/tmp/cache/SITEDOWN
/install (alle bestanden)
556 Bestanden md5sum check komt niet overeen:
/index.php
/modules/ModuleManager/lang/ext/hu_HU.php
/modules/ModuleManager/lang/ext/de_DE.php
/modules/ModuleManager/lang/ext/nl_NL.php
/modules/ModuleManager/lang/ext/fa_FA.php
/modules/ModuleManager/lang/ext/fi_FI.php
/modules/ModuleManager/lang/ext/ca_ES.php
/modules/ModuleManager/lang/ext/iw_IL.php
/modules/ModuleManager/lang/ext/ar_AR.php
/modules/ModuleManager/lang/ext/fa_IR.php
/modules/ModuleManager/lang/ext/fr_FR.php
/modules/ModuleManager/lang/ext/sr_YU.php
/modules/ModuleManager/lang/ext/pl_PL.php
/modules/ModuleManager/lang/ext/ro_RO.php
/modules/ModuleManager/lang/ext/da_DK.php
/modules/ModuleManager/lang/ext/et_EE.php
/modules/ModuleManager/lang/ext/hr_HR.php
/modules/ModuleManager/lang/ext/el_GR.php
/modules/ModuleManager/lang/ext/ru_RU.php
/modules/ModuleManager/lang/ext/sk_SK.php
/modules/ModuleManager/lang/ext/nb_NO.php
/modules/ModuleManager/lang/ext/sv_SE.php
/modules/ModuleManager/lang/ext/it_IT.php
/modules/ModuleManager/lang/ext/rm_CH.php
/modules/ModuleManager/lang/ext/es_ES.php
/modules/ModuleManager/lang/ext/cs_CZ.php
/modules/ModuleManager/lang/ext/sl_SI.php
/modules/ModuleManager/lang/ext/ja_JP.php
/modules/ModuleManager/lang/ext/zh_TW.php
/modules/ModuleManager/lang/ext/lt_LT.php
/modules/ModuleManager/lang/ext/en_CY.php
/modules/ModuleManager/lang/ext/pt_PT.php
/modules/Search/lang/ext/hu_HU.php
/modules/Search/lang/ext/eu_ES.php
/modules/Search/lang/ext/af_ZA.php
/modules/Search/lang/ext/pt_BR.php
/modules/Search/lang/ext/de_DE.php
/modules/Search/lang/ext/nl_NL.php
/modules/Search/lang/ext/fa_FA.php
/modules/Search/lang/ext/id_ID.php
/modules/Search/lang/ext/fi_FI.php
/modules/Search/lang/ext/iw_IL.php
/modules/Search/lang/ext/ar_AR.php
/modules/Search/lang/ext/fa_IR.php
/modules/Search/lang/ext/fr_FR.php
/modules/Search/lang/ext/sr_YU.php
/modules/Search/lang/ext/pl_PL.php
/modules/Search/lang/ext/ro_RO.php
/modules/Search/lang/ext/da_DK.php
/modules/Search/lang/ext/bg_BG.php
/modules/Search/lang/ext/et_EE.php
/modules/Search/lang/ext/hr_HR.php
/modules/Search/lang/ext/el_GR.php
/modules/Search/lang/ext/ru_RU.php
/modules/Search/lang/ext/sk_SK.php
/modules/Search/lang/ext/nb_NO.php
/modules/Search/lang/ext/sv_SE.php
/modules/Search/lang/ext/it_IT.php
/modules/Search/lang/ext/rm_CH.php
/modules/Search/lang/ext/es_ES.php
/modules/Search/lang/ext/tr_TR.php
/modules/Search/lang/ext/cs_CZ.php
/modules/Search/lang/ext/sl_SI.php
/modules/Search/lang/ext/ja_JP.php
/modules/Search/lang/ext/zh_TW.php
/modules/Search/lang/ext/lt_LT.php
/modules/Search/lang/ext/en_CY.php
/modules/Search/lang/ext/pt_PT.php
/modules/CMSPrinting/lang/ext/hu_HU.php
/modules/CMSPrinting/lang/ext/de_DE.php
/modules/CMSPrinting/lang/ext/nl_NL.php
/modules/CMSPrinting/lang/ext/fa_FA.php
/modules/CMSPrinting/lang/ext/fi_FI.php
/modules/CMSPrinting/lang/ext/iw_IL.php
/modules/CMSPrinting/lang/ext/ar_AR.php
/modules/CMSPrinting/lang/ext/fa_IR.php
/modules/CMSPrinting/lang/ext/fr_FR.php
/modules/CMSPrinting/lang/ext/sr_YU.php
/modules/CMSPrinting/lang/ext/pl_PL.php
/modules/CMSPrinting/lang/ext/ro_RO.php
/modules/CMSPrinting/lang/ext/da_DK.php
/modules/CMSPrinting/lang/ext/et_EE.php
/modules/CMSPrinting/lang/ext/hr_HR.php
/modules/CMSPrinting/lang/ext/ru_RU.php
/modules/CMSPrinting/lang/ext/sk_SK.php
/modules/CMSPrinting/lang/ext/nb_NO.php
/modules/CMSPrinting/lang/ext/sv_SE.php
/modules/CMSPrinting/lang/ext/it_IT.php
/modules/CMSPrinting/lang/ext/es_ES.php
/modules/CMSPrinting/lang/ext/tr_TR.php
/modules/CMSPrinting/lang/ext/cs_CZ.php
/modules/CMSPrinting/lang/ext/sl_SI.php
/modules/CMSPrinting/lang/ext/zh_TW.php
/modules/CMSPrinting/lang/ext/lt_LT.php
/modules/CMSPrinting/lang/ext/en_CY.php
/modules/CMSPrinting/lang/ext/pt_PT.php
/modules/MicroTiny/lang/ext/hu_HU.php
/modules/MicroTiny/lang/ext/de_DE.php
/modules/MicroTiny/lang/ext/nl_NL.php
/modules/MicroTiny/lang/ext/fa_FA.php
/modules/MicroTiny/lang/ext/fi_FI.php
/modules/MicroTiny/lang/ext/iw_IL.php
/modules/MicroTiny/lang/ext/ar_AR.php
/modules/MicroTiny/lang/ext/fa_IR.php
/modules/MicroTiny/lang/ext/fr_FR.php
/modules/MicroTiny/lang/ext/sr_YU.php
/modules/MicroTiny/lang/ext/pl_PL.php
/modules/MicroTiny/lang/ext/ro_RO.php
/modules/MicroTiny/lang/ext/da_DK.php
/modules/MicroTiny/lang/ext/et_EE.php
/modules/MicroTiny/lang/ext/hr_HR.php
/modules/MicroTiny/lang/ext/ru_RU.php
/modules/MicroTiny/lang/ext/sk_SK.php
/modules/MicroTiny/lang/ext/nb_NO.php
/modules/MicroTiny/lang/ext/sv_SE.php
/modules/MicroTiny/lang/ext/it_IT.php
/modules/MicroTiny/lang/ext/vi_VN.php
/modules/MicroTiny/lang/ext/es_ES.php
/modules/MicroTiny/lang/ext/tr_TR.php
/modules/MicroTiny/lang/ext/cs_CZ.php
/modules/MicroTiny/lang/ext/sl_SI.php
/modules/MicroTiny/lang/ext/ja_JP.php
/modules/MicroTiny/lang/ext/zh_TW.php
/modules/MicroTiny/lang/ext/lt_LT.php
/modules/MicroTiny/lang/ext/en_CY.php
/modules/MicroTiny/lang/ext/pt_PT.php
/modules/MicroTiny/tinymce/license.txt
/modules/MicroTiny/tinymce/utils/form_utils.js
/modules/MicroTiny/tinymce/utils/editable_selects.js
/modules/MicroTiny/tinymce/utils/validate.js
/modules/MicroTiny/tinymce/utils/mctabs.js
/modules/MicroTiny/tinymce/plugins/paste/js/pasteword.js
/modules/MicroTiny/tinymce/plugins/paste/js/pastetext.js
/modules/MicroTiny/tinymce/plugins/paste/pastetext.htm
/modules/MicroTiny/tinymce/plugins/paste/pasteword.htm
/modules/MicroTiny/tinymce/plugins/paste/langs/lt_dlg.js
/modules/MicroTiny/tinymce/plugins/paste/langs/hu_dlg.js
/modules/MicroTiny/tinymce/plugins/paste/langs/ro_dlg.js
/modules/MicroTiny/tinymce/plugins/paste/langs/pt_dlg.js
/modules/MicroTiny/tinymce/plugins/paste/langs/es_dlg.js
/modules/MicroTiny/tinymce/plugins/paste/langs/ca_dlg.js
/modules/MicroTiny/tinymce/plugins/paste/langs/sk_dlg.js
/modules/MicroTiny/tinymce/plugins/paste/langs/tr_dlg.js
/modules/MicroTiny/tinymce/plugins/paste/langs/is_dlg.js
/modules/MicroTiny/tinymce/plugins/paste/langs/pl_dlg.js
/modules/MicroTiny/tinymce/plugins/paste/langs/et_dlg.js
/modules/MicroTiny/tinymce/plugins/paste/langs/el_dlg.js
/modules/MicroTiny/tinymce/plugins/inlinepopups/template.htm
/modules/MicroTiny/tinymce/themes/advanced/js/image.js
/modules/MicroTiny/tinymce/themes/advanced/js/link.js
/modules/MicroTiny/tinymce/themes/advanced/image.htm
/modules/MicroTiny/tinymce/themes/advanced/link.htm
/modules/MicroTiny/tinymce/themes/advanced/shortcuts.htm
/modules/MicroTiny/tinymce/themes/advanced/langs/uk.js
/modules/MicroTiny/tinymce/themes/advanced/langs/lt_dlg.js
/modules/MicroTiny/tinymce/themes/advanced/langs/hu.js
/modules/MicroTiny/tinymce/themes/advanced/langs/es.js
/modules/MicroTiny/tinymce/themes/advanced/langs/hu_dlg.js
/modules/MicroTiny/tinymce/themes/advanced/langs/sk.js
/modules/MicroTiny/tinymce/themes/advanced/langs/ko_dlg.js
/modules/MicroTiny/tinymce/themes/advanced/langs/ro_dlg.js
/modules/MicroTiny/tinymce/themes/advanced/langs/ro.js
/modules/MicroTiny/tinymce/themes/advanced/langs/he.js
/modules/MicroTiny/tinymce/themes/advanced/langs/pt_dlg.js
/modules/MicroTiny/tinymce/themes/advanced/langs/es_dlg.js
/modules/MicroTiny/tinymce/themes/advanced/langs/sl_dlg.js
/modules/MicroTiny/tinymce/themes/advanced/langs/ca.js
/modules/MicroTiny/tinymce/themes/advanced/langs/sl.js
/modules/MicroTiny/tinymce/themes/advanced/langs/pl.js
/modules/MicroTiny/tinymce/themes/advanced/langs/pt.js
/modules/MicroTiny/tinymce/themes/advanced/langs/ca_dlg.js
/modules/MicroTiny/tinymce/themes/advanced/langs/ko.js
/modules/MicroTiny/tinymce/themes/advanced/langs/uk_dlg.js
/modules/MicroTiny/tinymce/themes/advanced/langs/lt.js
/modules/MicroTiny/tinymce/themes/advanced/langs/sk_dlg.js
/modules/MicroTiny/tinymce/themes/advanced/langs/tr_dlg.js
/modules/MicroTiny/tinymce/themes/advanced/langs/he_dlg.js
/modules/MicroTiny/tinymce/themes/advanced/langs/is_dlg.js
/modules/MicroTiny/tinymce/themes/advanced/langs/tr.js
/modules/MicroTiny/tinymce/themes/advanced/langs/et.js
/modules/MicroTiny/tinymce/themes/advanced/langs/is.js
/modules/MicroTiny/tinymce/themes/advanced/langs/el.js
/modules/MicroTiny/tinymce/themes/advanced/langs/pl_dlg.js
/modules/MicroTiny/tinymce/themes/advanced/langs/et_dlg.js
/modules/MicroTiny/tinymce/themes/advanced/langs/el_dlg.js
/modules/MicroTiny/tinymce/themes/advanced/skins/default/ui.css
/modules/MicroTiny/tinymce/themes/advanced/skins/default/dialog.css
/modules/MicroTiny/tinymce/themes/advanced/skins/default/content.css
/modules/MicroTiny/tinymce/themes/advanced/skins/o2k7/ui.css
/modules/MicroTiny/tinymce/themes/advanced/skins/o2k7/dialog.css
/modules/MicroTiny/tinymce/themes/advanced/skins/o2k7/ui_black.css
/modules/MicroTiny/tinymce/themes/advanced/skins/o2k7/content.css
/modules/MicroTiny/tinymce/langs/uk.js
/modules/MicroTiny/tinymce/langs/hu.js
/modules/MicroTiny/tinymce/langs/es.js
/modules/MicroTiny/tinymce/langs/sk.js
/modules/MicroTiny/tinymce/langs/ro.js
/modules/MicroTiny/tinymce/langs/he.js
/modules/MicroTiny/tinymce/langs/ca.js
/modules/MicroTiny/tinymce/langs/sl.js
/modules/MicroTiny/tinymce/langs/pl.js
/modules/MicroTiny/tinymce/langs/pt.js
/modules/MicroTiny/tinymce/langs/ko.js
/modules/MicroTiny/tinymce/langs/lt.js
/modules/MicroTiny/tinymce/langs/nn.js
/modules/MicroTiny/tinymce/langs/tr.js
/modules/MicroTiny/tinymce/langs/et.js
/modules/MicroTiny/tinymce/langs/is.js
/modules/MicroTiny/tinymce/langs/el.js
/modules/MicroTiny/filepicker.css
/modules/MicroTiny/action.filepicker.php
/modules/CMSMailer/lang/ext/hu_HU.php
/modules/CMSMailer/lang/ext/pt_BR.php
/modules/CMSMailer/lang/ext/de_DE.php
/modules/CMSMailer/lang/ext/nl_NL.php
/modules/CMSMailer/lang/ext/fa_FA.php
/modules/CMSMailer/lang/ext/id_ID.php
/modules/CMSMailer/lang/ext/fi_FI.php
/modules/CMSMailer/lang/ext/ca_ES.php
/modules/CMSMailer/lang/ext/iw_IL.php
/modules/CMSMailer/lang/ext/ar_AR.php
/modules/CMSMailer/lang/ext/fa_IR.php
/modules/CMSMailer/lang/ext/fr_FR.php
/modules/CMSMailer/lang/ext/sr_YU.php
/modules/CMSMailer/lang/ext/pl_PL.php
/modules/CMSMailer/lang/ext/ro_RO.php
/modules/CMSMailer/lang/ext/da_DK.php
/modules/CMSMailer/lang/ext/et_EE.php
/modules/CMSMailer/lang/ext/hr_HR.php
/modules/CMSMailer/lang/ext/el_GR.php
/modules/CMSMailer/lang/ext/ru_RU.php
/modules/CMSMailer/lang/ext/sk_SK.php
/modules/CMSMailer/lang/ext/nb_NO.php
/modules/CMSMailer/lang/ext/sv_SE.php
/modules/CMSMailer/lang/ext/it_IT.php
/modules/CMSMailer/lang/ext/es_ES.php
/modules/CMSMailer/lang/ext/cs_CZ.php
/modules/CMSMailer/lang/ext/sl_SI.php
/modules/CMSMailer/lang/ext/ja_JP.php
/modules/CMSMailer/lang/ext/zh_TW.php
/modules/CMSMailer/lang/ext/lt_LT.php
/modules/CMSMailer/lang/ext/en_CY.php
/modules/CMSMailer/lang/ext/pt_PT.php
/modules/MenuManager/lang/ext/hu_HU.php
/modules/MenuManager/lang/ext/pt_BR.php
/modules/MenuManager/lang/ext/de_DE.php
/modules/MenuManager/lang/ext/nl_NL.php
/modules/MenuManager/lang/ext/fa_FA.php
/modules/MenuManager/lang/ext/fi_FI.php
/modules/MenuManager/lang/ext/ca_ES.php
/modules/MenuManager/lang/ext/iw_IL.php
/modules/MenuManager/lang/ext/ar_AR.php
/modules/MenuManager/lang/ext/fa_IR.php
/modules/MenuManager/lang/ext/fr_FR.php
/modules/MenuManager/lang/ext/sr_YU.php
/modules/MenuManager/lang/ext/pl_PL.php
/modules/MenuManager/lang/ext/ro_RO.php
/modules/MenuManager/lang/ext/da_DK.php
/modules/MenuManager/lang/ext/et_EE.php
/modules/MenuManager/lang/ext/hr_HR.php
/modules/MenuManager/lang/ext/el_GR.php
/modules/MenuManager/lang/ext/ru_RU.php
/modules/MenuManager/lang/ext/sk_SK.php
/modules/MenuManager/lang/ext/nb_NO.php
/modules/MenuManager/lang/ext/sv_SE.php
/modules/MenuManager/lang/ext/it_IT.php
/modules/MenuManager/lang/ext/rm_CH.php
/modules/MenuManager/lang/ext/es_ES.php
/modules/MenuManager/lang/ext/cs_CZ.php
/modules/MenuManager/lang/ext/sl_SI.php
/modules/MenuManager/lang/ext/ja_JP.php
/modules/MenuManager/lang/ext/zh_TW.php
/modules/MenuManager/lang/ext/lt_LT.php
/modules/MenuManager/lang/ext/en_CY.php
/modules/MenuManager/lang/ext/pt_PT.php
/modules/MenuManager/CSSMenu.js
/modules/MenuManager/templates/cssmenu_ulshadow.tpl
/modules/MenuManager/templates/accessible_simple_navigation.tpl
/modules/MenuManager/templates/accessible_cssmenu.tpl
/modules/MenuManager/templates/cssmenu.tpl
/modules/MenuManager/templates/Simplex_Navigation.tpl
/modules/MenuManager/templates/minimal_menu.tpl
/modules/MenuManager/templates/simple_navigation.tpl
/modules/ThemeManager/lang/ext/hu_HU.php
/modules/ThemeManager/lang/ext/pt_BR.php
/modules/ThemeManager/lang/ext/de_DE.php
/modules/ThemeManager/lang/ext/nl_NL.php
/modules/ThemeManager/lang/ext/fa_FA.php
/modules/ThemeManager/lang/ext/fi_FI.php
/modules/ThemeManager/lang/ext/ca_ES.php
/modules/ThemeManager/lang/ext/iw_IL.php
/modules/ThemeManager/lang/ext/ar_AR.php
/modules/ThemeManager/lang/ext/fa_IR.php
/modules/ThemeManager/lang/ext/fr_FR.php
/modules/ThemeManager/lang/ext/sr_YU.php
/modules/ThemeManager/lang/ext/pl_PL.php
/modules/ThemeManager/lang/ext/ro_RO.php
/modules/ThemeManager/lang/ext/da_DK.php
/modules/ThemeManager/lang/ext/et_EE.php
/modules/ThemeManager/lang/ext/hr_HR.php
/modules/ThemeManager/lang/ext/ru_RU.php
/modules/ThemeManager/lang/ext/sk_SK.php
/modules/ThemeManager/lang/ext/nb_NO.php
/modules/ThemeManager/lang/ext/sv_SE.php
/modules/ThemeManager/lang/ext/it_IT.php
/modules/ThemeManager/lang/ext/rm_CH.php
/modules/ThemeManager/lang/ext/es_ES.php
/modules/ThemeManager/lang/ext/cs_CZ.php
/modules/ThemeManager/lang/ext/sl_SI.php
/modules/ThemeManager/lang/ext/ja_JP.php
/modules/ThemeManager/lang/ext/zh_TW.php
/modules/ThemeManager/lang/ext/lt_LT.php
/modules/ThemeManager/lang/ext/en_CY.php
/modules/ThemeManager/lang/ext/pt_PT.php
/modules/ThemeManager/action.defaultadmin.php
/modules/FileManager/uploadview.php
/modules/FileManager/action.fileaction.php
/modules/FileManager/action.savesettings.php
/modules/FileManager/lang/ext/hu_HU.php
/modules/FileManager/lang/ext/pt_BR.php
/modules/FileManager/lang/ext/de_DE.php
/modules/FileManager/lang/ext/nl_NL.php
/modules/FileManager/lang/ext/fa_FA.php
/modules/FileManager/lang/ext/fi_FI.php
/modules/FileManager/lang/ext/ca_ES.php
/modules/FileManager/lang/ext/iw_IL.php
/modules/FileManager/lang/ext/ar_AR.php
/modules/FileManager/lang/ext/fa_IR.php
/modules/FileManager/lang/ext/fr_FR.php
/modules/FileManager/lang/ext/sr_YU.php
/modules/FileManager/lang/ext/pl_PL.php
/modules/FileManager/lang/ext/ro_RO.php
/modules/FileManager/lang/ext/da_DK.php
/modules/FileManager/lang/ext/et_EE.php
/modules/FileManager/lang/ext/hr_HR.php
/modules/FileManager/lang/ext/ru_RU.php
/modules/FileManager/lang/ext/sk_SK.php
/modules/FileManager/lang/ext/nb_NO.php
/modules/FileManager/lang/ext/sv_SE.php
/modules/FileManager/lang/ext/it_IT.php
/modules/FileManager/lang/ext/es_ES.php
/modules/FileManager/lang/ext/tr_TR.php
/modules/FileManager/lang/ext/cs_CZ.php
/modules/FileManager/lang/ext/sl_SI.php
/modules/FileManager/lang/ext/ja_JP.php
/modules/FileManager/lang/ext/zh_TW.php
/modules/FileManager/lang/ext/lt_LT.php
/modules/FileManager/lang/ext/en_CY.php
/modules/FileManager/lang/ext/pt_PT.php
/modules/FileManager/method.upgrade.php
/modules/FileManager/method.install.php
/modules/FileManager/method.uninstall.php
/modules/FileManager/lib/class.filemanager_utils.php
/modules/FileManager/templates/filepicker.tpl
/modules/FileManager/templates/uploadview.tpl
/modules/FileManager/templates/newdir.tpl
/modules/FileManager/templates/chmodfilewin.tpl
/modules/FileManager/templates/changelog.tpl
/modules/FileManager/templates/confirmdeltree.tpl
/modules/FileManager/templates/filemanager.tpl
/modules/FileManager/action.admin_fileview.php
/modules/FileManager/action.defaultadmin.php
/modules/FileManager/action.chmodfilewin.php
/modules/FileManager/FileManager.module.php
/modules/News/lang/ext/hu_HU.php
/modules/News/lang/ext/eu_ES.php
/modules/News/lang/ext/pt_BR.php
/modules/News/lang/ext/de_DE.php
/modules/News/lang/ext/nl_NL.php
/modules/News/lang/ext/fa_FA.php
/modules/News/lang/ext/id_ID.php
/modules/News/lang/ext/fi_FI.php
/modules/News/lang/ext/ca_ES.php
/modules/News/lang/ext/iw_IL.php
/modules/News/lang/ext/ar_AR.php
/modules/News/lang/ext/fa_IR.php
/modules/News/lang/ext/fr_FR.php
/modules/News/lang/ext/sr_YU.php
/modules/News/lang/ext/pl_PL.php
/modules/News/lang/ext/ro_RO.php
/modules/News/lang/ext/da_DK.php
/modules/News/lang/ext/bg_BG.php
/modules/News/lang/ext/et_EE.php
/modules/News/lang/ext/hr_HR.php
/modules/News/lang/ext/el_GR.php
/modules/News/lang/ext/ru_RU.php
/modules/News/lang/ext/sk_SK.php
/modules/News/lang/ext/nb_NO.php
/modules/News/lang/ext/sv_SE.php
/modules/News/lang/ext/it_IT.php
/modules/News/lang/ext/vi_VN.php
/modules/News/lang/ext/mn_MN.php
/modules/News/lang/ext/zh_CN.php
/modules/News/lang/ext/es_ES.php
/modules/News/lang/ext/tr_TR.php
/modules/News/lang/ext/cs_CZ.php
/modules/News/lang/ext/sl_SI.php
/modules/News/lang/ext/ja_JP.php
/modules/News/lang/ext/zh_TW.php
/modules/News/lang/ext/lt_LT.php
/modules/News/lang/ext/en_CY.php
/modules/News/lang/ext/pt_PT.php
/modules/News/templates/Simplex_Detail_template.tpl
/modules/News/templates/Summary_Simplex_template.tpl
/modules/News/changelog.inc
Last edited by
Haghorst on Sat Oct 06, 2012 2:26 pm, edited 1 time in total.
Haghorst
Forum Members
Posts: 49 Joined: Wed Oct 03, 2007 8:31 am
Post
by Haghorst » Sat Oct 06, 2012 2:25 pm
vervolg
Code: Select all
/admin/pagedefaults.php
/admin/lang/ext/bg_BG/admin.inc.php
/admin/lang/ext/da_DK/admin.inc.php
/admin/lang/ext/en_CY/admin.inc.php
/admin/lang/ext/hu_HU/admin.inc.php
/admin/lang/ext/zh_CN/admin.inc.php
/admin/lang/ext/rm_CH/admin.inc.php
/admin/lang/ext/kz_KZ/admin.inc.php
/admin/lang/ext/sr_YU/admin.inc.php
/admin/lang/ext/tr_TR/admin.inc.php
/admin/lang/ext/lt_LT/admin.inc.php
/admin/lang/ext/ro_RO/admin.inc.php
/admin/lang/ext/pt_PT/admin.inc.php
/admin/lang/ext/fa_IR/admin.inc.php
/admin/lang/ext/mn_MN/admin.inc.php
/admin/lang/ext/fr_FR/admin.inc.php
/admin/lang/ext/pt_BR/admin.inc.php
/admin/lang/ext/cs_CZ/admin.inc.php
/admin/lang/ext/pl_PL/admin.inc.php
/admin/lang/ext/id_ID/admin.inc.php
/admin/lang/ext/vi_VN/admin.inc.php
/admin/lang/ext/nb_NO/admin.inc.php
/admin/lang/ext/ja_JP/admin.inc.php
/admin/lang/ext/so_SO/admin.inc.php
/admin/lang/ext/iw_IL/admin.inc.php
/admin/lang/ext/et_EE/admin.inc.php
/admin/lang/ext/eu_ES/admin.inc.php
/admin/lang/ext/it_IT/admin.inc.php
/admin/lang/ext/fi_FI/admin.inc.php
/admin/lang/ext/is_IS/admin.inc.php
/admin/lang/ext/af_ZA/admin.inc.php
/admin/lang/ext/ru_RU/admin.inc.php
/admin/lang/ext/nl_NL/admin.inc.php
/admin/lang/ext/sl_SI/admin.inc.php
/admin/lang/ext/de_DE/admin.inc.php
/admin/lang/ext/hr_HR/admin.inc.php
/admin/lang/ext/sk_SK/admin.inc.php
/admin/lang/ext/sv_SE/admin.inc.php
/admin/lang/ext/fa_FA/admin.inc.php
/admin/lang/ext/zh_TW/admin.inc.php
/admin/lang/ext/ar_AR/admin.inc.php
/admin/lang/ext/gl_GL/admin.inc.php
/admin/lang/ext/eo_UY/admin.inc.php
/admin/lang/ext/es_ES/admin.inc.php
/admin/lang/ext/ca_ES/admin.inc.php
/admin/lang/ext/el_GR/admin.inc.php
/admin/themes/OneEleven/doc/grid.html
/admin/themes/OneEleven/doc/README.txt
/admin/themes/OneEleven/doc/AUTHORS.txt
/admin/themes/OneEleven/includes/standard.js
/admin/themes/OneEleven/includes/login.js
/admin/themes/OneEleven/includes/jquery.cookie.min.js
/admin/themes/OneEleven/css/style.css
/admin/themes/OneEleven/css/style-rtl.css
/admin/themes/OneEleven/login.php
/admin/themes/OneEleven/templates/footer.tpl
/admin/themes/OneEleven/templates/login.tpl
/admin/themes/OneEleven/templates/shortcuts.tpl
/admin/themes/OneEleven/templates/messages.tpl
/admin/themes/NCleanGrey/includes/standard.js
/admin/themes/NCleanGrey/docs/license.txt
/admin/themes/NCleanGrey/docs/readme.txt
/admin/themes/NCleanGrey/docs/CHANGELOG.txt
/admin/themes/NCleanGrey/NCleanGreyTheme.php
/admin/systemmaintenance.php
/admin/editevent.php
/admin/checksum.php
/admin/templates/changegroupperm.tpl
/admin/templates/listcssassoc.tpl
/admin/templates/addtemplate.tpl
/admin/templates/systeminfo.txt.tpl
/admin/templates/checksum.tpl
/admin/templates/changeusergroup.tpl
/admin/templates/systemmaintenance.tpl
/admin/templates/systeminfo.tpl
/admin/eventhandlers.php
/admin/systeminfo.php
/tmp/cache/index.html
/tmp/templates_c/index.html
/lib/nls/sl_SI.nls.php
/lib/nls/id_ID.nls.php
/lib/nls/ca_ES.nls.php
/lib/nls/hu_HU.nls.php
/lib/nls/ro_RO.nls.php
/lib/nls/eu_ES.nls.php
/lib/nls/is_IS.nls.php
/lib/nls/hr_HR.nls.php
/lib/nls/et_EE.nls.php
/lib/nls/af_ZA.nls.php
/lib/nls/sr_YU.nls.php
/lib/nls/tr_TR.nls.php
/lib/classes/class.cms_http_request.php
/lib/classes/class.ContentBase.php
/lib/classes/class.cms_config.php
/lib/adodb_lite/generic_modules/pear_module.inc
/lib/adodb_lite/generic_modules/adodblite_module.inc
/lib/adodb_lite/adodbSQL_drivers/postgres/postgres_meta_module.inc
/lib/adodb_lite/adodbSQL_drivers/postgres/postgres_date_module.inc
/lib/adodb_lite/adodbSQL_drivers/postgres/postgres_datadict.inc
/lib/adodb_lite/adodbSQL_drivers/postgres/postgres_extend_module.inc
/lib/adodb_lite/adodbSQL_drivers/postgres/postgres_transaction_module.inc
/lib/adodb_lite/adodbSQL_drivers/postgres/postgres_driver.inc
/lib/adodb_lite/adodbSQL_drivers/mysqli/mysqli_transaction_module.inc
/lib/adodb_lite/adodbSQL_drivers/mysqli/mysqli_driver.inc
/lib/adodb_lite/adodbSQL_drivers/mysqli/mysqli_extend_module.inc
/lib/adodb_lite/adodbSQL_drivers/mysqli/mysqli_date_module.inc
/lib/adodb_lite/adodbSQL_drivers/mysqli/mysqli_datadict.inc
/lib/adodb_lite/adodbSQL_drivers/mysql/mysql_date_module.inc
/lib/adodb_lite/adodbSQL_drivers/mysql/mysql_datadict.inc
/lib/adodb_lite/adodbSQL_drivers/mysql/mysql_transaction_module.inc
/lib/adodb_lite/adodbSQL_drivers/mysql/mysql_driver.inc
/lib/adodb_lite/adodbSQL_drivers/mysql/mysql_extend_module.inc
/lib/adodb_lite/adodb-error.inc.php
/lib/html_entity_decode_php4.php
/lib/smarty/plugins/modifiercompiler.default.php
/lib/smarty/plugins/modifiercompiler.from_charset.php
/lib/smarty/plugins/modifiercompiler.wordwrap.php
/lib/smarty/plugins/modifiercompiler.escape.php
/lib/smarty/plugins/modifiercompiler.upper.php
/lib/smarty/plugins/modifiercompiler.string_format.php
/lib/smarty/plugins/modifiercompiler.count_paragraphs.php
/lib/smarty/plugins/modifiercompiler.count_words.php
/lib/smarty/plugins/modifiercompiler.cat.php
/lib/smarty/plugins/modifiercompiler.strip_tags.php
/lib/smarty/plugins/modifiercompiler.strip.php
/lib/smarty/plugins/modifiercompiler.to_charset.php
/lib/smarty/plugins/modifiercompiler.count_sentences.php
/lib/smarty/plugins/modifiercompiler.noprint.php
/lib/smarty/plugins/modifiercompiler.lower.php
/lib/smarty/plugins/modifiercompiler.unescape.php
/lib/smarty/plugins/modifiercompiler.count_characters.php
/lib/smarty/plugins/modifiercompiler.indent.php
/lib/smarty/sysplugins/smarty_internal_compile_break.php
/lib/smarty/sysplugins/smarty_internal_compile_continue.php
/lib/smarty/sysplugins/smarty_internal_templatebase.php
/lib/smarty/sysplugins/smarty_internal_resource_eval.php
/lib/smarty/sysplugins/smarty_internal_parsetree.php
/lib/smarty/sysplugins/smarty_internal_compile_private_modifier.php
/lib/smarty/sysplugins/smarty_internal_function_call_handler.php
/lib/smarty/sysplugins/smarty_internal_compile_private_registered_function.php
/lib/smarty/sysplugins/smarty_internal_nocache_insert.php
/lib/smarty/sysplugins/smarty_internal_compile_private_registered_block.php
/lib/smarty/sysplugins/smarty_internal_get_include_path.php
/lib/smarty/sysplugins/smarty_internal_templatecompilerbase.php
/lib/smarty/sysplugins/smarty_internal_compile_setfilter.php
/lib/smarty/SmartyBC.class.php
/lib/xajax/xajax_core/plugin_layer/xajaxEventPlugin.inc.php
/lib/xajax/copyright.inc.php
/uploads/simplex/js/functions.js
/uploads/NCleanBlue/js/ie6fix.js
/moduleinterface.php
En deze bestanden (anders past het niet in een bericht)
Hij mist dus nogal wat. Echter staan de meeste van deze bestanden wel in die map als ik ze bekijk via FileZilla.
Wat nog meer op valt is dat
http://www.vangestelhoveniers.nl/admin wordt weergegeven als:
http://www.vangestelhoveniers.nl//admin/login.php met dus 2 slashes // na de domeinnaam
Rolf
Power Poster
Posts: 7825 Joined: Wed Apr 23, 2008 7:53 am
Contact:
Post
by Rolf » Sat Oct 06, 2012 2:36 pm
Ohw... Ik zou maar eens een nieuwe set 1.11.2 bestanden uploaden over de website heen. Een soort upgrade zeg maar, je hoeft GEEN install/upgrade.php te doen!!! Install map kan ook weg
Dan nog eens een checksum doen
Zorg dat je PC vast zit aan een netwerkkabeltje en geen wifi gebruikt!
- + - + - + - + - + - + -
- + - + - + - + - + - + -
Haghorst
Forum Members
Posts: 49 Joined: Wed Oct 03, 2007 8:31 am
Post
by Haghorst » Sat Oct 06, 2012 2:38 pm
Okay dat ga ik doen, dit zijn de installatie bestanden zeg maar die je download van de website?
Wifi heb ik uitgeschakeld.
Haghorst
Forum Members
Posts: 49 Joined: Wed Oct 03, 2007 8:31 am
Post
by Haghorst » Sat Oct 06, 2012 2:46 pm
Rolf je bent een held!
Erg bedankt voor je hulp, zoals je ziet werkt de website nu! Zonder jouw hulp was ik hier niet zomaar uitgekomen denk ik.
Rolf
Power Poster
Posts: 7825 Joined: Wed Apr 23, 2008 7:53 am
Contact:
Post
by Rolf » Sat Oct 06, 2012 2:48 pm
Ahh Mooi!!
Altijd leuk om iemand te kunnen helpen
grt. Rolf
- + - + - + - + - + - + -
- + - + - + - + - + - + -