View Single Post
  #834  
Old 02-11-2005, 09:37 PM
darcyb darcyb is offline
 
Join Date: Oct 2004
Posts: 15
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I had a table full of categorized link items already and wanted to migrate it into Links 1.51 so that it could become the foundation of my collection. It was a duplicated system up to this point where people would use a forum for URL discussion and I was manually updating a table with phpmyadmin. Anyway, this solution fixes all that.

So I wrote my own php script to import the stuff and I figured I'd share it here in case anyone else has to do something similar.
  1. First, use the Links interface to create enough categories to match the ones you were using before;
  2. Then, run a script sort of like the one I've included before to get the toc and linkslinks tables populated with stuff. I used a counter for the key indices and ignored whatever indices I had. I made my items query from newest to oldest (using whatever key IDs I had), as I didn't want to populate Links with older links at the top of pages. I used my own user account for the userid, and a datestamp from a manual link entry to generate the integer for the time.
  3. Although I did notice Links recount how many items were in each category and update the Category records while testing and clicking around, I did it manually anyway by querying (through phpmyadmin) with WHERE catid='n' (cat number) or whatever to get a count for how many items had imported into each category.
  4. Edit category records and insert the actual count of items imported for each.
All of this is a sloppy way of doing it and it shows that I'm a little new to all this. I couldn't get phpmyadmin to generate a CSV file while escaping the commas in my news article quotes, and it was tricking imports into thinking a grammatical comma was defining a new field, and it just wouldn't work.

I then had trouble with apostrophes from words like can't, so I had to use the addslashes() function on the titles and descriptions I was importing.

But it worked, and very well. I was able to populate Links with about 400 links, all into the right categories. Here's the ugly amateurish php script with some extra echo commands I used for testing. You can omit those:
Code:
<?php					
				
$link_id = mysql_connect("localhost", "username", "password");
	
$result=mysql_list_dbs($link_id);
	
mysql_select_db("dbase_name", $link_id);
	
$result=mysql_query("SELECT * FROM tbl_news where newsType in ('Media', 'Research', 'Opinion', 'Inspiration') order by newsID desc", $link_id);
	
if($result) {
	$idx_count=0;
	while($query_data=mysql_fetch_row($result)){
					
		$idx_count++;
					
		echo "IDX = $idx_count<br>";
					
		if ($query_data[2]=="Media")
			$catid=1;
		if ($query_data[2]=="Research")
			$catid=3;
		if ($query_data[2]=="Opinion")
			$catid=4;
		if ($query_data[2]=="Inspiration")
			$catid=5;
		echo "$query_data[2] catid=$catid<br>";
					
		$result2=mysql_query("INSERT local_linksltoc SET 
			ltoc='',
			linkid='$idx_count',
			catid='$catid',
			displayorder='$idx_count'", $link_id);
			echo "$idx_count, $catid, $idx_count<br>";
					
			$query_data[3]=addslashes($query_data[3]);
			$query_data[4]=addslashes($query_data[4]);
					
			$result3=mysql_query("INSERT local_linkslink SET
				linkid='$idx_count',
				linkname='$query_data[3]', // newsTitle field
				linkdesc='$query_data[4]',  // newsBody field
				linkurl='$query_data[5]',    // newsURL field
				linkhits='0',
				linkforum='-999',
				linkcheck='1108148258',   // whatever is "now"
				linkstatus='1',
				linkdate='1108148258',    // whatever is "now"
				linkusername='username',
				linkuserid='1',                   // my userid
				linkmoderate='0',
				linkmoddate='0',
				linkreviewfreq='0'", $link_id);
			if ($result3==1)
				echo "$idx_count, $query_data[3], $query_data[4], $query_data[5]<br><hr><br>";
			else
				echo "<h1>$idx_count - $query_data[3] - ERROR</h1>";
	}
}
mysql_close($link_id);				
?>
Hope this is useful to somebody.

Attached are FROM (the original news/links database) and TO (Links 1.51) screen caps.
Reply With Quote
 
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01268 seconds
  • Memory Usage 1,790KB
  • Queries Executed 11 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD_SHOWPOST
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)bbcode_code
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_box
  • (1)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (1)post_thanks_postbit_info
  • (1)postbit
  • (1)postbit_onlinestatus
  • (1)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • reputationlevel
  • showthread
Included Files:
  • ./showpost.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_postinfo_query
  • fetch_postinfo
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • showpost_start
  • bbcode_fetch_tags
  • bbcode_create
  • postbit_factory
  • showpost_post
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • fetch_musername
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • showpost_complete