If you are not registered or logged in, you may still use these forums but with limited features. Show recent topics
  [Search] Search   [Hottest Topics] Hottest Topics   [Members]  Member Listing   [FAQ]  FAQ 
[Register] Register / 
[Login] Login 
Advanced Poll 2.02 Adminpanel not displaying  XML
Forum Index » Support Forum
Author Message
Anonymous



Help anyone?
I access the admin directory from my browser and a blank page is displayed... nothing else ... I am so stuck at the moment any help is very welcome!

regards
Auron
Expert
[Avatar]

Joined: 23/06/2003 22:02:17
Messages: 1053
Offline

did you upload all the files?
got the right directory?
did you upload the files in the right mode?
any errors appearing?
did you install it correctly?
which version are you using?

Auron

Visit my site @ www.ragnaru.com
Adv. Poll Install Guide NOW BACK ONLINE! (And also rather out of date I would of thought)
[Email] [WWW]
Anonymous



Yes I have uploaded everything to the right place, all files are in place.
It returns a blank page, not a 404 error..
I am running it on a Netware server with php4 and mysql installed.
It installed propperly, so I guess settings are correct. It is just that /admin/indexphp is returning a blank page instead of login interface for the administrator... I have no idea why
Auron
Expert
[Avatar]

Joined: 23/06/2003 22:02:17
Messages: 1053
Offline

Is the url you are typing something like http://www.yourdomain.com/polldir/admin/index.php

???

Auron

Visit my site @ www.ragnaru.com
Adv. Poll Install Guide NOW BACK ONLINE! (And also rather out of date I would of thought)
[Email] [WWW]
Anonymous



yes, precisely
Auron
Expert
[Avatar]

Joined: 23/06/2003 22:02:17
Messages: 1053
Offline

I can't think of anything apart from that have you uploaded all the admin templates all the files and folders in the same places as when you unzipped them?

Apart from that I have no idea.

Auron

Visit my site @ www.ragnaru.com
Adv. Poll Install Guide NOW BACK ONLINE! (And also rather out of date I would of thought)
[Email] [WWW]
Anonymous



make sure polldir/admin/templates/admin_login.html has valid HTML code
Anonymous



well i checked the index template and it seems fine to me...
it could be that this is uncompatible with php for netware i guess.
thanks to all for your help but i think there is no cure for this. I have reinstalled it 3 times and stil did not get any further.
Anonymous



Novell's version of PHP does not correctly handle the filesize function. Edit the class_template.php file in the include folder. Comment out the line in the set_templatefiles function that says:

$this->files[$filename] = fread($fp, filesize($file_path));

Add the following in its place:

do {
$filedata = fread($fp, 8192);
if (strlen($filedata) == 0) {
break;
}
$this->files[$filename] .= $filedata;
} while(true);
 
Forum Index » Support Forum
Go to:   
Based on the open source JForum