Search Results for '"wordpress'
-
Search Results
-
hi,
just upgraded to wordpress 2.6, and I’m not able to login to my bbpress forum anymore (0.9.0.2). it just reloads the page.
Logging in at the wordpress admin interface is wokring fine.
(cleared cache, cookies,…)
Topic: Removing Registration
Hello,
I have a new installation of bb press integrated with my main wordpress site. For a whole bunch of reasons I want to edit the bb press installation so that there’s no way to register for the board through the board itself; I only want people to be able to register through the main wordpress site. Is there any way to block registration through the board, or just remove each element of it manually? I’m using the theme “Scoun” if it makes any difference. Any suggestions would be greatly appreciated.
Hi —
So the first time I tried to install this onto my new database, I selected the WordPress Integration and gave it a go: I received an email telling me I was all set to go, but the installation page reported this error:
Table ‘wp_users’ already exists
Table ‘wp_usermeta’ already exists
>>> User tables will already exist when performing a database integrated installation.
So I went back to Step 2 and went through the installastion, skipping the Integration part … and again I received the confirmation email, but got the same error:
Table ‘wp_users’ already exists
Table ‘wp_usermeta’ already exists
>>> User tables will already exist when performing a database integrated installation.
even though, looking at the installation log, it clearly says it skipped the integration part …
how do I get a fresh installation, or fix the error?
ok, so I added
require_once('path/to/bbpress/bb-config.php');to my wp-config.php file. I then added the bbpress discussions code:<table id="latest">
<tr>
<th><?php _e(‘Movie’); ?> — <?php new_topic(); ?></th>
<th><?php _e(‘Posts’); ?></th>
<th><?php _e(‘Last Poster’); ?></th>
<th><?php _e(‘Freshness’); ?></th>
</tr>
<?php if ( $super_stickies ) : foreach ( $super_stickies as $topic ) : ?>
<tr<?php topic_class(); ?>>
<td><?php bb_topic_labels(); ?> <big>“><?php topic_title(); ?></big></td>
<td class=”num”><?php topic_posts(); ?></td>
<td class=”num”><?php topic_last_poster(); ?></td>
<td class=”num”>“><?php topic_time(); ?></td>
</tr>
<?php endforeach; endif; // $super_stickies ?>
<?php if ( $topics ) : foreach ( $topics as $topic ) : ?>
<tr<?php topic_class(); ?>>
<td><?php bb_topic_labels(); ?> “><?php topic_title(); ?></td>
<td class=”num”><?php topic_posts(); ?></td>
<td class=”num”><?php topic_last_poster(); ?></td>
<td class=”num”>“><?php topic_time(); ?></td>
</tr>
<?php endforeach; endif; // $topics ?>
</table>
I added that code to my index.php file in my wordpress theme and this is what I get as the output in the browser:
<table id="latest">
<tr>
<th>Movie — Add New »
</th>
<th>Posts</th>
<th>Last Poster</th>
<th>Freshness</th>
</tr>
</table>
Obviously, there is something wrong. Does anyone know what?
decided to re-use an existing cookie name for a new purpose and change the cookie path.