PHP Nuke Nederland
 
•   Home  •  Downloads  •  Your Account  •  Forums  •
PHP-Nuke Nederland: Forums

PHP-Nuke Nederland :: View topic - blanco pagina bij forums admin
 Forum FAQ  •   Search   •  Memberlist  •  Usergroups   •  Register   •    •  Profile  •  Log in to check your private messages  •  Log in

 
Post new topicReply to topic
View previous topic Log in to check your private messages View next topic
Author Message
AsuncTion
Beginner
Beginner


Joined: Nov 24, 2005
Posts: 20

PostPosted: Sat 26 Nov 2005 1:21 Reply with quoteBack to top

hallo,
als ik bij de admin pagina in PHPNUke 7.6 op forums klik kom ik gewoon op een witte pagina
wat kan ik hier aan doen, want ik kan dus geen categorieën en dergelijke aanmaken

cheers
View user's profileSend private message
BlueLion
Administrator
Administrator


Joined: Aug 21, 2004
Posts: 2836

PostPosted: Sat 26 Nov 2005 7:14 Reply with quoteBack to top

Heb je jouw versie gepatched?
Zo ja, wijzig dan in config.php $display_errors naar true. Welke error staat er nu?


BL
View user's profileSend private messageSend e-mailVisit poster's website
AsuncTion
Beginner
Beginner


Joined: Nov 24, 2005
Posts: 20

PostPosted: Sat 26 Nov 2005 20:31 Reply with quoteBack to top

k heb ze niet gepachted
View user's profileSend private message
BlueLion
Administrator
Administrator


Joined: Aug 21, 2004
Posts: 2836

PostPosted: Sat 26 Nov 2005 22:38 Reply with quoteBack to top

Begin daar eerst eens mee. Download Patch 3.1 en installeer deze.


BL
View user's profileSend private messageSend e-mailVisit poster's website
AsuncTion
Beginner
Beginner


Joined: Nov 24, 2005
Posts: 20

PostPosted: Sun 27 Nov 2005 1:02 Reply with quoteBack to top

k heb het geinstalleerd, en display errors=false naar true veranderd, en nu krijg ik nog altyd een blanco pagina en zelfs geen error Sad
View user's profileSend private message
AsuncTion
Beginner
Beginner


Joined: Nov 24, 2005
Posts: 20

PostPosted: Mon 28 Nov 2005 4:28 Reply with quoteBack to top

niemand weet wat ik hieraan kan doen?
View user's profileSend private message
csmeijer
Moderator
Moderator


Joined: Jul 24, 2005
Posts: 213
Location: Emmeloord

PostPosted: Tue 29 Nov 2005 1:16 Reply with quoteBack to top

Als je je phpnuke geupdate hebt naar een nieuwere versie of je hebt code aangepast (beide scenarios al een keer gehad) en er is iets niet goed gegaan dan kan het zijn dat je een witte pagina hebt. Bij mij was de oplossing om je gehele admin map opnieuw te uploaden, zodat je de originele code weer hebt. (p.s. je bent geen instellingen kwijt)
Hoop dat het voor jou ook werkt.

Greetz Jos
View user's profileSend private messageVisit poster's website
AsuncTion
Beginner
Beginner


Joined: Nov 24, 2005
Posts: 20

PostPosted: Tue 29 Nov 2005 1:47 Reply with quoteBack to top

heb ik al geprobeert:(
View user's profileSend private message
BlueLion
Administrator
Administrator


Joined: Aug 21, 2004
Posts: 2836

PostPosted: Tue 29 Nov 2005 6:58 Reply with quoteBack to top

http://www.phpnuke-nederland.com/ftopict-832.html


BL
View user's profileSend private messageSend e-mailVisit poster's website
AsuncTion
Beginner
Beginner


Joined: Nov 24, 2005
Posts: 20

PostPosted: Wed 30 Nov 2005 2:29 Reply with quoteBack to top

ik heb in de common.php in modules/forums

op lijn 192 dit veranderd:
Code:

if (defined('FORUM_ADMIN')) {
//include("../../../db/db.php");


in dit:
Code:

//if (defined('FORUM_ADMIN')) {
include("../../../db/db.php");



en nu krijg ik deze error:
Quote:

Parse error: parse error, unexpected '}' in /home/moulin/public_html/modules/Forums/common.php on line 199


en dit staat er op lijn 199:
Code:

} else {
    include("includes/constants.php");
    include("includes/template.php");
    include("includes/sessions.php");
    include("includes/auth.php");
    include("includes/functions.php");
    include("db/db.php");
}


wat moet ik nu doen?
View user's profileSend private message
zeromechanic
Administrator
Administrator


Joined: Oct 01, 2004
Posts: 1527
Location: Emmeloord

PostPosted: Wed 30 Nov 2005 5:41 Reply with quoteBack to top

Code:
//if (defined('FORUM_ADMIN')) {
include("../../../db/db.php");


In dit stuk gaat het mis (regel 192)

en dit dan dit gedeelte : //if (defined('FORUM_ADMIN')) {

Je comment dit uit, dus ook het openings haakje ( { )

op regel 199 staat het sluit haakje ( } ), en die wordt daar niet verwacht, omdat er geen openings haakje is.

maar weet je zeker dat je de boel wel goed gepatched hebt??

bij mij staat bij patch 3.1 dit gedeelte op regel 183, en mn forum admin werkt zoals het moet:

[php:1:3887f68a7e]if (defined('FORUM_ADMIN')) {
//include("../../../db/db.php");
include("../../../includes/constants.php");
include("../../../includes/template.php");
include("../../../includes/sessions.php");
include("../../../includes/auth.php");
include("../../../includes/functions.php");
} else {
include("includes/constants.php");
include("includes/template.php");
include("includes/sessions.php");
include("includes/auth.php");
include("includes/functions.php");
include("db/db.php");
}[/php:1:3887f68a7e]

_________________
Te Lezen: Forum Regels | Te Gebruiken
View user's profileSend private messageVisit poster's website
AsuncTion
Beginner
Beginner


Joined: Nov 24, 2005
Posts: 20

PostPosted: Wed 30 Nov 2005 8:11 Reply with quoteBack to top

bij mij is ook de 3.1 patch en stond juist etzelfde als bij jou, maar k had elders deze oplossing gevonde Smile
View user's profileSend private message
BlueLion
Administrator
Administrator


Joined: Aug 21, 2004
Posts: 2836

PostPosted: Wed 30 Nov 2005 8:20 Reply with quoteBack to top

Als je het op prijs stelt, kan ik er voor je naar kijken.
Wat heb ik nodig: FTP toegang, phpmyadmin toegang, Admin account op je website.


BL
View user's profileSend private messageSend e-mailVisit poster's website
AsuncTion
Beginner
Beginner


Joined: Nov 24, 2005
Posts: 20

PostPosted: Wed 30 Nov 2005 22:31 Reply with quoteBack to top

k zal een PM sturen met alle info
View user's profileSend private message
AsuncTion
Beginner
Beginner


Joined: Nov 24, 2005
Posts: 20

PostPosted: Mon 05 Dec 2005 2:45 Reply with quoteBack to top

heb je mijn PM al gehad?
View user's profileSend private message
Display posts from previous:      
 Donaties   Adverteren 
Wilt u het forum steunen, dan kunt u nu eenvoudig doneren met PayPal.
Post new topicReply to topic
View previous topic Log in to check your private messages View next topic
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum



Powered by phpBB © 2001, 2005 phpBB Group

Web site powered by PHP-Nuke

All logos and trademarks in this site are property of their respective owner. The comments are property of their posters, all the rest © 2004-2008 by BlueLion.
SEO enhanced with the Sitemapper script
You can syndicate our news using the file backend.php or ultramode.txt
Powered by PHP Powered by MySQL Apache Webserver Valid robots.txt
PHP-Nuke Copyright © 2004 by Francisco Burzi. This is free software, and you may redistribute it under the GPL. PHP-Nuke comes with absolutely no warranty, for details, see the license.
Pagina rendering: 0.09 seconden


[Valid News RSS]

RSS Feeds:
[RSS 2.0 News Feed]
[RSS 2.0 Download Feed]
[RSS 2.0 Forum Feed]
[RSS 2.0 Link Feed]
:: fisubsilver shadow phpbb2 style by Daz :: PHP-Nuke theme by BlueLion ::