Installing the digg clone "meneame"


Recommended Posts

Original guide here (cloned for safe keeping)

First grab the Meneame files here: http://meneame.net/archives/meneame-src.tgz

1. Extract files and ftp to www folder

2. Use phpMyAdmin to create a database and user that can access that database

3. Execute the sql below in the table you created.

4. Using phpMyAdmin to add some categories the categories table. Categories must have a value of 1 or more. If you want to create sub-categories, put the category_id of the parent as the category_parent value of the sub-category.

categories2xe.png

5. Edit libs/db.php and fill in the user/password/database info

* notes

- The linking is absolute to root, so you will probably have to put the files in www.yoursite.com/index.php, not www.yoursite.com/mydiggsite/index.php

Or come back in a day or so and we?ll put a version up with proper linking.

SQL

? MySQL dump 10.9

?

? Host: localhost Database: meneame

? ??????????????????

? Server version 4.1.11-Debian_4sarge2

/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;

/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;

/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;

/*!40101 SET NAMES utf8 */;

/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;

/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;

/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE=?NO_AUTO_VALUE_ON_ZERO? */;

/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;

?

? Table structure for table `blogs`

?

DROP TABLE IF EXISTS `blogs`;

CREATE TABLE `blogs` (

`blog_id` int(20) NOT NULL auto_increment,

`blog_key` varchar(35) collate utf8_spanish_ci default NULL,

`blog_type` enum(?normal?,'blog?) collate utf8_spanish_ci NOT NULL default ?normal?,

`blog_rss` varchar(64) collate utf8_spanish_ci NOT NULL default ??,

`blog_rss2` varchar(64) collate utf8_spanish_ci NOT NULL default ??,

`blog_atom` varchar(64) collate utf8_spanish_ci NOT NULL default ??,

`blog_url` varchar(64) collate utf8_spanish_ci default NULL,

PRIMARY KEY (`blog_id`),

UNIQUE KEY `key` (`blog_key`)

) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_spanish_ci;

?

? Table structure for table `categories`

?

DROP TABLE IF EXISTS `categories`;

CREATE TABLE `categories` (

`category__auto_id` int(11) NOT NULL auto_increment,

`category_lang` varchar(4) collate utf8_spanish_ci NOT NULL default ?es?,

`category_id` int(11) NOT NULL default ?0′,

`category_parent` int(11) NOT NULL default ?0′,

`category_name` varchar(64) collate utf8_spanish_ci NOT NULL default ??,

PRIMARY KEY (`category__auto_id`),

UNIQUE KEY `category_lang` (`category_lang`,`category_id`)

) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_spanish_ci;

?

? Table structure for table `comments`

?

DROP TABLE IF EXISTS `comments`;

CREATE TABLE `comments` (

`comment_id` int(20) NOT NULL auto_increment,

`comment_randkey` int(11) NOT NULL default ?0′,

`comment_parent` int(20) default ?0′,

`comment_link_id` int(20) NOT NULL default ?0′,

`comment_user_id` int(20) NOT NULL default ?0′,

`comment_date` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP,

`comment_karma` smallint(6) NOT NULL default ?0′,

`comment_nick` varchar(32) collate utf8_spanish_ci default NULL,

`comment_content` text collate utf8_spanish_ci NOT NULL,

PRIMARY KEY (`comment_id`),

UNIQUE KEY `comments_randkey` (`comment_randkey`,`comment_link_id`,`comment_user_id`),

KEY `comment_link_id_2` (`comment_link_id`,`comment_date`)

) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_spanish_ci;

?

? Table structure for table `friends`

?

DROP TABLE IF EXISTS `friends`;

CREATE TABLE `friends` (

`friend_id` int(11) NOT NULL auto_increment,

`friend_from` bigint(20) NOT NULL default ?0′,

`friend_to` bigint(20) NOT NULL default ?0′,

PRIMARY KEY (`friend_id`),

UNIQUE KEY `friends_from_to` (`friend_from`,`friend_to`)

) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_spanish_ci;

?

? Table structure for table `languages`

?

DROP TABLE IF EXISTS `languages`;

CREATE TABLE `languages` (

`language_id` int(11) NOT NULL auto_increment,

`language_name` varchar(64) collate utf8_spanish_ci NOT NULL default ??,

PRIMARY KEY (`language_id`),

UNIQUE KEY `language_name` (`language_name`)

) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_spanish_ci;

?

? Table structure for table `links`

?

DROP TABLE IF EXISTS `links`;

CREATE TABLE `links` (

`link_id` int(20) NOT NULL auto_increment,

`link_author` int(20) NOT NULL default ?0′,

`link_blog` int(20) default ?0′,

`link_status` enum(?discard?,'queued?,'published?,'abuse?,'duplicated?) collate utf8_spanish_ci NOT NULL default ?discard?,

`link_randkey` int(20) NOT NULL default ?0′,

`link_votes` int(20) NOT NULL default ?0′,

`link_karma` decimal(10,2) NOT NULL default ?0.00′,

`link_modified` timestamp NOT NULL default CURRENT_TIMESTAMP,

`link_date` timestamp NOT NULL default ?0000-00-00 00:00:00′,

`link_published_date` timestamp NOT NULL default ?0000-00-00 00:00:00′,

`link_category` int(11) NOT NULL default ?0′,

`link_lang` int(11) NOT NULL default ?1′,

`link_url` varchar(200) collate utf8_spanish_ci NOT NULL default ??,

`link_url_title` text collate utf8_spanish_ci,

`link_title` text collate utf8_spanish_ci NOT NULL,

`link_content` text collate utf8_spanish_ci NOT NULL,

`link_tags` text collate utf8_spanish_ci,

PRIMARY KEY (`link_id`),

KEY `link_author` (`link_author`),

KEY `link_url` (`link_url`),

KEY `link_date` (`link_date`),

KEY `link_published_date` (`link_published_date`),

FULLTEXT KEY `link_url_2` (`link_url`,`link_url_title`,`link_title`,`link_content`,`link_tags`)

) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_spanish_ci;

?

? Table structure for table `trackbacks`

?

DROP TABLE IF EXISTS `trackbacks`;

CREATE TABLE `trackbacks` (

`trackback_id` int(10) unsigned NOT NULL auto_increment,

`trackback_link_id` int(11) NOT NULL default ?0′,

`trackback_user_id` int(11) NOT NULL default ?0′,

`trackback_type` enum(?in?,'out?) collate utf8_spanish_ci NOT NULL default ?in?,

`trackback_status` enum(?ok?,'pendent?,'error?) collate utf8_spanish_ci NOT NULL default ?pendent?,

`trackback_modified` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP,

`trackback_date` timestamp NULL default NULL,

`trackback_url` varchar(200) collate utf8_spanish_ci NOT NULL default ??,

`trackback_title` text collate utf8_spanish_ci,

`trackback_content` text collate utf8_spanish_ci,

PRIMARY KEY (`trackback_id`),

UNIQUE KEY `trackback_link_id_2` (`trackback_link_id`,`trackback_type`,`trackback_url`),

KEY `trackback_link_id` (`trackback_link_id`),

KEY `trackback_url` (`trackback_url`),

KEY `trackback_date` (`trackback_date`)

) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_spanish_ci;

?

? Table structure for table `users`

?

DROP TABLE IF EXISTS `users`;

CREATE TABLE `users` (

`user_id` int(20) NOT NULL auto_increment,

`user_login` varchar(32) collate utf8_spanish_ci NOT NULL default ??,

`user_level` enum(?normal?,?special?,'blogger?,'admin?,'god?) collate utf8_spanish_ci NOT NULL default ?normal?,

`user_modification` timestamp NOT NULL default CURRENT_TIMESTAMP,

`user_date` timestamp NOT NULL default ?0000-00-00 00:00:00′,

`user_pass` varchar(64) collate utf8_spanish_ci NOT NULL default ??,

`user_email` varchar(128) collate utf8_spanish_ci NOT NULL default ??,

`user_names` varchar(128) collate utf8_spanish_ci NOT NULL default ??,

`user_lang` int(11) NOT NULL default ?1′,

`user_karma` decimal(10,2) default ?10.00′,

`user_url` varchar(128) collate utf8_spanish_ci NOT NULL default ??,

PRIMARY KEY (`user_id`),

UNIQUE KEY `user_login` (`user_login`),

KEY `user_email` (`user_email`)

) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_spanish_ci;

?

? Table structure for table `votes`

?

DROP TABLE IF EXISTS `votes`;

CREATE TABLE `votes` (

`vote_id` int(20) NOT NULL auto_increment,

`vote_type` enum(?links?,'comments?) collate utf8_spanish_ci NOT NULL default ?links?,

`vote_date` timestamp NOT NULL default CURRENT_TIMESTAMP,

`vote_link_id` int(20) NOT NULL default ?0′,

`vote_user_id` int(20) NOT NULL default ?0′,

`vote_value` smallint(11) NOT NULL default ?1′,

`vote_ip` varchar(64) collate utf8_spanish_ci default NULL,

PRIMARY KEY (`vote_id`),

KEY `user_id` (`vote_user_id`),

KEY `link_id` (`vote_link_id`),

KEY `vote_type` (`vote_type`,`vote_link_id`,`vote_user_id`,`vote_ip`)

) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_spanish_ci PACK_KEYS=0;

/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;

/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;

/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;

/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;

/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;

/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;

/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;

Link to comment
https://www.neowin.net/forum/topic/408645-installing-the-digg-clone-meneame/
Share on other sites

  • 3 weeks later...

I got mine to work and have it up and running. You can check it here: www.staralicious.com

It can be a little tricky on some server configurations, it must also be in the root directory of your web server. You also may have to make some changes to your .htaccess file.

podigle

  • 4 weeks later...
  • 3 months later...
  • 2 months later...
This topic is now closed to further replies.
  • Recently Browsing   0 members

    • No registered users viewing this page.
  • Posts

    • Because of the EU (a good thing) newer android devices been getting 5 years worth of security patches. Except some Motorola which found the loop hole, and offer ZERO updates. In addition, Google for years have been making where it can patch some stuff by updating the core Google Play Store itself.  As echoed earlier,  you take the security risk in to your own hand beyond supported.
    • Win11Debloat 06.11.2026 by Razvan Serea Win11Debloat is a lightweight, easy to use PowerShell script that allows you to quickly declutter and customize your Windows experience. It can remove pre-installed bloatware apps, disable telemetry, remove intrusive interface elements and much more. The script also includes many features that system administrators and power users will enjoy. Such as a powerful command-line interface, support for Windows Audit mode and the option to make changes to other Windows users. All changes made by Win11Debloat can be easily reversed, and most removed apps can be restored via the Microsoft Store. A full guide on how to undo the changes is available here. Win11Debloat features: Below is an overview of the key features and functionality offered by Win11Debloat. Please refer to the wiki for more information about the default settings preset. Remove a wide variety of preinstalled apps. Click here for more info. Disable telemetry, diagnostic data, activity history, app-launch tracking & targeted ads. Disable tips, tricks, suggestions & ads across Windows. Disable Windows location services & app location access. Disable Find My Device location tracking. Disable 'Windows Spotlight' and tips & tricks on the lock screen. Disable 'Windows Spotlight' desktop background option. Disable ads, suggestions and the MSN news feed in Microsoft Edge. Hide Microsoft 365 ads on the Settings 'Home' page, or hide the 'Home' page entirely. Disable & remove Microsoft Copilot. Disable Windows Recall. Disable Click to Do, AI text & image analysis tool. Prevent AI service (WSAIFabricSvc) from starting automatically. Disable AI Features in Edge. Disable AI Features in Paint. Disable AI Features in Notepad. Disable the Drag Tray for sharing & moving files. Restore the old Windows 10 style context menu. Turn off Enhance Pointer Precision, also known as mouse acceleration. Disable the Sticky Keys keyboard shortcut. Disable Storage Sense automatic disk cleanup. Disable fast start-up to ensure a full shutdown. ...and more. Once you’ve downloaded the Win11Debloat file (Get.ps1), just follow these quick steps: Locate the Get.ps1 script file. Right-click the file and select Run with PowerShell from the context menu. If prompted by User Account Control (UAC), select Yes to grant the script the necessary administrative permissions. Win11Debloat 06.11.2026 fixes: Fix lock screen spotlight option being disabled when disabling the start recommended section by @Raphire in #619 Fix log message formatting by @Raphire Note The -RemoveCommApps and -RemoveW11Outlook command-line parameters for uninstalling a few specific apps have been removed with this release. If you previously relied on these parameters, please see this wiki page for alternative methods of removing these apps. Download: Win11Debloat 06.11.2026 | Open Source View: Win11Debloat Home Page | Screenshots 1| 2 Get alerted to all of our Software updates on Twitter at @NeowinSoftware
    • Yes for me, I installed 'old calculator' (Windows 7 calculator) in its place since it is more useful to me. I think paint is the only one I left installed
  • Recent Achievements

    • Rookie
      restore went up a rank
      Rookie
    • Very Popular
      AndrewSteel earned a badge
      Very Popular
    • Veteran
      Taliseian went up a rank
      Veteran
    • One Month Later
      Clizby earned a badge
      One Month Later
    • One Month Later
      Timaximus earned a badge
      One Month Later
  • Popular Contributors

    1. 1
      +primortal
      501
    2. 2
      +Edouard
      162
    3. 3
      PsYcHoKiLLa
      154
    4. 4
      ATLien_0
      83
    5. 5
      Steven P.
      79
  • Tell a friend

    Love Neowin? Tell a friend!