Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Feature Tests / QA
#26
Ah I assume you mean in menu manager.
Think the page cache is not updating on publish.

EDIT:
Yup, I never implemented that.
I just fixed regen sitemap and page cache on draft publish.
NEW: SA Admin Toolbar Plugin | View All My Plugins
- Shawn A aka Tablatronix
Reply
#27
(2014-11-25, 01:38:39)shawn_a Wrote: Ah I assume you mean in menu manager.

Yes, that's it, but I can't reproduce it now. I may have had another tab open at the same time or something, but whatever I try, it's solid. (This is without your page cache and sitemap fixes.)

However, the Website Settings (Website URL, Local Timezone and Email Address fields) have all cleared themselves again. I'm beginning to wonder if there's a problem with the hosting server cache, although I have disabled it as far as a user can.

(Incidentally, disabling the hosting server cache sets PHP display_errors=on. Is that (the only reason) why I'm seeing the pages.xml errors on installation?)

I understand your points about drafts (and components and snippets). I was just reciting my wishlist out loud, without any concern with how it could happen ... Wink I also understand that there's a point were refactoring becomes starting from scratch!
--
Nick.
Reply
#28
A lot can can be tweaked after this is merged into master.

I think pages ALWAYS regent the page cache, and publish redirects to it, but it's possible a combination of plugins or cache might prevent it so this fix is absolute.

I'll keep messing with the settings, it's possible my profile split is breaking some settings saving in a plugin or core.
NEW: SA Admin Toolbar Plugin | View All My Plugins
- Shawn A aka Tablatronix
Reply
#29
snippets this is very useful, it is necessary to mvlcek to prepare an update of the plugin I18N Smile
Reply
#30
Oh you can also disable components and snippets now, in case you didn't notice.
NEW: SA Admin Toolbar Plugin | View All My Plugins
- Shawn A aka Tablatronix
Reply
#31
(2014-11-26, 00:10:39)shawn_a Wrote: Oh you can also disable components and snippets now, in case you didn't notice.

Yeah, sort of 'Draft' and 'Published' ... Big Grin

I'll get my coat ...
--
Nick.
Reply
#32
(2014-11-26, 00:10:39)shawn_a Wrote: Oh you can also disable components and snippets now, in case you didn't notice.
wow really Smile
Reply
#33
fyi more info on page drafts is here
http://get-simple.info/forums/showthread.php?tid=6741
NEW: SA Admin Toolbar Plugin | View All My Plugins
- Shawn A aka Tablatronix
Reply
#34
V:3.4.0 master

This popped up on my first visit to uploads page:
Code:
Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP;
ImageManipulation has a deprecated constructor inĀ .../control/inc/imagemanipulation.php on lineĀ 17

Otherwise, looking good, but can't claim exhaustive testing. Well done.
Reply
#35
http://get-simple.info/forums/showthread...5#pid62405
Reply
#36
Hi, do not be tired when will the new version be released?

Please solve the problems that I have mentioned here:
http://get-simple.info/forums/showthread.php?tid=10463
Reply
#37
Just came to gs trying to get away from the big W. Hate to build a site in 3.3x if 3.4 is going to be a major overhaul which it sounds like.

Guess you have another beta tester.

The site I'm working on is mine and it's not an issue if things are buggy. I was close to just getting rid of the site recently.

Only plugins I'm using are dark admin theme and responsive file manager. Won't need the second one and the first isn't that important.

Off to download 3.4 beta
----------------------------------------edit
I like what you did with the theme file edit page. Very nice

Dark admin theme works but it puts a second plug icon on the plugins tab, a second page icon on pages tab and same with Backups. Probably just aesthetic issue that I can live with.
Reply
#38
Hi,
I create a small new feature into pages.php backend to have sort by url or title :

----
$count = 0;
foreach ($pagesArray as $page) {
if ($page['parent'] != '') {
$parentTitle = returnPageField($page['parent'], "title");
if (defined('GSBACKENDPAGESORT')) {
$sorttype = GSBACKENDPAGESORT;
} else {
$sorttype = 'title';
}

switch($sorttype) {
case title:
$sort = $parentTitle .' '. $page['title'];
break;
case url:
$sort = $parentTitle .' '. $page['url'];
break;
}
} else {
$sort = $page['title'];
}
$page = array_merge($page, array('sort' => $sort));
$pagesArray_tmp[$count] = $page;
$count++;
}

----

And a new gsconfig definition
----
# Sort back-end page by title or by url
define('GSBACKENDPAGESORT','url');
----

Best regard

Butor32
Reply




Users browsing this thread: 1 Guest(s)