Help!!!! fouten na fouten

Installatie van Joomla! 2.5. NB: gebruikers van Joomla 1.7 & 1.6 (= Short Term Support versies) wordt aangeraden te upgraden naar Joomla 2.5 (= Long Term Support versie).

Moderator: pe7er

Forum rules
Forum Regels
Locked
jervries
Joomla! Apprentice
Joomla! Apprentice
Posts: 5
Joined: Mon Sep 08, 2014 2:04 pm

Help!!!! fouten na fouten

Post by jervries » Mon Sep 08, 2014 2:16 pm

Hallo allen.

Doordat iemand voor een bedrijf is gestopt met het bouwen met de website, heb ik deze op me genomen.
Ik heb een backup gekregen met de hele rattenplan inclusief akeeba backup.
In de administrator/component,akebaa/backup heb ik de backup gevonden en geinstalleert zoals het moet. Heb ook een database aangemaakt en alles volgens de regels ingevoerd.
Nu echter krijg ik fout na fout na fout.
Om te beginnen met:

Strict Standards: Declaration of JCacheControllerPage::store() should be compatible with JCacheController::store($data, $id, $group = NULL) in C:\xampp\htdocs\epsan2\libraries\joomla\cache\controller\page.php on line 199

Strict Standards: Only variables should be assigned by reference in C:\xampp\htdocs\epsan2\plugins\system\rokextender\rokextender.php on line 32

Dit staat boven mijn backend in mijn administrator.
Bekijk ik mijn website, dan gaat het helemaal fout:

alleen maar foutmeldingen.

Hoe krijg ik het origineel?

User avatar
pe7er
Joomla! Master
Joomla! Master
Posts: 24972
Joined: Thu Aug 18, 2005 8:55 pm
Location: Nijmegen, Netherlands
Contact:

Re: Help!!!! fouten na fouten

Post by pe7er » Mon Sep 08, 2014 2:30 pm

Welkom op Joomla forum!

"Strict Standards" zijn geen errors, maar waarschuwingen dat de gebruikte PHP code niet helemaal netjes is.
Wat is de PHP versie op de server? PHP 5.4?

Als je de volgende code in .htacess plaatst, dan zou je die waarschuwingen uit kunnen zetten.

Code: Select all

php_value display_errors 0
php_value error_reporting 30719 
Vergeet niet alle software te updaten naar de meest recente versies
Joomla 2.5.x naar 2.5.24
Vergeet ook de 3rd party extensies niet...
Kind Regards,
Peter Martin, Global Moderator
Company website: https://db8.nl/en/ - Joomla specialist, Nijmegen, Netherlands
The best website: https://the-best-website.com

jervries
Joomla! Apprentice
Joomla! Apprentice
Posts: 5
Joined: Mon Sep 08, 2014 2:04 pm

Re: Help!!!! fouten na fouten

Post by jervries » Mon Sep 08, 2014 2:57 pm

Bedankt voor de reactie...

Is het in de htdocs?

Zoja waar moet ik deze in de .htacess zetten?

Gaan dan de hele rij fouten die ik krijg als ik naar de website ga?

User avatar
pe7er
Joomla! Master
Joomla! Master
Posts: 24972
Joined: Thu Aug 18, 2005 8:55 pm
Location: Nijmegen, Netherlands
Contact:

Re: Help!!!! fouten na fouten

Post by pe7er » Mon Sep 08, 2014 3:19 pm

in de root van je website zit waarschijnlijk een htaccess.txt
Die kun je hernoemen naar .htaccess en even kijken of dat geen server error oplevert.
Anders, volgens de inline instructie, even de

Code: Select all

## Can be commented out if causes errors, see notes above.
Options +FollowSymLinks
uitzetten door er een hekje # voor te zetten.

Als je dan aan het begin van het bestand de code uit mijn vorige bericht plaatst,
dan zou die server configuratie aanpassing dat voor alle onderliggende mappen moeten gelden..
Kind Regards,
Peter Martin, Global Moderator
Company website: https://db8.nl/en/ - Joomla specialist, Nijmegen, Netherlands
The best website: https://the-best-website.com

jervries
Joomla! Apprentice
Joomla! Apprentice
Posts: 5
Joined: Mon Sep 08, 2014 2:04 pm

Re: Help!!!! fouten na fouten

Post by jervries » Mon Sep 08, 2014 8:38 pm

Helaas....
Krijg nu deze code:
Strict Standards: Declaration of JCacheControllerPage::store() should be compatible with JCacheController::store($data, $id, $group = NULL) in C:\xampp\htdocs\epsan2\libraries\joomla\cache\controller\page.php on line 199

Strict Standards: Only variables should be assigned by reference in C:\xampp\htdocs\epsan2\plugins\system\rokextender\rokextender.php on line 32

Strict Standards: Only variables should be assigned by reference in C:\xampp\htdocs\epsan2\plugins\system\gantry\gantry.php on line 104

Heb dit uit de htaccess:

php_value display_errors 0
php_value error_reporting 30719

##
# @package Joomla
# @copyright Copyright (C) 2005 - 2014 Open Source Matters. All rights reserved.
# @license GNU General Public License version 2 or later; see LICENSE.txt
##

##
# READ THIS COMPLETELY IF YOU CHOOSE TO USE THIS FILE!
#
# The line just below this section: 'Options +FollowSymLinks' may cause problems
# with some server configurations. It is required for use of mod_rewrite, but may already
# be set by your server administrator in a way that dissallows changing it in
# your .htaccess file. If using it causes your server to error out, comment it out (add # to
# beginning of line), reload your site in your browser and test your sef url's. If they work,
# it has been set by your server administrator and you do not need it set here.
##

## #Can be commented out if causes errors, see notes above.
Options +FollowSymLinks


## Mod_rewrite in use.

RewriteEngine On

## Begin - Rewrite rules to block out some common exploits.
# If you experience problems on your site block out the operations listed below
# This attempts to block the most common type of exploit `attempts` to Joomla!
#
# Block out any script trying to base64_encode data within the URL.
RewriteCond %{QUERY_STRING} base64_encode[^(]*\([^)]*\) [OR]
# Block out any script that includes a <script> tag in URL.
RewriteCond %{QUERY_STRING} (<|%3C)([^s]*s)+cript.*(>|%3E) [NC,OR]
# Block out any script trying to set a PHP GLOBALS variable via URL.
RewriteCond %{QUERY_STRING} GLOBALS(=|\[|\%[0-9A-Z]{0,2}) [OR]
# Block out any script trying to modify a _REQUEST variable via URL.
RewriteCond %{QUERY_STRING} _REQUEST(=|\[|\%[0-9A-Z]{0,2})
# Return 403 Forbidden header and show the content of the root homepage
RewriteRule .* index.php [F]
#
## End - Rewrite rules to block out some common exploits.

## Begin - Custom redirects
#
# If you need to redirect some pages, or set a canonical non-www to
# www redirect (or vice versa), place that code here. Ensure those
# redirects use the correct RewriteRule syntax and the [R=301,L] flags.
#
## End - Custom redirects

##
# Uncomment following line if your webserver's URL
# is not directly related to physical file paths.
# Update Your Joomla! Directory (just / for root).
##

# RewriteBase /

## Begin - Joomla! core SEF Section.
#
RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
#
# If the requested path and file is not /index.php and the request
# has not already been internally rewritten to the index.php script
RewriteCond %{REQUEST_URI} !^/index\.php
# and the request is for something within the component folder,
# or for the site root, or for an extensionless URL, or the
# requested URL ends with one of the listed extensions
RewriteCond %{REQUEST_URI} /component/|(/[^.]*|\.(php|html?|feed|pdf|vcf|raw))$ [NC]
# and the requested path and file doesn't directly match a physical file
RewriteCond %{REQUEST_FILENAME} !-f
# and the requested path and file doesn't directly match a physical folder
RewriteCond %{REQUEST_FILENAME} !-d
# internally rewrite the request to the index.php script
RewriteRule .* index.php [L]
#
## End - Joomla! core SEF Section.

Strict Standards: Only variables should be assigned by reference in C:\xampp\htdocs\epsan2\plugins\system\gantry\gantry.php on line 108

User avatar
pe7er
Joomla! Master
Joomla! Master
Posts: 24972
Joined: Thu Aug 18, 2005 8:55 pm
Location: Nijmegen, Netherlands
Contact:

Re: Help!!!! fouten na fouten

Post by pe7er » Mon Sep 08, 2014 10:19 pm

Misschien kun je het oplossen door aanpassing van php.ini,
zie http://forum.joomla.org/viewtopic.php?p ... 6#p2556146
Kind Regards,
Peter Martin, Global Moderator
Company website: https://db8.nl/en/ - Joomla specialist, Nijmegen, Netherlands
The best website: https://the-best-website.com

jervries
Joomla! Apprentice
Joomla! Apprentice
Posts: 5
Joined: Mon Sep 08, 2014 2:04 pm

Re: Help!!!! fouten na fouten

Post by jervries » Tue Sep 09, 2014 7:42 am

Ik heb de hele website op een dvd gekregen, daar zat ook een backup op van akeeba.
Ik heb de hele dvd naar mijn xampp/htdocs gedaan en vandaar uit geinstalleerd incl een database aangemaakt in mysql.
Is dat goed?

User avatar
pe7er
Joomla! Master
Joomla! Master
Posts: 24972
Joined: Thu Aug 18, 2005 8:55 pm
Location: Nijmegen, Netherlands
Contact:

Re: Help!!!! fouten na fouten

Post by pe7er » Tue Sep 09, 2014 3:43 pm

Ja, ik denk het wel.
De strict standards waarschuwingen worden getoond ivm instellingen in PHP (in XAMPP)
Kind Regards,
Peter Martin, Global Moderator
Company website: https://db8.nl/en/ - Joomla specialist, Nijmegen, Netherlands
The best website: https://the-best-website.com


Locked

Return to “Installatie 2.5”