tommix
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Add/Customize Meta fields to Edit Media Attachment ScreenForum: Plugins
In reply to: [Plugin: DB Cache Reloaded] Performance questionDatabase is also on disk-so database too reads/writs to file on disk ??
And you should ask-what is heavy load..how many people online. Cause i can bet more chances to hang server because of DB queries than hdd I/O operations. This also reduces CPU load.
Forum: Plugins
In reply to: [Plugin: DB Cache Reloaded] Error : chmod 755 wp-content folderYep doesn’t work, says:
Caching can’t be activated. Please chmod 755 wp-contentall permissions are ok.
I think you should change that shitty hosting ??
Forum: Fixing WordPress
In reply to: the_excerpt outputs extra informationyep…for me too outputs some data if excerpt is empty.
i think this is because of search engines, they are crawling your posts so pagewiev is incresing…it doesnt reflect on analytics because google do not count it self..
Forum: Fixing WordPress
In reply to: [Plugin: BackWPup] Db backups NOT compatible with phpMyAdminOk i found how ?? as you said: at the line the traling ; is missing. after CHARSET=*****
Forum: Fixing WordPress
In reply to: [Plugin: BackWPup] Db backups NOT compatible with phpMyAdminBy the way-how to make older versions backup to work with phpmyadmin? i have very important backup and i need it and i deleted all lines your plugin made left only mysql commands with data-it don’t work..
Forum: Fixing WordPress
In reply to: [Plugin: BackWPup] Db backups NOT compatible with phpMyAdminThanks danielhuesken. I just tried it works great ??
Shane G thanks too, i know how to use phpMyadmin i just need automatic stuff not manually ??Forum: Plugins
In reply to: wp_set_post_tagsI’m using this and it works with WP 2.8.4
the $id is Post id.
function write_tags($id, $tags) {
$taxonomy = ‘post_tag’;
//$tags = split(” “,$months);
$tags = explode(‘ ‘, $tags);foreach ($tags as $solotag) {
$solotag = trim($solotag);
$check = is_term($solotag, $taxonomy);
if (is_null($check)) {
$tag = wp_insert_term($solotag, $taxonomy);if(!is_wp_error($tag)) {
$tagid = $tag[‘term_id’];
} else {
$tagid = $check[‘term_id’];
}// wp_set_object_terms($id, $tagid, $taxonomy, true);
}
}
wp_set_post_tags($id,$tags);
}hope this will help someone cause i need it wery much and finally i did it ??
Forum: Fixing WordPress
In reply to: Inserting post from outside wp – works, kind of … help?i think it not should be like your: array(‘4’);
it’s not string so need to be array(4);Forum: Fixing WordPress
In reply to: Archives – how to disable or remove?it is more than stupid to delete archive.php file. so nobody can see whole category, or post by tags…
Forum: Plugins
In reply to: [Plugin: BackWPup] Doesn’t save all tablesI’ve opened the options-jobs.php
and deleted this
`<tr valign=”top”>
<th scope=”row”><label for=”dbexclude”><?PHP _e(‘Exclude Database Tables:’,’backwpup’); ?></label></th><td>
<?php
$tables=$wpdb->get_col(‘SHOW TABLES FROM'.DB_NAME.'
‘);
if (!isset($jobs[$jobid][‘dbexclude’])) { //def.
foreach ($tables as $table) {
if (substr($table,0,strlen($wpdb->prefix))!=$wpdb->prefix)
$jobs[$jobid][‘dbexclude’][]=$table;
}
}
foreach ($tables as $table) {
if ($wpdb->backwpup_logs<>$table)
echo ‘ <input class=”checkbox” type=”checkbox”‘.checked(in_array($table,(array)$jobs[$jobid][‘dbexclude’]),true,false).’ name=”dbexclude[]” value=”‘.$table.'”/> ‘.$table.”;
}?>
</td></tr>`as i see it adds all tables that has no wp preffix. i also deleted
options-save.php
if (isset($_POST['dbexclude'])) $jobs[$jobid]['dbexclude']=array_unique((array)$_POST['dbexclude']);
Forum: Fixing WordPress
In reply to: How can I forbid user visit wp-admin?just protect that folder with passwords-that’s easy.
ofcourse password should look like this: 4c?89xGUz(a8E4GQL*)xds?s5EV
not some; 123thisstupidpass
Forum: Requests and Feedback
In reply to: Easiest way to rename wp-admin folder & keep site working?everything is possible..make a search to all wordpress files…and replace all wp-admin to your renamed name…i think this is the best way to do it. and ofcourse forget about upgrades automatic and so on..