monkey
Forum Replies Created
-
Forum: Installing WordPress
In reply to: Blank page :\Does anyone ever get any help on this forum? I have the same problem described by Glennzor above. The install semed to go smoothly but I can’t see the blog page. When I look at the page source in my browser there is only the mimimum code necesssary to make the page an html page. But as viewed on the server it is full of code.
The last comment was posted in September but I see no sign of a solution. I appreciate the work of the developers on new features, but this problem is about to convince me I can’t use wordpress at all. I suspect the in my case difficulty is with some server setting on Powweb.com, where I am hosted, but they do no provide support for installation of specific scripts, so if no one here can help, I’d say it’s goodby. Too bad, because I was looking for a script with these features–especially the ability to blog text and pictures by e-mail. Absolutely perfect for folks who have to submit reports but don’t want to learn any new tchnology at all.
My e-mail is [email protected] . If anyone out there has found the cause of this problem–you know that if 2 of bothered to write about there are lots more who downloaded the program and simply gave up–please e-mail me. Thank you. Jeff BogdanForum: Installing WordPress
In reply to: WP-install.php isn’t working; shows blank pageI am also having this problem. Odder than the problem itself is that the source for b2.php as viewed through IE gives me nothing but…
<!DOCTYPE HTML PUBLIC “-//W3C//DTD HTML 4.0 Transitional//EN”>
<HTML><HEAD>
<META http-equiv=Content-Type content=”text/html; charset=windows-1252″></HEAD>
<BODY></BODY></HTML>
…but when I view the same file on the server using WS_FTP I see this :
<?php /* Don’t remove this line, it calls the b2 function files ! */ $blog=1; include (“blog.header.php”); ?>
<!DOCTYPE html PUBLIC “-//W3C//DTD XHTML 1.0 Transitional//EN”
“https://www.w3.org/TR/xhtml/DTD/xhtml-transitional.dtd”>
<html xmlns=”https://www.w3.org/1999/xhtml”>
<head>
<title><?php echo $blogname ?></title>
<!– Change charset if needed(?) But please do not remove this metatag –>
<meta http-equiv=”Content-Type” content=”text/html; charset=iso-8859-1″ />
<meta http-equiv=”reply-to” content=”[email protected]” />
<meta http-equiv=”imagetoolbar” content=”no” />
<meta content=”TRUE” name=”MSSmartTagsPreventParsing” />
<link rel=”alternate” type=”text/xml” title=”RDF” href=”<?php bloginfo(‘rdf_url’); ?>” />
<link rel=”alternate” type=”text/xml” title=”RSS” href=”<?php bloginfo(‘rss2_url’); ?>” />
<link rel=”pingback” href=”<?php bloginfo(‘pingback_url’); ?>” />
<?php comments_popup_script() ?>
</head>
<body>
<img src=”CUBACRD.JPG” width=”104″ height=”137″ border=”0″>
<!– // b2 loop start –>
<?php foreach ($posts as $post) { start_b2(); ?>
<?php the_date(“d.m.y”,”<h1>”,”</h1>”); ?>
<?php permalink_anchor(); ?>
<?php the_title(); ?> (category: <?php the_category() ?>)
<?php the_content(); ?><?php link_pages(“
Pages: “,”
“,”number”) ?>posted by <?php the_author() ?> @ “><?php the_time() ?>
<?php comments_popup_link(“comments ?”, “1 comment”, “% comments”) ?>
<?php include (“b2comments.php”); ?>
<!– // this is just the end of the motor – don’t touch that line either ?? –>
<?php } ?>
<div align=”right”><cite>Powered by WordPress</cite>
login
register</div>
<?php
if ($debug==”1″) {
echo “$querycount queries – “.number_format(timer_stop(),3).” seconds”;
}
?>
</body>
</html>