bronski
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: comments dissappearHave a look at this thread: https://www.ads-software.com/support/6/12311
Forum: Fixing WordPress
In reply to: non-latin permalink problem.Well, with 1.3-alpha 3 (2004-09-22) it doesn’t work yet…
https://bronski.net/wp-archiv/2004/09/23/inter??at??o?‰al?ˉ???|ti????/ -> no posts matched your criteriaForum: Fixing WordPress
In reply to: Trackback problems in 1.3-alpha-3Michel fixed that bug much better than i hacked it – thanks!
2004-09-22 works fine here.Forum: Fixing WordPress
In reply to: Trackback problems in 1.3-alpha-3I filed a bug-report for this.
Forum: Fixing WordPress
In reply to: Posting Draftswell, with this patch applied the setting mentioned above doesn’t need to be set to “new users may publish” – great! thanks.
Forum: Fixing WordPress
In reply to: Posting Draftsi think this only happens when you have only one user.
well, in edit.php in line 12 there is an SQL statement:
$editable = $wpdb->get_col("SELECT ID FROM $wpdb->users WHERE user_level <= '$user_level' AND ID != $user_ID");
so when there is only the admin-user, ID = 1, this select results in an empty quere, the array cannot be joined and the known error occurs.
as soon as you add a second user the array contains values and the error is gone.Forum: Fixing WordPress
In reply to: Posting Draftsjust found out about that too, bummer. ??
looking at https://www.php.net/manual/en/function.implode.php i was so sure about that…Forum: Fixing WordPress
In reply to: Database Errorit seems there is a syntax error in line 13 of edit.php
correct is$editable = join(',', $editable);
instead of the wrong$editable = join($editable, ',');
Forum: Fixing WordPress
In reply to: Posting Draftsit seems there is a syntax error in line 13 of edit.php
correct is$editable = join(',', $editable);
instead of the wrong$editable = join($editable, ',');
but that doesn’t bring the missing publish-button back… ??Forum: Fixing WordPress
In reply to: 7/9 TrackbackYes, of course 9/7. But there were several posts with that notation…
Forum: Fixing WordPress
In reply to: 7/9 database changesThanks, I’ve found the mailman-pages and subscribed.
Apart from that I wrote some update-statements including post_date and post_name to correct the buggy guids.Forum: Fixing WordPress
In reply to: 7/9 database changesDuh! Just found in https://www.ads-software.com/support/6/12438 that the field “guid” came with the upgrade. So I guess the
//?p=
is the default value. Then forgetit, sorry.Forum: Fixing WordPress
In reply to: Comments in 1.3-alpha3My guess is that the reason for all my posts showing up with pings and comments closed is a change to xmlrpc.php because when I use the web-interface I can change those back to open, but with desktop applications like ecto that use xmlrpc it doesn’t work. I don’t remember exactly when it started but I guess it was 8/26 or smth.
Forum: Fixing WordPress
In reply to: Comments in 1.3-alpha3Beel, both default_values are set to open in my nightly 9/7, but nevertheless all new postings have comments and pingback set to closed.
Forum: Fixing WordPress
In reply to: wp_get_archives() limits number of postsYes, right! My index.php is outside of the WP-dir so I didn’t catch that change… ?? Thanks a lot for pointing that out!
Not to forget having to change some rewrite-rules, of course.