Wanted someone that can convert article database

Discussion in 'Services' started by jminscoe, Apr 29, 2007.

  1. #1
    I am looking for someone that can convert an article dashboard sql to another sql
    here is the structure for articledashboard
    CREATE TABLE `bla bla bla` (
      `article_id` bigint(20) NOT NULL auto_increment,
      `author_id` int(11) NOT NULL default '0',
      `penname_id` int(11) NOT NULL default '0',
      `category_id` int(11) NOT NULL default '0',
      `article_title` varchar(200) NOT NULL default '',
      `article_sum` text NOT NULL,
      `article_body` text NOT NULL,
      `article_res` text NOT NULL,
      `article_key` text NOT NULL,
      `posteddate` date NOT NULL default '0000-00-00',
      `revieweddate` date NOT NULL default '0000-00-00',
      `modifieddate` date NOT NULL default '0000-00-00',
      `status` enum('F','M','A','D') NOT NULL default 'F',
      `ip` varchar(20) NOT NULL default '',
      `article_downloads` int(11) NOT NULL default '0',
      `article_wordcount` int(11) NOT NULL default '0',
      `reviewedip` varchar(20) NOT NULL default '',
      PRIMARY KEY  (`article_id`),
      KEY `IX_author` (`author_id`),
      KEY `IX_pen` (`penname_id`),
      KEY `IX_category` (`category_id`),
      KEY `IX_status` (`status`)
    ) ENGINE=MyISAM  DEFAULT CHARSET=latin1 AUTO_INCREMENT=19140 ;
    Code (markup):
    and here for what I want
    CREATE TABLE `blah blah blah` (
      `ID` int(11) NOT NULL auto_increment,
      `TITLE` varchar(255) NOT NULL default '',
      `DESCRIPTION` longtext,
      `ARTICLE` longtext,
      `CATEGORY_ID` int(11) NOT NULL default '0',
      `STATUS` int(11) NOT NULL default '1',
      `DATE_MODIFIED` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP,
      `DATE_ADDED` timestamp NOT NULL default '0000-00-00 00:00:00',
      `IPADDRESS` varchar(15) default NULL,
      PRIMARY KEY  (`ID`),
      KEY `PLD_ARTICLE_TITLE_IDX` (`TITLE`),
      KEY `PLD_ARTICLE_CATEGORY_ID_IDX` (`CATEGORY_ID`),
      KEY `PLD_ARTICLE_STATUS_IDX` (`STATUS`),
      FULLTEXT KEY `PLD_ARTICLE_DESCRIPTION_IDX` (`DESCRIPTION`),
      FULLTEXT KEY `PLD_ARTICLE_ARTICLE_IDX` (`ARTICLE`)
    ) ENGINE=MyISAM  DEFAULT CHARSET=latin1 AUTO_INCREMENT=2 ;
    Code (markup):

     
    jminscoe, Apr 29, 2007 IP
  2. jminscoe

    jminscoe Peon

    Messages:
    1,223
    Likes Received:
    119
    Best Answers:
    0
    Trophy Points:
    0
    As Seller:
    100% - 0
    As Buyer:
    100% - 0
    #2
    I am still looking for someone to convert over 47000 articles to go into phpld article structure
     
    jminscoe, May 6, 2007 IP
  3. Clive

    Clive Web Developer

    Messages:
    4,507
    Likes Received:
    297
    Best Answers:
    0
    Trophy Points:
    250
    As Seller:
    100% - 0
    As Buyer:
    100% - 0
    #3
    Hey, I can do this job, too.
    If still looking, drop me another PM and let's get started.
     
    Clive, May 6, 2007 IP
  4. eli03

    eli03 Well-Known Member

    Messages:
    2,887
    Likes Received:
    98
    Best Answers:
    0
    Trophy Points:
    175
    As Seller:
    100% - 0
    As Buyer:
    100% - 0
    #4
    i think you can't used the articles on articledashboard since the database for AD is encrypted. so you need to decrypt the article before displaying it to your phpld :D .

    BUT if you changed your mind and continue using your AD Directory, i can customize the design according to your need. see my sample AD. demo .

    Thanks,
    eli
     
    eli03, May 6, 2007 IP
  5. jminscoe

    jminscoe Peon

    Messages:
    1,223
    Likes Received:
    119
    Best Answers:
    0
    Trophy Points:
    0
    As Seller:
    100% - 0
    As Buyer:
    100% - 0
    #5
    on the ad all you have to do is change blob to text and the mysql is is no longer encryped as far as the articles go as i have done it with 10 of them so far
     
    jminscoe, May 7, 2007 IP