drumat5280
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Fatal Error on upgrade@ipstenu I know hardcoding in this case is a bad idea, but it got me back in to the admin area so i can try other things right now.
I am not going to panic, I know in a while this will be fixed.
I have admin access for now so i am happy until the next release happens.
Forum: Fixing WordPress
In reply to: Fatal Error on upgradeI got it working by deleting this IF statement:
2102. if ( is_rtl() )
echo apply_filters( ‘wp_admin_css’, “<link rel=’stylesheet’ href='” . esc_url( wp_admin_css_uri( “$file-rtl” ) ) . “‘ type=’text/css’ />\n”, “$file-rtl” );Not sure why it works now.
Forum: Fixing WordPress
In reply to: Fatal Error on upgradeI am getting the same thing.
Forum: Plugins
In reply to: Comments from Vimeo on WordPress postI would like to see a plugin as well.
Forum: Fixing WordPress
In reply to: How to Embed YouTube Thumbnails?Here is a link to a video I did on my issue that might make it easier to understand:
https://bit.ly/7GYzqForum: Fixing WordPress
In reply to: How to Embed YouTube Thumbnails?Paul,
Thanks for your solutions.
I have a slightly different problem, I am using a video plugin to display my YouTube videos and would like a thumbnail as well.
Here is the code from the plugin:
// Youtube Code define("YOUTUBE_WIDTH", 320); // default width define("YOUTUBE_HEIGHT", 265); // default height define("YOUTUBE_REGEXP", "/\[youtube (:print:+)\]/"); define("YOUTUBE_TARGET", "<object type=\"application/x-shockwave-flash\" data=\"https://www.youtube.com/v/###URL###\" width=\"".YOUTUBE_WIDTH."\" height=\"".YOUTUBE_HEIGHT."\" wmode=\"transparent\"><param name=\"movie\" value=\"https://www.youtube.com/v/###URL###\" /></object>"); function youtube_plugin_callback($match) { $output = YOUTUBE_TARGET; $output = str_replace("###URL###", $match[1], $output); return ($output); } function youtube_plugin($content) { return (preg_replace_callback(YOUTUBE_REGEXP, 'youtube_plugin_callback', $content)); } add_filter('the_content', 'youtube_plugin',1); add_filter('comment_text', 'youtube_plugin');
Here is what I am trying that is not working:
<?php while (have_posts()) : the_post(); ?> <img src="https://i.ytimg.com/vi/<?php echo URL; ?>/default.jpg"> <h4><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title(); ?>"><?php the_title(); ?></a></h4> <?php the_excerpt(); ?> <?php endwhile; ?>
Forum: Fixing WordPress
In reply to: About Page In DB But I Get “The Topic Had Been Deleted”Forum: Installing WordPress
In reply to: Upgraded to 2.5, now pages don’t display…WTF?Thanks dlo! I have been working on this for hours until I found your fix.
Forum: Fixing WordPress
In reply to: About Page In DB But I Get “The Topic Had Been Deleted”After some more looking around it sure looks like it is a permalink issue within the database because this page works fine: https://www.solardave.com/?page_id=2
But when it uses the permalink:
https://www.solardave.com/index.php/about/ it fails.It tries to pull from the single.php template instead of the page.php template.
Forum: Fixing WordPress
In reply to: About Page In DB But I Get “The Topic Had Been Deleted”It appears that the About page is being served up using the single.php template instead of the page.php template if that makes any difference.
How do I change it to use the page.php to see if that works?
Forum: Fixing WordPress
In reply to: About Page In DB But I Get “The Topic Had Been Deleted”Ok, I have done more testing and it appears to be database related.
I used one of my old blogs 2.3.2 and then ran it with the new database from one of my other 2.5 blogs and I am still having the same issue of no About page.
Forum: Installing WordPress
In reply to: PHP installation appears to be missing the MySQLI moved the screen shots to this page if people are wondering were they went:
https://www.davecolorado.com/index.php/your-php-installation-appears-to-be-missing-the-mysql-which-is-required-for-wp/Forum: Installing WordPress
In reply to: PHP installation appears to be missing the MySQLAll fixed, I just uninstalled WP and reinstalled it again and now it works.
Forum: Installing WordPress
In reply to: PHP installation appears to be missing the MySQLYou are correct there is no db.php in the wp-content folder.
What do I do now?
Forum: Installing WordPress
In reply to: PHP installation appears to be missing the MySQLI can’t find what you are asking for so I put up a screen shot of the php info mysql on this page:
https://www.solardave.com/index.php/your-php-installation-appears-to-be-missing-the-mysql-which-is-required-for-wp/