leviticus
Forum Replies Created
-
We are having a similar problem. I’m not sure if it’s from people visiting the page, but I have gotten at least a hundred email notifications of a backup.
We have wordpress installed in a subdirectory as well.
I am getting the same error message that javicorper received in the link above when I try to create a manual backup:
The directory supplied in Backup Location cannot be used as a valid directory. The directory /public_html/blog/wp-content/uploads/ithemes-security/backups could not be created due to an unknown error. This could be due to a permissions issue.
I also cannot save settings changes due to the above error.
Ok. That worked. Is there something incorrect in the Facebook app I created for the page?
Forum: Plugins
In reply to: [Videopack] Warning: Cannot modify header information – headers already sentThanks, that helped narrow down the issue. Turned out to be a missing wp-includes file.
Forum: Plugins
In reply to: [Enable Media Replace] Error revised dateI’m getting the same thing when I use the shortcode as well as when I use
<?php echo do_shortcode('[file_modified id="' . $post->ID . '" format="F j, Y"]'); ?>
in my attachment.php template.Forum: Plugins
In reply to: [Flexible Posts Widget] Get posts by authorThat would be awesome. Thanks!
Thanks for your quick reply alanft. I upgraded to 0.55 and still had the error, so I went through my WL and I think it was having trouble with the way I was trying to get ancestors of a page:
global $post; return ( is_page('community') || $post->post_parent == '15' || in_array( 15, get_post_ancestors($post)) );
I changed it to a is_tree function found here https://www.ads-software.com/support/topic/is_tree-function but that created a different error:
‘Warning: Invalid argument supplied for foreach() in …/wp-content/themes/rutland-theme/functions.php on line 26’
which is
‘foreach($anc as $ancestor) {‘
Do you know the best WL to show a widget on children and grandchildren of a specific page ID?I’m receiving the same fatal error as well when I upgraded to 1.5.
Running WordPress 3.4.2Forum: Everything else WordPress
In reply to: Please remove a postCould the links / email addresses at least be removed from both posts? Other forums allow editing of past posts. I will try to be more careful in the future.
Forum: Plugins
In reply to: [Contact Form 7] [Plugin: Contact Form 7] Can't select input fieldsI must have been staring at that code so long, I missed the <label></lable> error.
Thanks for posting the simple fix. I got worried when my template did the same thing!
Forum: Plugins
In reply to: [Razoo Donation Widget] [Plugin: Razoo Donation Widget] donation account idI couldn’t get this plugin to work, so I ended up adding the razoo script as a shortcode as described here: https://www.labnol.org/software/javascript-in-wordpress/19396/ along with the Styles with Shortcodes for WordPress plugin.
I’m seeing this as well, but the plugin still functions.
WP 3.3.2 and YARPP Version 3.5.1.Thanks for the suggestion. I cleared the widget logic from the widgets and the error messages disapeared. After some digging, I found the error was in the $post->ancestors call.
global $post; return ( is_page('businesses') || $post->post_parent == '24' || in_array( '24', $post->ancestors) );
I changed it to
global $post; return ( is_page('businesses') || $post->post_parent == '24' || in_array( 24, get_post_ancestors($post)) );
and it worked again. ??
Forum: Plugins
In reply to: [Plugin: NextGEN Gallery] Thumbnails not displaying properly in IE8That solved the problem. Thanks!