MyBB Community Forums

Full Version: (Fresh install) Missing icons across the board & User CP style not being loaded
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
^ you can remove that in ~/inc/settings.php file
$settings['cookiedomain'] = "";

after changing it in the settings.php file,
you have to again change the value set earlier at Site Details page of Configuration section
(2017-07-03, 02:43 PM).m. Wrote: [ -> ]^ you can remove that in ~/inc/settings.php file

$settings['cookiedomain'] = "";

after changing it in the settings.php file,
you have to again change the value set earlier at Site Details page of Configuration section

Awesome - I appreciate the assist on this. I knew it would involve digging through some of those, but wasn't 100% on it's exact location.

(2017-07-03, 01:10 PM)Euan T Wrote: [ -> ]Out of interest, can you please paste the contents of your "headerinclude" template from ACP > Templates & Style > Templates (on the left) > Default Templates > Ungrouped Templates > headerinclude?


headerinclude is posted at: https://paste.debian.net/plain/974555

<link rel="alternate" type="application/rss+xml" title="{$lang->latest_threads} (RSS 2.0)" href="{$mybb->settings['bburl']}/syndication.php" />
<link rel="alternate" type="application/atom+xml" title="{$lang->latest_threads} (Atom 1.0)" href="{$mybb->settings['bburl']}/syndication.php?type=atom1.0" />
<meta http-equiv="Content-Type" content="text/html; charset={$charset}" />
<meta http-equiv="Content-Script-Type" content="text/javascript" />
<script type="text/javascript" src="{$mybb->asset_url}/jscripts/jquery.js?ver=1806"></script>
<script type="text/javascript" src="{$mybb->asset_url}/jscripts/jquery.plugins.min.js?ver=1806"></script>
<script type="text/javascript" src="{$mybb->asset_url}/jscripts/general.js?ver=1810"></script>

{$stylesheets}
<script type="text/javascript">
<!--
	lang.unknown_error = "{$lang->unknown_error}";

	lang.select2_match = "{$lang->select2_match}";
	lang.select2_matches = "{$lang->select2_matches}";
	lang.select2_nomatches = "{$lang->select2_nomatches}";
	lang.select2_inputtooshort_single = "{$lang->select2_inputtooshort_single}";
	lang.select2_inputtooshort_plural = "{$lang->select2_inputtooshort_plural}";
	lang.select2_inputtoolong_single = "{$lang->select2_inputtoolong_single}";
	lang.select2_inputtoolong_plural = "{$lang->select2_inputtoolong_plural}";
	lang.select2_selectiontoobig_single = "{$lang->select2_selectiontoobig_single}";
	lang.select2_selectiontoobig_plural = "{$lang->select2_selectiontoobig_plural}";
	lang.select2_loadmore = "{$lang->select2_loadmore}";
	lang.select2_searching = "{$lang->select2_searching}";

	var cookieDomain = "{$mybb->settings['cookiedomain']}";
	var cookiePath = "{$mybb->settings['cookiepath']}";
	var cookiePrefix = "{$mybb->settings['cookieprefix']}";
	var cookieSecureFlag = "{$mybb->settings['cookiesecureflag']}";
	var deleteevent_confirm = "{$lang->deleteevent_confirm}";
	var removeattach_confirm = "{$lang->removeattach_confirm}";
	var loading_text = '{$lang->ajax_loading}';
	var saving_changes = '{$lang->saving_changes}';
	var use_xmlhttprequest = "{$mybb->settings['use_xmlhttprequest']}";
	var my_post_key = "{$mybb->post_code}";
	var rootpath = "{$mybb->settings['bburl']}";
	var imagepath = "{$theme['imgdir']}";
  	var yes_confirm = "{$lang->yes}";
	var no_confirm = "{$lang->no}";
	var MyBBEditor = null;
	var spinner_image = "{$theme['imgdir']}/spinner.gif";
	var spinner = "<img src='" + spinner_image +"' alt='' />";
	var modal_zindex = 9999;
// -->
</script>
would you like to PM me temporary access to forum admin panel & files (FTP) to check it

note: I'll be back online from GMT 1645 for about an hour unless there is an emergency.
(2017-07-03, 04:11 PM).m. Wrote: [ -> ]would you like to PM me temporary access to forum admin panel & files (FTP) to check it

Sending some creds your way.

Euan, if you'd like to check this out I can pass creds your way as well.
(2017-07-03, 04:53 PM)Persona Wrote: [ -> ]
(2017-07-03, 04:11 PM).m. Wrote: [ -> ]would you like to PM me temporary access to forum admin panel & files (FTP) to check it

Sending some creds your way.

Euan, if you'd like to check this out I can pass creds your way as well.

Sure, that would be great thanks Smile
Did this ever get resolved? I'm also trying to get MyBB to work on nginx and this seems to be the last issue I'm facing.

Edit:
https://community.mybb.com/thread-207823.html

Replacing :
include snippets/fastcgi-php.conf;
With:
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;

Fixed it for me. Still isn't a preferred solution though.
Pages: 1 2