Skip to main content
Recent Posts
1
Site Feedback / Re: EARLY Beta version of 2.0
Last post by Spuds -
And another bump of the old site, getting closer to a B1 release.

This update continues to fix a few items from the Admin menu redo and more strict action processing
Like Stats has been removed from the top menu and is now an information center option just like site stats.
The click zone on the breadcrumbs was improved (actually just a class typo in the CSS)
A few installer tweaks, I've cleaned up the default options a bit so on a fresh install it makes a bit more sense.  Still lots of things for the admin to decide on.  I've run that a few times and seems good, now I'm installing addons to make sure nothing else was broken.
2
Support / Re: Registration doesn't work
Last post by Spuds -
Taking a quick look (I don't have your specific 1.1.9 + SP 1.1)  but lets try a stop gap measure while we continue to look.

In Load.php

Code: (find) [Select]
		// Default language directories to try.
$language_directories = array(
$settings['default_theme_dir'] . '/languages',
$settings['actual_theme_dir'] . '/languages',
);

Code: (replace) [Select]
		// Default language directories to try.
$language_directories = array(
$settings['default_theme_dir'] . '/languages',
(!empty($settings['actual_theme_dir']) ? $settings['actual_theme_dir'] : $settings['default_theme_dir']) . '/languages',
);

that should get by that error, but I'm really not sure why you are seeing that.  Be sure to check you theme settings in the admin panel just to make sure the directory entries look correct.
5
Site Feedback / Re: EARLY Beta version of 2.0
Last post by Spuds -
Quote from: "Spuds" – I'd say yes ... clears when you select the notification from the list but not when you click mark read .... easy fix.
Should be fixed now ... this was a result of a previous change i made that enforced the dispatch and action sequence, better security.  That controller did things lazy and that is not supported any longer.  Could be other areas like that so be on the lookout!

Finished the admin menu update, man that was a lot of work and back and forth cuz really there is no one correct layout. Anyway its a lot better (i think at least)

All updates applied to site
6
Site Feedback / Re: EARLY Beta version of 2.0
Last post by Spuds -
Quote from: Burke Knight – Wonder if one fix broke the marking of notifications read function, as they wont clear now.
I'd say yes ... clears when you select the notification from the list but not when you click mark read .... easy fix.

I'm working on one of the last beta changes, reorganize the admin menu.  When I push that to the site I'll fix the notification item.