Random server errors

Status
Not open for further replies.

futureslay88

New Member
Messages
13
Reaction score
0
Points
0
Hey,

Just installed radiPanel and the setup was all correct. Problem is when accessing links from inside the panel itself. It'll give you a blank server error page.
Any ideas?

500 Server Error..
 
Last edited:

masshuu

Head of the Geese
Community Support
Enemy of the State
Messages
2,293
Reaction score
50
Points
48
This looks to be a configuration/software issue so you will need to contact the developers for more help. I notice your .htaccess had invalid characters in it. Additionally it looks like there are missing files and rewrite loops occurring.
 

futureslay88

New Member
Messages
13
Reaction score
0
Points
0
Okay, I have installed a different version of the software.
I am able to access the panel, but if I follow a link, such as here. I'm still getting the 500's.
As for what you said about the .htaccess, what do you suggest? This is it as it is right now:
Code:
Options -Indexes

# Various rewrite rules.
<IfModule mod_rewrite.c>
  RewriteEngine on
  RewriteCond %{REQUEST_FILENAME} !-f
  RewriteCond %{REQUEST_FILENAME} !-d
  RewriteCond %{REQUEST_URI} !=/favicon.ico

  RewriteRule ^(.*)(\.)(.*)$ index.php?url=$1.$3 [L,QSA]
  RewriteRule ^ajax$ _res/ajax.php [QSA]
  #RewriteRule ^(.*)$ index.php?t=$1 [L,QSA]
</IfModule>
 

masshuu

Head of the Geese
Community Support
Enemy of the State
Messages
2,293
Reaction score
50
Points
48
I removed the invalid characters when i was looking at it, i wasn't sure if they were the cause or not.
I can't really offer much more. Under cPanel, there should be "error logs", i would check that and see if it reports anything, I don't remember if error logs work though.
 

futureslay88

New Member
Messages
13
Reaction score
0
Points
0
I've been getting the same errors the whole way through.
Code:
[16-Mar-2011 19:10:02] PHP Fatal error:  Call to a member function buildField() on a non-object in /home/majortt/public_html/index.php on line 224

My friend seems to think it's a hosting issue.
Maybe you don't have mod rewrite enabled? A certain php function disabled perhaps?
 

Livewire

Abuse Compliance Officer
Staff member
Messages
18,169
Reaction score
216
Points
63
Shouldn't cause a "member function" error if mod_rewrite was disabled since line 224 doesn't -do- a rewrite, and if a php function was disabled it would say something like "PHP Fatal Error: Function is blocked for security in /home/blahblahblah/ on line 666".

Whats odd is I tested it on my local copy of xampp using the zip file you have on the account, and it works just fine here, so I'm not sure -what- happened. If there were invalid characters in the .htaccess at one point (sounds like masshuu fixed that), that makes me wonder if other files may be partially corrupted though.
 

futureslay88

New Member
Messages
13
Reaction score
0
Points
0
If yours works, then it might be worth you zipping up yours, giving me a link and me install it from your files.
I'll try that and then if not. Try and get hold of Josh
 

Livewire

Abuse Compliance Officer
Staff member
Messages
18,169
Reaction score
216
Points
63
Reuse your zip file on your account since that's what I downloaded and used to install it locally; I can say from that the files within the zip aren't compromised at least :)
 

futureslay88

New Member
Messages
13
Reaction score
0
Points
0
It's the mod_rewrite on the free servers. They say it's enabled, but I couldn't get it to work.
It needs mod_rewrite in order to create the "fancy" url's - "core.home"
 
Last edited:
Status
Not open for further replies.
Top