Go Back   vb.org Archive > vBulletin 4 Discussion > vB4 Programming Discussions
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools Display Modes
  #1  
Old 05-17-2016, 06:07 PM
Jonm Jonm is offline
 
Join Date: May 2011
Location: Staffordshire
Posts: 76
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default White screen forum - HELP

Right then,

when viewing the following URL - www.staffs-vw.co.uk all I see is a white screen, but when I view this URL www.staffs-vw.co.uk/forum.php I see the site.

Can anyone tell me why? I'm stuck.....
Reply With Quote
  #2  
Old 05-17-2016, 06:43 PM
Dave Dave is offline
 
Join Date: May 2010
Posts: 2,583
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Review the settings at AdminCP > Settings > Navigation Manager.
Everything correctly set at that page?

Bought a 2010 VW Jetta yesterday, amazing car.
Reply With Quote
  #3  
Old 05-17-2016, 07:01 PM
Jonm Jonm is offline
 
Join Date: May 2011
Location: Staffordshire
Posts: 76
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

seems ok



--------------- Added [DATE]1463519011[/DATE] at [TIME]1463519011[/TIME] ---------------

expanded view

Reply With Quote
  #4  
Old 05-17-2016, 07:29 PM
squidsk's Avatar
squidsk squidsk is offline
 
Join Date: Nov 2010
Posts: 969
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Check to see that you have an index.php in the folder.
Reply With Quote
  #5  
Old 05-17-2016, 07:33 PM
Jonm Jonm is offline
 
Join Date: May 2011
Location: Staffordshire
Posts: 76
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by squidsk View Post
Check to see that you have an index.php in the folder.

it's there and this is what it looks like

<?php
/*================================================= =====================*\
|| ################################################## ################## ||
|| # vBulletin 4.2.0 Patch Level 3 - Licence Number XXXX
|| # ---------------------------------------------------------------- # ||
|| # Copyright �2000-2012 vBulletin Solutions Inc. All Rights Reserved. ||
|| # This file may not be redistributed in whole or significant part. # ||
|| # ---------------- VBULLETIN IS NOT FREE SOFTWARE ---------------- # ||
|| # http://www.vbulletin.com | http://www.vbulletin.com/license.html # ||
|| ################################################## ################## ||
\*================================================ ======================*/

/* Tell forum.php to redirect
to the default url as defined
in the navigation manager */
define('VB_REDIRECT', true);

/**
* If you want to move this file to the root of your website, change the
* line below to your vBulletin directory and uncomment it (delete the //).
*
* For example, if vBulletin is installed in '/forum' the line should
* state: define('VB_RELATIVE_PATH', 'forums');
*
* Note: You may need to change the cookie path of your vBulletin
* installation to enable your users to log in at the root of your website.
* If you move this file to the root of your website then you should ensure
* the cookie path is set to '/'.
*
* See 'Admin Control Panel
* ->Cookies and HTTP Header Options
* ->Path to Save Cookies
*/

//define('VB_RELATIVE_PATH', 'forums');

// Do not edit anything below //
if (defined('VB_RELATIVE_PATH'))
{
chdir('./' . VB_RELATIVE_PATH);
}

require('forum.php');


/*================================================= =====================*\
|| ################################################## ##################
|| # Downloaded: 10:46, Fri Dec 7th 2012
|| # CVS: $RCSfile$ - $Revision: 60957 $
|| ################################################## ##################
Reply With Quote
  #6  
Old 05-17-2016, 07:37 PM
TheLastSuperman's Avatar
TheLastSuperman TheLastSuperman is offline
Senior Member
 
Join Date: Sep 2008
Location: North Carolina
Posts: 5,844
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

If an index.html file exists on the server, temporarily rename it and then check.
  • Any recent changes to .htacess?
  • Any recent changes to mods? (new installs or uninstalls)
  • Has your host recently updated the server? (PHP version etc)
  • I see vBSEO listed at top left in the drop-downs, is it still installed? If yes it could be hacked (it's vulnerable now, the company and product is gone and it's not supported or secure) you need to consider replacing it with DBSEO or uninstalling and going with mod rewrite friendly url structure.

Edit: http://www.staffs-vw.co.uk/forum.php is loading fine, I bet it's a index.html file loading before index.php as the server is defaulted to that load order.
Reply With Quote
  #7  
Old 05-17-2016, 07:41 PM
Jonm Jonm is offline
 
Join Date: May 2011
Location: Staffordshire
Posts: 76
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by TheLastSuperman View Post
If an index.html file exists on the server, temporarily rename it and then check.
  • Any recent changes to .htacess?
  • Any recent changes to mods? (new installs or uninstalls)
  • Has your host recently updated the server? (PHP version etc)

No changes to htacess, no new mods, I did delete the garage mod a while back and no new php that I know of.

renamed and I still see white



by viewing url/forum.php i see this

Reply With Quote
  #8  
Old 05-17-2016, 08:33 PM
squidsk's Avatar
squidsk squidsk is offline
 
Join Date: Nov 2010
Posts: 969
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

TheLastSuperman meant rename/copy your index.php to testme.php (or something similar) and point your browser to testme.php and see what happens.

Is there anything in the logs?
Reply With Quote
Благодарность от:
Jonm
  #9  
Old 05-18-2016, 09:57 AM
Jonm Jonm is offline
 
Join Date: May 2011
Location: Staffordshire
Posts: 76
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by TheLastSuperman View Post

Edit: http://www.staffs-vw.co.uk/forum.php is loading fine, I bet it's a index.html file loading before index.php as the server is defaulted to that load order.
I'm new to all this and still learning, any help with what to do would be great thanks :up:

--------------- Added [DATE]1463573233[/DATE] at [TIME]1463573233[/TIME] ---------------

Quote:
Originally Posted by squidsk View Post
TheLastSuperman meant rename/copy your index.php to testme.php (or something similar) and point your browser to testme.php and see what happens.

Is there anything in the logs?
Where would I find the logs?

--------------- Added [DATE]1463612713[/DATE] at [TIME]1463612713[/TIME] ---------------

anyone?

--------------- Added [DATE]1463658798[/DATE] at [TIME]1463658798[/TIME] ---------------

Had another look around the web last night for ideas and still nothing to help..
Reply With Quote
  #10  
Old 05-19-2016, 05:25 PM
Jonm Jonm is offline
 
Join Date: May 2011
Location: Staffordshire
Posts: 76
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

turns out I had index.html and index.php in the folder so I deleted the html file and it works again.
Reply With Quote
2 благодарности(ей) от:
MarkFL, TheLastSuperman
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT. The time now is 08:58 PM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2024, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.05217 seconds
  • Memory Usage 2,263KB
  • Queries Executed 11 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)ad_showthread_beforeqr
  • (1)ad_showthread_firstpost
  • (1)ad_showthread_firstpost_sig
  • (1)ad_showthread_firstpost_start
  • (4)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)navbar
  • (3)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (1)pagenav_pagelink
  • (10)post_thanks_box
  • (3)post_thanks_box_bit
  • (10)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (2)post_thanks_postbit
  • (10)post_thanks_postbit_info
  • (10)postbit
  • (10)postbit_onlinestatus
  • (10)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open
  • (1)tagbit_wrapper 

Phrase Groups Available:
  • global
  • inlinemod
  • postbit
  • posting
  • reputationlevel
  • showthread
Included Files:
  • ./showthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • showthread_start
  • showthread_getinfo
  • forumjump
  • showthread_post_start
  • showthread_query_postids
  • showthread_query
  • bbcode_fetch_tags
  • bbcode_create
  • showthread_postbit_create
  • postbit_factory
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • fetch_musername
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • post_thanks_function_fetch_thanks_bit_start
  • post_thanks_function_show_thanks_date_start
  • post_thanks_function_show_thanks_date_end
  • post_thanks_function_fetch_thanks_bit_end
  • post_thanks_function_fetch_post_thanks_template_start
  • post_thanks_function_fetch_post_thanks_template_end
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete