Go Back   vb.org Archive > vBulletin 3 Discussion > vB3 General Discussions
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools Display Modes
  #11  
Old 05-17-2008, 02:46 AM
Lynne's Avatar
Lynne Lynne is offline
 
Join Date: Sep 2004
Location: California/Idaho
Posts: 41,180
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Have you made sure that you have uploaded the cpstyles? Or that the permissions are correct for the folder and the subfolders within it? Look at the source code on a page in your admin cp, around the fourth line is something like this:
HTML Code:
     <link rel="stylesheet" type="text/css" href="../cpstyles/vBulletin_3_Frontend/controlpanel.css" />
Point your browser to it and see if it comes up. If it doesn't come up in your browser, the either is doesn't exist (so upload it) or the permissions are incorrect (so fix them).
Reply With Quote
  #12  
Old 05-17-2008, 10:46 AM
Marco van Herwaarden Marco van Herwaarden is offline
 
Join Date: Jul 2004
Posts: 25,415
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

To troubleshoot this, please remove any hacks and disable your plugins, then see if you still have this problem.
Note: To temporarily disable the plugin system, edit config.php and add this line right under <?php

define('DISABLE_HOOKS', true);

If so, reupload all the original vB non-image files (except install.php). Make sure you upload these in ASCII format and overwrite the ones on the server.

If your problem still exists, please create a new Style with no Parent set. Now browse the forum using this new style, do you still have the same problems? If you are troubleshooting login or guest issues, you will need to set this style as board default in the vBulletin Options.

If this doesn't help, then i suggest to open a support ticket so a support staff member can have a look at your server.
Reply With Quote
  #13  
Old 05-20-2008, 06:37 PM
mandogon's Avatar
mandogon mandogon is offline
 
Join Date: Aug 2006
Location: California
Posts: 71
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I checked the webserver for the cp styles directories and i posted the pictures below.... to my understanding it looks pretty correct.....

Also might i add that on my test server "everything works properly...." all i do is mount my test server to the webserver and plow everything over.....

Also... Lynne... im not sure what exactly you mean... about looking at the source for a admin cp page....

If i understand correctly

what i did was navigate to the vbulletin options main page.... used firefox and right clicked on the page and clicked "view page source"

which gave me this....

HTML Code:
<html dir="ltr" lang="en">
	<head>
	<script type="text/javascript">
	<!--
	// get out of any containing frameset
	if (self.parent.frames.length != 0)
	{
		self.parent.location.replace(document.location.href);
	}
	// -->
	</script>
	<title>CCTVHelp.com Discussion Board Admin Control Panel</title>
	</head>

		<frameset cols="195,*"  framespacing="0" border="0" frameborder="0" frameborder="no" border="0">

		<frame src="index.php?do=nav" name="nav" scrolling="yes" frameborder="0" marginwidth="0" marginheight="0" border="no" />
		<frameset rows="20,*"  framespacing="0" border="0" frameborder="0" frameborder="no" border="0">
			<frame src="index.php?do=head" name="head" scrolling="no" noresize="noresize" frameborder="0" marginwidth="10" marginheight="0" border="no" />
			<frame src="index.php?do=home" name="main" scrolling="yes" frameborder="0" marginwidth="10" marginheight="10" border="no" />
		</frameset>
	</frameset>
	
	<noframes>
		<body>
			<p>Your browser does not support frames. Please get one that does!</p>
		</body>
	</noframes>
	</html>
I dont think that i found the correct area to view the source, could you please direct me to the appropriate area to view the info you posted ?

BTW - Lynne thanks for all the help

Marco - I'm trying your solution next... 1 at a time....Lynnes first then yours but thanks for the reply and the help i really appreciate it..

I will reply later with updates on the situation


*PS* Sorry About the picture quality i thought it would turn out better.... if you need a better resolution image, I can make one, just let me know
Attached Images
File Type: jpg permissions.jpg (77.6 KB, 0 views)
File Type: jpg permissions2.jpg (88.7 KB, 0 views)
Reply With Quote
  #14  
Old 05-20-2008, 07:35 PM
Lynne's Avatar
Lynne Lynne is offline
 
Join Date: Sep 2004
Location: California/Idaho
Posts: 41,180
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

In firefox, when trying to get the source code for a page in a frame, right click on the page and go down to This Frame and then View Frame Source. That should give you the source code for that page. Squinting at your images, I think you have all the files in the correct place, so unless that path is wrong in the source code, then the style should show.
Reply With Quote
  #15  
Old 05-20-2008, 10:24 PM
mandogon's Avatar
mandogon mandogon is offline
 
Join Date: Aug 2006
Location: California
Posts: 71
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Lynne,

I think i found it, thanks for the tip

HTML Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html dir="ltr" lang="en">
<head>
	<title>Welcome to the vBulletin Admin Control Panel - CCTVHelp.com Discussion Board - vBulletin Admin Control Panel</title>
	<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
	<link rel="stylesheet" type="text/css" href="../cpstyles/vBulletin_3_Default/controlpanel.css" />
	<style type="text/css">
		.page { background-color:white; color:black; }
		.time { color:silver; }
	</style>

So what i did was copy and pasted it into the browser .... https://www.cctvhelp.com/cpstyles/vB...ntrolpanel.css

and some css did come up but it kinda looked outta wack.... but i assume thats just because the browser is wrapping the text... and ignoring the whitespace

So pretty much the files exist and the permissions are good ? right ?
Reply With Quote
  #16  
Old 05-20-2008, 10:37 PM
Lynne's Avatar
Lynne Lynne is offline
 
Join Date: Sep 2004
Location: California/Idaho
Posts: 41,180
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Maybe try reuploading those files? Usually, the css is nice and neat and easy to read and edit. Your file is not.
Reply With Quote
  #17  
Old 05-21-2008, 06:22 PM
mandogon's Avatar
mandogon mandogon is offline
 
Join Date: Aug 2006
Location: California
Posts: 71
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Well i uploaded the css file... same thing....

When i look at the css file on the webserver... it looks fine.... just when i open it with the browser it looks funky

theres a pic from the webserver below...

I think I'm gonna take a whack at what marco said now and see if that helps....

what really kills me is that this whole thing works on my test server.... i can even... move the files from the webserver to the test server.... and the admincp style works fine.....errrrrrr
Attached Images
File Type: jpg webservercss.jpg (52.4 KB, 0 views)
Reply With Quote
  #18  
Old 05-22-2008, 04:16 PM
mandogon's Avatar
mandogon mandogon is offline
 
Join Date: Aug 2006
Location: California
Posts: 71
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I'm gonna take a break with this for a few days.... i gotta couple other things that need to be done....

but i'll be back with updates....

-Thanks
Reply With Quote
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:22 PM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.04257 seconds
  • Memory Usage 2,271KB
  • Queries Executed 12 (?)
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
  • (3)bbcode_html
  • (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
  • (8)post_thanks_box
  • (8)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (8)post_thanks_postbit_info
  • (8)postbit
  • (3)postbit_attachment
  • (8)postbit_onlinestatus
  • (8)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
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • fetch_musername
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • postbit_attachment
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete