PDA

View Full Version : User General Setting Page


aquabid
04-25-2015, 07:55 PM
Why is it displaying like this

https://vborg.vbsupport.ru/external/2015/04/3.jpg

http://www.aquaboards.com/

ForceHSS
04-25-2015, 08:09 PM
Why is what? you need to give more details as with so little we cant help

Lynne
04-25-2015, 08:31 PM
We cannot see the image you posted since it is an attachment on your board and you don't allow unregistered users to view attachments.

aquabid
04-25-2015, 08:40 PM
https://vborg.vbsupport.ru/external/2015/04/3.jpg

--------------- Added 1430010976 at 1430010976 ---------------

Noticed the page source has at the beginning


<br /><b>Warning</b>: Creating default object from empty value in <b>..../packages/vbcms/search/searchcontroller/newstaticpage.php</b> on line <b>11</b><br />

Lynne
04-26-2015, 03:29 PM
That looks like your CSS is messed up. Try looking at the page in a totally default style.

To create a default style, create a new style with no parent:

Styles & Templates > Style Manager > Add New Style
Parent Style: No Parent Style
Title: Default vBulletin
Allow User Selection: Yes
Save

Set this as the default in AdminCP > Settings > Options > Styles & Languages > Set Default Style. Then go to Maintenance > Clear System Cache. Then browse the site using that totally default vbulletin style - do you still have the same problem?

aquabid
04-27-2015, 01:50 PM
Same issue

Top of page says
Warning: Creating default object from empty value in ..../packages/vbcms/search/searchcontroller/newstaticpage.php on line 11

kh99
04-27-2015, 02:09 PM
Same issue

Top of page says
Warning: Creating default object from empty value in ..../packages/vbcms/search/searchcontroller/newstaticpage.php on line 11

It looks like that's actually a bug that's been fixed in version 4.2.3b4. You could try making a change to packages/vbcms/search/searchcontroller/newstaticpage.php on line 11 so that it says $this instead of $self at the beginning of the line. But another thing you could do is add this line in your includes/config.php, somewhere after the first line:
define('SKIP_DS_ERRORS', 1);


and hopefully that will stop warnings from being displayed (it could be that the warning message is what's messing up the formatting).

Edit: For reference, http://tracker.vbulletin.com/browse/VBIV-16003?page=com.atlassian.jira.plugin.system.issuet abpanels%3Aall-tabpanel

ForceHSS
04-27-2015, 02:09 PM
It also might be an empty entry in the cms id check from admincp first

aquabid
04-27-2015, 02:13 PM
It's a plugin What's New Reloaded
https://vborg.vbsupport.ru/showthread.php?t=252601

Disabled and it displays properly

kh99
04-27-2015, 02:22 PM
It's a plugin What's New Reloaded
https://vborg.vbsupport.ru/showthread.php?t=252601

Disabled and it displays properly

Yeah, I guess that plugin causes the message because it uses the search classes. I don't completely understand the issue, but if you wanted to keep using that plugin you could try one of the fixes above.