two beers
Forum Replies Created
-
Forum: Plugins
In reply to: [Jetpack - WP Security, Backup, Speed, & Growth] truncated mobile menuYes, thank you, Jeremy, that worked!
That’s great. Thank you for the reply.
Awesome. Thanks again.
Thank you. Most php is beyond me right now, but maybe eventually I can figure it out.
The reason I ask is that, ideally, thumbnails are excluded from google image search results, but maybe there’s another way to accomplish this.
Apparently not including the the Priority and the Frequency was the suggestion of the late overseer of the GWMT forum. That’s where I got this info.
I understand what you say about the importance of the data. But, just to understand you, there is no way to exclude the Priority and Frequency data from the sitemap?
In the GWTM forum, I’ve been advised that pages that in my site are rarely updated are listed as “Daily.” Is there a way to change that?
Thanks for replying. I don’t think I made myself clear. The suggested format is just a raw list of urls, with no frequency or priority data added. Is there a way to do that? Thanks.
Forum: Plugins
In reply to: [WP-DBManager] backup folder path doesn't existThanks. It took awhile, but host support finally was able to help me resolve this, and now there are no errors.
Forum: Plugins
In reply to: [WP-DBManager] backup folder path doesn't existWhen I clicked backup, I get this message at the top of the page:
/usr/bin/mysqldump –force –host=”localhost” –user=”*******_user” –password=”******” –default-character-set=”utf8″ –add-drop-table –skip-lock-tables meteorli_wpdb > /home6/*******/wp-content/backup-db/1411557391_-_*******_wpdb.sql
Is that the debugging statement?
Forum: Plugins
In reply to: [WP-DBManager] backup folder path doesn't existOh, I see. Line 213.
Like this?:
### Executes OS-Dependent mysqldump Command (By: Vlad Sharanhovich)
function execute_backup($command) {
$backup_options = get_option(‘dbmanager_options’);
check_backup_files();
<b>echo $command;</b>
if(substr(PHP_OS, 0, 3) == ‘WIN’) {
$writable_dir = $backup_options[‘path’];
$tmpnam = $writable_dir.’/wp-dbmanager.bat’;
$fp = fopen($tmpnam, ‘w’);
fwrite($fp, $command);
fclose($fp);
system($tmpnam.’ > NUL’, $error);
unlink($tmpnam);
} else {
passthru($command, $error);
}
return $error;
}Forum: Fixing WordPress
In reply to: how to add an h1 tag to attachment page titles?Ok, well, thanks for trying, I appreciate the effort.
Also, I realized that no-following my site link above isn’t enough to keep this out of the search engines. Would no-indexing it work? Or if it’s not a hassle, to just bitly it: bit.ly/1DsVX2U ?
Thanks.
Forum: Fixing WordPress
In reply to: how to add an h1 tag to attachment page titles?Hmm. it’s not working.
H1 tags are so critical to SEO. WordPress is great in so many ways. It’s frustrating that there doesn’t seem to be a way to change tags on attachments.
Forum: Plugins
In reply to: [WP-DBManager] backup folder path doesn't existFind check_backup_files(); on line 243
Add below it echo $command;Check backup starts on line 325 in my file.
Where exactly below does echo $command; go?
325 ## Function: Make Sure Maximum Number Of Database Backup Files Does Not Exceed
function check_backup_files() {
here:echo $command;
$backup_options = get_option(‘dbmanager_options’);
$database_files = array();
if(!is_emtpy_folder($backup_options[‘path’])) {
if ($handle = opendir($backup_options[‘path’])) {
while (false !== ($file = readdir($handle))) {
if ($file != ‘.’ && $file != ‘..’ && (file_ext($file) == ‘sql’ || file_ext($file) == ‘gz’)) {
$database_files[] = $file;
}
}
closedir($handle);
sort($database_files);
}
}
if(sizeof($database_files) >= $backup_options[‘max_backup’]) {
@unlink($backup_options[‘path’].’/’.$database_files[0]);
}
}or here? echo $command;
Forum: Plugins
In reply to: [WP-DBManager] backup folder path doesn't existI’m willing to try setting it up, but I don’t understand all of your directions.
In the FAQ, what do you mean by:
7. It should print some debugging statements
Copy that line than run it in SSHI know how to use SSH Secure File Transfer for ftp, and SSH Secure Shell Client for basic Unix commands. But I don’t understand what you mean by “run it in SSH.”
Can you be more specific?
Thank you.
Forum: Fixing WordPress
In reply to: how to add an h1 tag to attachment page titles?There was already a loop.php in the child theme. My 2010 folder shows loop.php, loop-attachment,php, loop.single.php, and loop-page.php/
I’ve copied loop.php to the child, and changed the h2 tags to h1. No change to the html output.
I’ve also copied the loop.attachment.php from the parent to the child, changed the tags, and there’s still no change to the html output.
Should I try this also with the loop-single.php and the loop-page.php files (i.e. copy them to the child, and change the h2 tags)?
Forum: Fixing WordPress
In reply to: how to add an h1 tag to attachment page titles?There is a loop.php in the childtheme folder that is considerably longer than the one you linked to. I changed the h2s to h1s, but it’s not changing the tags. Any ideas why it might not be working?
Thanks.