symbiose
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: RSS Mailchimp ProblemsGreat, thanks for the input. Worked for me as well.
Mailchimp responded this morning the following.Thanks for reaching out to us, I totally understand the concern here. I’ll be glad to help out wherever is possible.
We did a little more digging and discovered that this is actually a situation affecting certain feeds.
Our developers are looking into the issue related to feed validation, and why we’re unable to pull from it and at this time we do not have an estimated time frame of when we will be able to hear back from them. We will continue to investigate and push a resolution as soon as one becomes available. Once this becomes available, the update will be pushed to all accounts.
We’re always open to any questions you might have, and love helping our users. Please feel to inquire at any time for an update on the status of the fix. Additionally, if you have any more questions about this, or need help with something else, go ahead and reach back out to us.
In the meantime our usual RSS feed started working again without problems this afternoon again.
Thank you!
Forum: Fixing WordPress
In reply to: RSS Mailchimp ProblemsHere neither, mail chimp does not find the RSS anymore: “That is not an existing URL” … just wrote them an email: https://mailchimp.com/contact/?department=support. keep you posted …
Forum: Fixing WordPress
In reply to: Broken RSS FeedTHX !
Forum: Themes and Templates
In reply to: Search Page CSS IssueHi, not really. But maybe I have a bug in the submenu code (header.php) ?:
<div class="submenu"> <?php if($post->post_parent) $children = wp_list_pages("title_li=&child_of=".$post->post_parent."&echo=0"); else $children = wp_list_pages("title_li=&child_of=".$post->ID."&echo=0"); if ($children) { ?> <ul class="submenu_items"> <?php echo $children; ?> </ul> <?php } ?> </div>
Thanks!
Forum: Themes and Templates
In reply to: Post is all one LinkTHIS IS IT !
Thank You, alchymyth !Forum: Themes and Templates
In reply to: Post is all one LinkSill couldnt figure out the bug.
Here is another example: https://www.iropartners.at/?p=4911 (code above).
Thanks for your help !Forum: Themes and Templates
In reply to: Post is all one Linkthanks for the tip esmi ! tried it now with various different tools but could not find it so far … do haveyou any other ideas ?
Forum: Plugins
In reply to: Renew Post ID's periodically (automatic)thank you very much for the productive feedback s_ha_dum!
Forum: Themes and Templates
In reply to: Post List Custom Fieldswow, thanks a lot!
thanks for the learning …Forum: Themes and Templates
In reply to: Post List Custom Fieldsis query_posts() to generate a custom new list?
and then i have to get get_posts() ?
Forum: Installing WordPress
In reply to: How to deactivate MySQL compatibility check?Good advice thanks!
I changed the following in wp-includes/wp-db.php:
function check_database_version()
{
global $wp_version;
// Make sure the server has MySQL 4.1.2
if ( version_compare($this->db_version(), ‘4.1.2’, ‘<‘) )
return new WP_Error(‘database_version’,sprintf(__(‘ERROR: WordPress %s requires MySQL 4.1.2 or higher’), $wp_version));
}to this:
function check_database_version()
{
global $wp_version;
// Make sure the server has MySQL 4.1.2
if ( version_compare($this->db_version(), ‘2.1.2’, ‘<‘) )
return new WP_Error(‘database_version’,sprintf(__(‘ERROR: WordPress %s requires MySQL 4.1.2 or higher’), $wp_version));
}PLUS
You have the delete the following code in wp-admin/install.php:
// Let's check to make sure WP isn't already installed. if ( is_blog_installed() ) {display_header(); die('<h1>'.__('Already Installed').'</h1><p>'.__('You appear to have already installed WordPress. To reinstall please clear your old database tables first.').'</p></body></html>');} $php_version = phpversion(); $mysql_version = $wpdb->db_version(); $php_compat = version_compare( $php_version, $required_php_version, '>=' ); $mysql_compat = version_compare( $mysql_version, $required_mysql_version, '>=' ) || file_exists( WP_CONTENT_DIR . '/db.php' ); if ( !$mysql_compat && !$php_compat ) $compat = sprintf( __('You cannot install because WordPress %1$s requires PHP version %2$s or higher and MySQL version %3$s or higher. You are running PHP version %4$s and MySQL version %5$s.'), $wp_version, $required_php_version, $required_mysql_version, $php_version, $mysql_version ); elseif ( !$php_compat ) $compat = sprintf( __('You cannot install because WordPress %1$s requires PHP version %2$s or higher. You are running version %3$s.'), $wp_version, $required_php_version, $php_version ); elseif ( !$mysql_compat ) $compat = sprintf( __('You cannot install because WordPress %1$s requires MySQL version %2$s or higher. You are running version %3$s.'), $wp_version, $required_mysql_version, $mysql_version ); if ( !$mysql_compat || !$php_compat ) { display_header(); die('<h1>' . __('Insufficient Requirements') . '</h1><p>' . $compat . '</p></body></html>'); }