lenker
Forum Replies Created
-
Forum: Plugins
In reply to: [Optimize Database after Deleting Revisions] 2.8.1 not workingHey,
new release works as expected.
ThanksForum: Plugins
In reply to: [Optimize Database after Deleting Revisions] 2.8.1 not workingHi,
I changed on line 355 this:
# v2.8.1 $res = mysql_query("SHOW TABLES FROM <code>".DB_NAME."</code>"); $tables = array(); while($row = mysql_fetch_array($res, MYSQL_NUM)) $tables[] = "$row[0]";
to this
to this # v2.7.8 $names = $wpdb->get_results("SHOW TABLES FROM <code>".DB_NAME."</code>"); $dbname = 'Tables_in_'.DB_NAME;
and on line 1352 this
# v2.8.1 $res = mysql_query("SHOW TABLES FROM <code>".DB_NAME."</code>"); $tables = array(); while($row = mysql_fetch_array($res, MYSQL_NUM)) $tables[] = "$row[0]"; $cnt = 0; for ($i=0; $i<count($tables); $i++) { $excluded = get_option('rvg_ex_'.$tables[$i]); if(!$excluded) { # TABLE NOT EXCLUDED $cnt++; $query = "OPTIMIZE TABLE ".$tables[$i]; $result = $wpdb -> get_results($query);
to this
# v2.7.8 $names = $wpdb->get_results("SHOW TABLES FROM <code>".DB_NAME."</code>"); $dbname = 'Tables_in_'.DB_NAME; $cnt = 0; for ($i=0; $i<count($names); $i++) { $excluded = get_option('rvg_ex_'.$names[$i]->$dbname); if(!$excluded) { # TABLE NOT EXCLUDED $cnt++; $query = "OPTIMIZE TABLE ".$names[$i]->$dbname; $result = $wpdb -> get_results($query);
Hi,
The PHP setting Open Base Dir: is On
can this be the cause?Hi,
the installer-log.txt file is created, but empty.
ThanksForum: Alpha/Beta/RC
In reply to: WordPress 4.0-alpha Media LibraryI have the same issue (4.0-alpha-20140609). It seems it is there since the switch dto grid display of media library.