View Full Version : [Solved] Can Access AdminCP But Not Forum
I got home last night to find my forum down. At the time it was given a cloudflare message. Bluehost recommended I delete cloudflare which I did, now I get a 500 server error when trying to access the forums.
After hours on the phone with bluehost they've basically left me with "it's a code issue hire a developer" no changes were made to bring on this issue. I reinstalled vbulletin 4.2.2 fresh just now and the issue persists.
I don't know whether bluehost is just screwing me or if the issue is a vbulletin problem.
Any help is appreciated.
--------------- Added 1382675748 at 1382675748 ---------------
I should also mention that the wordpress installation on the server still loads, just not VB.
Max Taxable
10-25-2013, 03:42 AM
There was a file edit needed to make CF work on your board. Remember? You must revert this file when deleting CF.
There was a file edit needed to make CF work on your board. Remember? You must revert this file when deleting CF.
No I don't remember :o
Max Taxable
10-25-2013, 03:47 AM
It's been so long since I stopped using CF, i don't offhand remember either. I only know there was one, related to IPs displayed all being cloudflare if you didn't do the edit.
Before you deleted CF did you point your board back to your host's nameserver?
Can we have a link to your board?
My website is truthinourtime.com the forum is /forum
It's been awhile since I installed CF as well and I don't recall having to do anything. Since my forum is a subdomain would I still have had to do it?
The only thing I did was reset DNS tables in cpanel but nothing from vbulletin side.
Thanks for your help.
--------------- Added 1382677072 at 1382677072 ---------------
I looked into the issue of what was added for CF to work to begin with and found
"Remove the // in front of the $config['Misc']['proxyiplist'] and $config['Misc']['proxyipheader']"
I looked up my config.php and it has the // which I'm assuming I need since I no longer have CF.
Max Taxable
10-25-2013, 03:58 AM
Well... Your /forum is definitely down worldwide:
http://host-tracker.com/check_res_ajx/13933890-0/
Well... Your /forum is definitely down worldwide:
http://host-tracker.com/check_res_ajx/13933890-0/
No doubt. Any ideas?
Max Taxable
10-25-2013, 04:02 AM
How did you "delete" Cloudflare? You must point your domain back to the host when you do.
You say adminCP is still live? Could it be you did this feature?
http://blog.cloudflare.com/introducing-pagerules-fine-grained-feature-co
How did you "delete" Cloudflare? You must point your domain back to the host when you do.
You say adminCP is still live? Could it be you did this feature?
http://blog.cloudflare.com/introducing-pagerules-fine-grained-feature-co
I deleted it from within cpanel, as well as deleted it from cloudflares website. When I login now it asks me to add a website.
From within cpanel I reverted DNS to default, since before I did that I had DNS errors (obviously) and now the forum will sometimes load but it takes several minutes sometimes it doesn't load at all and even if it loads you can't click on any threads.
Max Taxable
10-25-2013, 04:08 AM
Here was the original file edit they used to call for, for use with vBulletin:
1.
Open includes/class_core.php
2.
Find: function fetch_ip() { return $_SERVER['REMOTE_ADDR']; }
replace with:
function fetch_ip() { if(isset($_SERVER['HTTP_CF_CONNECTING_IP'])) { return $_SERVER['HTTP_CF_CONNECTING_IP']; } return $_SERVER['REMOTE_ADDR']; }
Find:
function fetch_alt_ip() { $alt_ip = $_SERVER['REMOTE_ADDR'];
if (isset($_SERVER['HTTP_CLIENT_IP'])) { $alt_ip = $_SERVER['HTTP_CLIENT_IP']; }
Replace with:
function fetch_alt_ip() { $alt_ip = $_SERVER['REMOTE_ADDR'];
if (isset($_SERVER['HTTP_CF_CONNECTING_IP'])) { $alt_ip = $_SERVER['HTTP_CF_CONNECTING_IP']; } else if (isset($_SERVER['HTTP_CLIENT_IP'])) { $alt_ip = $_SERVER['HTTP_CLIENT_IP']; }
3. Upload and overwriteTry re-uploading your original class_core.php file to the server, to overwrite this even if you don't recall doing it.
I deleted it from within cpanel, as well as deleted it from cloudflares website. When I login now it asks me to add a website.
From within cpanel I reverted DNS to default, since before I did that I had DNS errors (obviously) and now the forum will sometimes load but it takes several minutes sometimes it doesn't load at all and even if it loads you can't click on any threads.Deleted your cloudflare account?
I just got this when trying to load your forum:
500 Server Error
A misconfiguration on the server caused a hiccup. Check the server logs, fix the problem, then try again. URL: http://www.truthinourtime.com/forum/
Here was the original file edit they used to call for, for use with vBulletin:
Try re-uploading your original class_core.php file to the server, to overwrite this even if you don't recall doing it.
--------------- Added 1382677769 at 1382677769 ---------------
Deleted your cloudflare account?
I'm trying what you recommend now but no I deleted my website from my cloudflare account when I login it now asks me to add a website, there is no record of mine.
Max Taxable
10-25-2013, 04:13 AM
I just got this when trying to load your forum:
500 Server Error
A misconfiguration on the server caused a hiccup. Check the server logs, fix the problem, then try again. URL: http://www.truthinourtime.com/forum/
I uploaded the file, it was the exact same size so I don't think it had been edited. Or it had been replaced when I reuploaded all of the files again an hour ago.
--------------- Added 1382678107 at 1382678107 ---------------
I just got this when trying to load your forum:
Yes you get that sometimes and sometimes after 5 minutes the front page loads.
--------------- Added 1382712607 at 1382712607 ---------------
Anyone??
--------------- Added 1382744993 at 1382744993 ---------------
Well the problem turned out to be a plugin was holding it up. I disabled plugins within config.php and it loaded quickly. Does anyone know a way to check and see which plugin is causing the issue and why or just turn them on one by one?
Thanks for the help Max.
vBulletin® v3.8.12 by vBS, Copyright ©2000-2025, vBulletin Solutions Inc.