| User | Post |
|
4:11 pm 4 Sep 2008
| slimboyfatz33
Member
| | | |
|
| posts 13 |
|
|
Hi,
I have made sure the page slug etc is set up correctly , i am using permalinks, but nothing apart from the page name will display!! I am really stumped!
|
|
|
4:35 pm 4 Sep 2008
| Mr Papa
Moderator
| | Arizona, USA | |
|
| posts 1602 |
|
|
a link to your site would be nice…
make sure that you have clicked on update permalink button in the spf manage options page, toolbox tab… also, make sure your page template you are using has the_content() in it somewhere… check the online help troubleshooting section in you spf admin pages too… need a link to suggest anything more at this point…
|
|
|
4:54 pm 4 Sep 2008
| slimboyfatz33
Member
| | | |
|
| posts 13 |
|
|
sorry the site is not live at present, just testing on my localhost…the code for my header.php and index.php looks like this though………..
<!DOCTYPE html PUBLIC “-//W3C//DTD XHTML 1.0 Strict//EN” “http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd“> <html xmlns=”http://www.w3.org/1999/xhtml“>
<head profile=”http://gmpg.org/xfn/11“> <meta http-equiv=”Content-Type” content=”<?php bloginfo('html_type'); ?>; charset=<?php bloginfo('charset'); ?>” /> <title><?php wp_title(''); ?><?php if(wp_title(' ', false)) { echo ' | '; } ?><?php bloginfo('name'); ?></title> <meta name=”generator” content=”WordPress <?php bloginfo('version'); ?>” /> <!– leave this for stats –> <link rel=”stylesheet” href=”<?php bloginfo('stylesheet_url'); ?>” type=”text/css” media=”screen” /> <link rel=”stylesheet” href=”<?php bloginfo('stylesheet_directory'); ?>/print.css” type=”text/css” media=”print” /> <link rel=”stylesheet” href=”<?php bloginfo('stylesheet_directory'); ?>/mobile.css” type=”text/css” media=”handheld” /> <link rel=”alternate” type=”application/rss+xml” title=”RSS 2.0″ href=”<?php bloginfo('rss2_url'); ?>” /> <link rel=”alternate” type=”text/xml” title=”RSS .92″ href=”<?php bloginfo('rss_url'); ?>” /> <link rel=”alternate” type=”application/atom+xml” title=”Atom 0.3″ href=”<?php bloginfo('atom_url'); ?>” /> <link rel=”pingback” href=”<?php bloginfo('pingback_url'); ?>” /> <link rel=”shortcut icon” href=”http://www.workingoffshore.co.uk/favicon.ico” /> <script type=”text/javascript” charset=”utf-8″ src=”http://w.sharethis.com/widget/?wp=2.6&publisher=eef17968-a003-4882-8db2-fbf881b6c7e6“></script> <link rel=”stylesheet” href=”http://localhost/working_offshore/wp-content/themes/working_offshore/sIFR3/sIFR-screen.css” type=”text/css” media=”screen” /> <link rel=”stylesheet” href=”http://localhost/working_offshore/wp-content/themes/working_offshore/sIFR3/sIFR-print.css” type=”text/css” media=”print” /> <script type=”text/javascript” src=”http://localhost/working_offshore/wp-content/themes/working_offshore/sIFR3/sifr.js“></script> <script type=”text/javascript” src=”http://localhost/working_offshore/wp-content/themes/working_offshore/sIFR3/sifr-config.js“></script> <!–[if IE 7]> <link rel=”stylesheet” type=”text/css” href=”<?php bloginfo('stylesheet_directory');?> <?php echo '/ie7style.css' ?>” media=”screen” /> <![endif]–> <!–[if IE 6]> <link rel=”stylesheet” type=”text/css” href=”<?php bloginfo('stylesheet_directory');?> <?php echo '/ie6style.css' ?>” media=”screen” /> <![endif]–> <?php wp_head(); ?> </head>
<body>
<div id=”wrapper”>
<div id=”header”>
<div id=”headerNav”>
<ul> <li><a href=”http://localhost/working_offshore/careers-advice/“>CAREERS ADVICE</a></li> <li><a href=”http://localhost/working_offshore/job-search/“>JOB SEARCH</a></li> <li><a href=”http://localhost/working_offshore/offshore-life/“>OFFSHORE LIFE</a></li> <li><a href=”http://localhost/working_offshore/certificates-and-qualifications/“>CERTIFICATES / QUALIFICATIONS</a></li> </ul>
</div><!–end of headerNav div–>
<div class=”shareThisButton”><?php if (function_exists('sharethis_button')) { sharethis_button(); } ?></div>
<a href=”http://localhost/working_offshore/feed/“><img src=”http://localhost/working_offshore/wp-content/themes/working_offshore/assets/images/rss-feed-bubble.png” title=”Subscribe to our RSS feed” class=”rssIcon” alt=”RSS feed icon” height=”152″ width=”185″ /></a> <!–both sharebutton and rss bubble need fixing for firefox browser, screwing up nav menu, also too much clickable area around rss image in IE (use margin instead of padding), sharethis button not working in FF–>
<div id=”navigation”>
<?php wp_css_dropdownmenu(); ?>
</div><!–end of navigation div–>
<div class=”breadcrumb”> <?php if (class_exists('bcn_breadcrumb')) { // New breadcrumb object $mybreadcrumb = new bcn_breadcrumb; // Assemble the breadcrumb $mybreadcrumb->assemble(); // Display the breadcrumb $mybreadcrumb->display(); } ?> </div>
</div><!–end of header div–>
<div id=”mainContainer”>
<div id=”content”>
and the index.php code ………………
<?php get_header(); ?>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?> <div class=”post” id=”post-<?php the_ID(); ?>”> <h1><?php the_title(); ?></h1>
<div class=”entry”> <?php the_content(); ?> <?php wp_link_pages(); ?> </div> </div> <?php endwhile; endif; ?> </div><!–end of content div–> <?php get_sidebar(); ?>
</div><!–end of mainContainer div–> <?php get_footer(); ?>
|
|
|
6:24 pm 4 Sep 2008
| Mr Papa
Moderator
| | Arizona, USA | |
|
| posts 1602 |
|
|
those are pretty irrelevant here… its your page template that is needed… the one the forum page (you said page id and slug were correct) uses…
did you try the permalink thing as requested?? or the other items for 'page wont display' in the troubleshooting guide?
|
|
|
6:33 pm 4 Sep 2008
| slimboyfatz33
Member
| | | |
|
| posts 13 |
|
|
|
8:13 pm 4 Sep 2008
| Mr Papa
Moderator
| | Arizona, USA | |
|
| posts 1602 |
|
|
every page, not post, in WP uses a page template… the default is usually page.php… you select the template on the write/edit page in the wp admin… worst case, it will default back to index.php but that would be abnormal for a theme…
you still havent indicated if you tried the other things I mentioned…
|
|
|
1:07 pm 5 Sep 2008
| slimboyfatz33
Member
| | | |
|
| posts 13 |
|
|
I tried all the other things you mentioned, but no joy.
my pages (ie; index.php , page.php etc..) all have the ()content call in them, so im puzzled there!
|
|
|
|
|
It's hard to tell without being able to see the site. So if it not the permalink, not missing calls in the theme template, not a 'special' install (i.e.m, sub-page, sub-folder etc) and you have fully installed it then that really only leaves other plugins. So what do you have activated there? have you tried deactivating them one at a time to see if there is a conflict?
|
|
|
1:44 pm 5 Sep 2008
| slimboyfatz33
Member
| | | |
|
| posts 13 |
|
|
I have deactivated every plugin, but no luck!! its really strange, the page just shows the template (as normal) with just the page heading 'Forum' , and thats it!!
and it looks like such a great plugin…damn!!!
|
|
|
|
|
Well you know there has to be a reason and it will almost certainly be something simple. It is interesting to note that you are NOT getting an error message so it sounds to me like it is not finding anything to display rather than coming across an error trying to.
Out of interest, when you load the empty 'forum' page and view the source are the CSS and javascript files benbg loaded from the plugins folders?
|
|
|
|
|
here's another thought as well. Switch your theme to the WP default and just see if it loads then.
|
|
|
4:21 pm 5 Sep 2008
| slimboyfatz33
Member
| | | |
|
| posts 13 |
|
|
Yellow Swordfish said:
Well you know there has to be a reason and it will almost certainly be something simple. It is interesting to note that you are NOT getting an error message so it sounds to me like it is not finding anything to display rather than coming across an error trying to.
Out of interest, when you load the empty 'forum' page and view the source are the CSS and javascript files benbg loaded from the plugins folders?
no, the source shows nothing, here is a snippet ………
<div id=”mainContainer”>
<div id=”content”> <div class=”post” id=”post-95″> <h1>Forum</h1>
<div class=”entry”> <br /> </div> </div> </div><!–end of content div–>
|
|
|
5:03 pm 5 Sep 2008
| slimboyfatz33
Member
| | | |
|
| posts 13 |
|
|
Nope..nothing shows with the default theme???? When i goto update the permalink, this is the link i get back …
http://localhost/working_offshore/4-revision-2/
should it not be something like /working_offshore/forum/
???
|
|
|
|
|
No you leave off the opening and closing slash.
|
|
|
5:30 pm 5 Sep 2008
| slimboyfatz33
Member
| | | |
|
| posts 13 |
|
|
Yellow Swordfish said:
No you leave off the opening and closing slash.
sorry that was just an example. do you have any more ideas, after the source code i showed you?
|
|
|
|
|
All the same if you have that kind of construct you still leave off the starting and trailing slashes in the forum permalink.
And no - sorry - no more ideas.
bascally it is not loading anything so it does not recognise the WP 'page' allocated to the forum as the 'page' to use for its display. if the slug iand the page id are correctly set in the forum options then I can honestly say this is a new one on me… And remember the slug is case sensitive I believe.
|
|
|
10:55 pm 5 Sep 2008
| Mr Papa
Moderator
| | Arizona, USA | |
|
| posts 1602 |
|
|
being off line and not being able to see it ourselves, not sure what more we can recommend….
|
|
|
11:46 pm 5 Sep 2008
| -Radio-
Moderator
| | Florida - USA | |
|
| posts 558 |
|
|
sounds silly… but at this point the question has to be asked… is the SPF plugin activated? Do you see the new FORUM tab in your dashboard pages?
even if the admin had no access… the basic layout would apear…
|
|
|
11:52 am 6 Sep 2008
| Eleazar
Guest
| | | |
|
| |
|
|
Hi!
I have similar problem, but in my case, I think it's because I had moved whole WP from directory to the root dir (I had developed WP blog side by side the old page located in the root dir). Now I can't see anything but a page title. I had updated permalink, ID and slug is still the same. How can I fix this please?
|
|
|
4:09 pm 6 Sep 2008
| Mr Papa
Moderator
| | Arizona, USA | |
|
| posts 1602 |
|
|
that location is fine… when you say updated permalink, did you also do the one on the spf manage options admin page, toolbox tab?
a link to the site would be helpful…
|
|
|
10:42 pm 6 Sep 2008
| Eleazar
Guest
| | | |
|
| |
|
|
Yes, I did it. The link is http://zvolen.domka.sk/forum/ if you think it would be helpful…
|
|
|
11:02 pm 6 Sep 2008
| Mr Papa
Moderator
| | Arizona, USA | |
|
| posts 1602 |
|
|
You have something going on there, but between serious theme issues and the language its kind of hard to see/understand…
looks like the new topic/reply window comes up open which it shouldnt… wondering if you have a plugin conflict (js)… I would try disabling all your plugins except the forum and see if it cleans up… if so, then reactivate one by one until it breaks…
|
|
|
11:17 pm 6 Sep 2008
| Eleazar
Guest
| | | |
|
| |
|
|
Not helpful… It's not a conflict with other plugin. 
|
|
|
|
|
For some reason you are not running a skin for the forym. What happens when you go to >Admin > Manage Options > Style tab and look at the skin drop down? You do not currently have one active…
If your active skin is 'default' I suggest you take a look at the default.css file as it has been overwittten with an HTML source code dump.
|
|
|
12:01 am 7 Sep 2008
| Eleazar
Guest
| | | |
|
| |
|
|
Man! Thats it! Looks like it didn't copy files properly and some of them were lost, so I downloaded SF again and appended missing files. And it works! Thank you very much, you are doing really good job! 
|
|