Browse Source

compatibility with >= v0.9.4

pull/40/head
Savetheinternet 13 years ago
parent
commit
cce8b3955d
  1. 6
      README.md
  2. 8
      kusabax.php

6
README.md

@ -6,10 +6,10 @@ This script pulls board information, posts and images from an already existing [
[k]: http://kusabax.cultnet.net/
## Requirements
1. [Tinyboard][o] >= v0.9.2
1. [Tinyboard][o] >= v0.9.4
## Use
1. Install Tinyboard (>= v0.9.2) normally.
1. Install Tinyboard (>= v0.9.4) normally.
2. Download and place `kusabax.php` in the root folder of Tinyboard.
3. Edit the script and fill in your Kusaba X configuration. You can find KU_RANDOMSEED from Kusaba X's config.php file.
4. Run the script in a web browser.
@ -24,4 +24,4 @@ Visit the Tinyboard development wiki at <http://tinyboard.org/wiki/> for help.
## License
See [LICENSE.md][l] for the license.
[l]: http://github.com/savetheinternet/Tinyboard/blob/master/LICENSE.md
[l]: http://github.com/savetheinternet/Tinyboard/blob/master/LICENSE.md

8
kusabax.php

@ -74,7 +74,7 @@
// Trick Tinyboard into opening the KusabaX databse instead
$__temp = $config['db'];
$config['db'] = $kusabaxc['db'];
sql_open();
// Get databse link
$kusabax = $pdo;
// Clear
@ -83,7 +83,6 @@
// Open Tinyboard database
$config['db'] = $__temp;
unset($__temp);
sql_open();
$k_query = $kusabax->query('SELECT * FROM `' . $kusabaxc['db']['prefix'] . 'boards`');
$boards = listBoards();
@ -133,7 +132,7 @@
$log[] = 'Replicating post <strong>' . $post['id'] . '</strong> on /' . $board . '/';
$query = prepare(sprintf("INSERT INTO `posts_%s` VALUES (:id, :thread, :subject, :email, :name, :trip, :capcode, :body, :time, :bump, :thumb, :thumbwidth, :thumbheight, :file, :width, :height, :filesize, :filename, :filehash, :password, :ip, :sticky, :locked, :embed)", $board));
$query = prepare(sprintf("INSERT INTO `posts_%s` VALUES (:id, :thread, :subject, :email, :name, :trip, :capcode, :body, :time, :bump, :thumb, :thumbwidth, :thumbheight, :file, :width, :height, :filesize, :filename, :filehash, :password, :ip, :sticky, :locked, 0, :embed)", $board));
// Post ID
$query->bindValue(':id', $post['id'], PDO::PARAM_INT);
@ -272,4 +271,5 @@
$page['body'] .= '</p></div>';
echo Element('page.html', $page);
?>

Loading…
Cancel
Save