You are not logged in.
See weblog post: http://textpattern.com/weblog/309/testing-upcoming-406-rc1
—
The final, official 4.0.6 release is scheduled for next week, unless unexpected problems or errors arise.
We’re looking for people who like to help us make sure that we didn’t miss any regressions or introduce new bugs. We would like to get feedback on clean installations and updates from older versions.
Make sure that if you use this release candidate, you also update to the final 4.0.6 version when it is released.
Download:
textpattern-4.0.6-rc1.tar.gz
textpattern-4.0.6-rc1.zip
Note:
Plugins that require updates:
add_privs('asy_jpcache');add_privs('asy_sitemap');add_privs('rss_db_man'); add_privs('rss_sql_run'); add_privs('rss_db_bk');add_privs('fpxii');If other plugins break in 4.0.6, post them in this topic and describe the problem
Fixing admin-side plugins that loose an (extension) tab after the 4.0.6 upgrade:
For the plugins listed above as needing add_privs, edit the plugin, look for the bit of code that looks like:
if (@txpinterface == 'admin') {
register_tab("extensions", "event", "tab name");
}
And change it to (of course, replace ‘event’ with whatever it is called in the plugin):
if (@txpinterface == 'admin') {
add_privs('event', '1');
register_tab("extensions", "event", "tab name");
}
Last edited by ruud (2008-01-31 17:55:06)
Offline
French translation for “article_categories_deleted” has an { too much.
[Ruud: fixed]
Offline
I just upgraded my local install. When I try to visit the Extensions tab, I get a message ‘Restricted area’. Logging out and in again did not help. I am the only user (publisher rights).
Edit: in the Extensions tab I can see and visit the tabs for bas_lets_see_yours, tru_tags, ied_plugin_composer and bas_flvplayer, but the tabs for rss_admin_db_manager have disappeared.
Last edited by Els (2008-01-27 14:40:52)
<txp:Els /> ;)
Tag Reference | Unexpected behaviour? Check the tag trace | Still no clue? Check the names of your custom fields
Offline
Els, I suspect that’s because admin-side plugin privileges must now explicitly be specified by the plugin
Some plugins may need a little update.
Edit the rss_admin_db_manager plugin and below the first line (containing txpinterface == 'admin') add the following three lines:
add_privs('rss_db_man');
add_privs('rss_sql_run');
add_privs('rss_db_bk');
Offline
That worked, thank you. Now I can import the live db (and edit the plugin again ;)).
Tiny other thing: there is still this confusing setting in advanced preferences:
Never display e-mail address?
It was discussed before, I know you can’t just invert preferences, but the text could be adapted. You said this :)
[Ruud: preference text is updated now]
Last edited by Els (2008-01-27 15:12:16)
<txp:Els /> ;)
Tag Reference | Unexpected behaviour? Check the tag trace | Still no clue? Check the names of your custom fields
Offline
Can you tell me if anything has changed in the comments preview? I now have imported my live db into the local install, so all used forms and tags etcetera are exactly the same. Yet, locally in the comments preview, the error messages show up twice now. I don’t know where to look to find the cause.
<txp:password_protect /> does not work at all in my live 4.0.5 install (meaning: it’s not asking for a login and password), I’ve read the threads about that problem and just waited for 4.0.6 because you said it would be improved. Now locally, it keeps asking for login and pass, and does not recognize them whatever I change them to.
<txp:Els /> ;)
Tag Reference | Unexpected behaviour? Check the tag trace | Still no clue? Check the names of your custom fields
Offline
Trying it here: walkerhamilton.com
Working perfectly. It definitely requires modifying some plugins, though.
Offline
Els
Check your “comments_form” form. It probably contains multiple <txp:comments_error> tags at the top. If this happened during a normal upgrade, what was the previous version you had installed?
Did password_protect work for you in 4.0.5? We did improve a few things, but it very much depends on your server setup. When PHP is used in CGI-mode, it probably won’t work, although we’ve made some improvements for people using Lighttpd and people using FCGI.
Walker,
Which plugins need changes, what problems do you see (from a user perspective) and what needs to be changed?
Offline
Ruud: Actually, my friend and I were looking at everything this morning. Here’s our notes:
So….nothing needing attention that either of us have noticed.
Offline
On a side note, my friend thinks that there should be an https url field in the prefs that lets one set the https url (so that if it’s set, /textpattern checks to make sure it’s on a secure connection). With a pref, shared servers that have a host-provided https cert can have a url that is completely diff. from the one that the user has set as their site url.
This also works by connecting textpattern admin to a secure url which is connected to an IP.
[Ruud: this is a feature request, not a bug or regression. It’s too late to implement anything like this in 4.0.6]
Last edited by Walker (2008-01-27 16:18:01)
Offline