 | |  | | | Photopost Pro Installation & Upgrades If you're having install or upgrade problems |
July 16th, 2007, 06:02 PM
|
#1 (permalink)
| | Member
Join Date: Jul 2007 Location: Ohio
Posts: 34
| Step 4 Questions... Im stuck
Im no web genius but I've made it to step 4 of the PP Installation and now I am stuck. If I am correct my forum table prefix is scrapsn_ but I dont know what my forum cookie prefix is. I have no idea and I tried to go on and go the following error... Quote:
Error: Are you certain that your database prefix is set properly?
I cannot see your phpBB2 "scrapsn_groups" table.
The prefix setting adds characters to the front of phpBB2 table names - please doublecheck this.
| Can anyone tell me where I would find what my cookie prefix is. I'be been all over my databases. Feeling like a do do brain! Thanks! |
| |
July 16th, 2007, 07:00 PM
|
#2 (permalink)
| | Photopost Developer Verified Customer
Join Date: Jun 2002 Location: Abingdon,MD
Posts: 66,806
|
Make sure your config settings have the correct phpbb database table settings under the user database section.
Then on step 4 you input the correct phpbb table prefix
|
| |
July 16th, 2007, 08:53 PM
|
#3 (permalink)
| | Member
Join Date: Jul 2007 Location: Ohio
Posts: 34
|
Ok I changed something and only got to step 3 this time.
My forum database is scrapsn_phpb1
and my photo post database is scrapsn_photopost
Ok here's my config-inc settings... Quote:
<?php
//**************** External Header Configuration ****************//
//
// the isset prevents vB
headers from being sent during login/logout -
// do not remove this line as it may cause the vB headers
to interfere with the login/logout process
//
// To include the file, first edit the header-inc.php
//
if (
!isset($skip_exheader) ) {
include "header-inc.php";
}
// PhotoPost Pro Version Number
$VERSION =
"5.62";
// Path to your PhotoPost installation - no end slashes
$PP_PATH = "scraps-n-
such.com/public_html/photopost/install.php";
// All of the .tmpl files are placed into a directory called
"templates"; if you wish to change the
// name of the directory to something else to protect your files,
you may do so and indicate the name
// of the directory here - this is not a path to the directory, just
the directory name; the directory
// cannot be moved from the PhotoPost main directory.
$TMPL_PATH =
"templates";
//**************** MySQL Database Configuration ****************//
// PhotoPost database host
address, or leave as localhost
$host="localhost";
// PhotoPost's database name
$database="scrapsn_photopost";
// MySQL username and password to access PhotoPost's database
//
// These
two variables are for the userid and password needed to access
// the PhotoPost database named above.
$mysql_user="myusernameishere";
$mysql_password="mypasswordishere";
// If you want to use a prefix for your
database, enter it here.
// NOTE: This variable can only be set PRIOR to your first installation of
PhotoPost;
// existing databases will not be changed and you will be unable to connect if you change
//
this variable after performing a default installation.
$pp_db_prefix = "pp_";
// User database host
address, or leave as localhost
$host_bb="localhost";
// User database MySQL database name
//
// This is the
variable for the User Database; if you are using Internal
// as your registration system, then these
variables are the same as the
// ones above. If you are linking to a message board system,
// thse
variables should be set to the database, user and password for that
// database.
$database_bb="scrapsn_phpb1";
// MySQL username and password to access user database
//
// These two
variables are for the userid and password needed to access
// the PhotoPost or BB database.
$user_bb="myusernameishere";
$password_bb="mypasswordishere";
//
// VB3 License Number required for VB3 integration
// You can find this number by checking your index.php file in your vB3 directory
// The 4th line in the
file looks like:
// || # vBulletin 3.0.0 - Licence Number ########
// It is the ######## number you need
to place below.
$vblicense = "12345678";
//**************** Application Configuration ****************//
//
Default Language
// This needs to be set to the name of the directory used inside of the languages
directory
$pplang = "english";
//////////////////////// Application Configuration
////////////////////////////////
// These variables set the path to the UNZIP, MOGRIFY and JHEAD commands
on your system
//
// This only needs to be set if you are allowing ZIP uploads. These are full paths,
//
including the name of the executable (.exe extensions for windows)
// The -j option for Info-ZIP's UNZIP
tells it to ignore paths in ZIP file
//
// This option is only used in the event the internal UNZIP does
not work for you
//$zip_command = "/usr/bin/unzip -j";
// Path to MOGRIFY executable
// There should be no
spaces in the directory names, use short names if necessary.
// Examples:
// $mogrify_command =
"c:\progra~1\imagemagick\mogrify.exe";
// $mogrify_command = "c:\ImageMagick\mogrify.exe";
$mogrify_command = "/usr/bin/X11/mogrify";
?>
| And my config-int settings... Quote:
<?php
//-----------------------------------------------------------------------------------//
// Forum
Integration Configuration File
//
// For users using our forum integration files, there are a few things
//
we need to know - like the location of PhotoPost and your forums; this
// prevents us from doing alot of
extra processing in these scripts we otherwise
// would have to do.
//
// Follow the guides to set your
paths and enable the integration options you
// want.
//-------------------------------------------------
----------------------------------//
// We need to know the server paths to both your vB installation and
your PhotoPost installation
$vbpath = "/home/sites/yoursite/web";
$pppath = "scraps-n-
such.com/public_html/photopost";
// We need the URL path to your PhotoPost and vb installation
$url_path =
"/photopost";
$vb_urlpath = "/forum";
// The URL of your photo dir where your images are stored (with /
at end)
$data_dir = "/photopost/data/";
// If your PhotoPost tables have a prefix, put it here
// Example:
// $pp_db_prefix = "pp_";
$pp_db_prefix = "";
// If you use the mobile phone integration, set this
variable to the CatID for the gallery
define( "MOBILE_CAT", -1 );
//-------------------------------------
vB3 -----------------------------------------//
// VB3_INTEGRATION is for using vB3 headers/footers and
styles
// VB3_ENHANCEDINT is for Enhanced vB3 Integration (using vB3 elements in PhotoPost)
//
requires that VB3_INTEGRATION also be set to 'on'
// VB3_COMMWYSIWYG is for turning on the WYSIWYG
interface on the Post A Comment page
// if you set this to 'off' then only the standard
input box will appear
//
// Set to 'on' to enable specific integrations
define("VB3_INTEGRATION", 'off');
define("VB3_ENHANCEDINT", 'off');
define("VB3_COMMWYSIWYG", 'off');
//-----------------------------------
------------------------------------------------//
//------------------------------------- vB2 ---------
--------------------------------//
// VB2_INTEGRATION is if you are using vB2 and want to use the vB2
integration
define("VB2_INTEGRATION", 'off');
//---------------------------------------------------------
--------------------------//
//---------------------------------- vB2 Portal ---------------------------
----------//
// To use set path and set flag to 'on'
define("VBP2_INTEGRATION", 'off');
$vbportal="/home/sites/yoursite/web/vbportal";
//-------------------------------------------------------
----------------------------//
?>
| |
| |
July 16th, 2007, 09:18 PM
|
#4 (permalink)
| | Photopost Developer Verified Customer
Join Date: Jun 2002 Location: Abingdon,MD
Posts: 66,806
|
Okay but you are not responding with what your issue is? You get to step 3 then what?
|
| |
July 16th, 2007, 09:26 PM
|
#5 (permalink)
| | Member
Join Date: Jul 2007 Location: Ohio
Posts: 34
|
Im sorry, Im new to this...
This is wha it says now Quote:
Step 3: MySQL error reported: [INSERT INTO pp_categories (id,catname,description,catorder,thumbs,parent,children) VALUES (1,'Main','',2,'no',0,'2')]
Result: Duplicate entry '1' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_categories (id,catname,description,catorder,thumbs,parent,children) VALUES (2,'A Category','Photos of a particular subject',1,'yes',1,'')]
Result: Duplicate entry '2' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_categories (id,catname,description,catorder,thumbs,parent,children) VALUES (500,'Member Galleries','Individual user galleries - any photo category',1,'yes',0,'')]
Result: Duplicate entry '500' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_settings VALUES (1,'Title for your PhotoPost Application','galleryname','','My Photo Gallery',1,1)]
Result: Duplicate entry '1' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_settings VALUES (2,'Web site name','webname','','My Website',2,1)]
Result: Duplicate entry '2' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_settings VALUES (3,'Your Website URL (include http://)','domain','','http://www.domain.com',3,1)]
Result: Duplicate entry '3' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_settings VALUES (4,'Administrator Email Address','adminemail','','admin@domain.com',4,1)]
Result: Duplicate entry '4' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_settings VALUES (5,'URL to PhotoPost data directory','datadir','This is the web / virtual path to the data directory.','http://www.domain.com/photopost/data',5,1)]
Result: Duplicate entry '5' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_settings VALUES (6,'Full SERVER PATH to PhotoPost data directory','datafull','Full path to the image files directory.','/path/to/your/photopost/data',6,1)]
Result: Duplicate entry '6' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_settings VALUES (7,'URL to your forums main directory','vbulletin','This is the URL path to your forum installation.','http://www.domain.com/forum',1,13)]
Result: Duplicate entry '7' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_settings VALUES (8,'Full path to Header Include file','header','To include an HTML file as the header, enter the full path.','/path/to/php/header.htm',8,1)]
Result: Duplicate entry '8' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_settings VALUES (9,'Full path to the Footer include file','footer','To include an HTML file as the footer, enter the full path.','/path/to/php/footer.htm',9,1)]
Result: Duplicate entry '9' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_settings VALUES (10,'Full path to HTML file containing head tags','headtags','','/path/to/php/headtags.htm',10,1)]
Result: Duplicate entry '10' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_settings VALUES (11,'URL to PhotoPost PHP directory','maindir','','http://www.domain.com/photopost',11,1)]
Result: Duplicate entry '11' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_settings VALUES (13,'Default number of comments per page','defaultposts','','15',1,5)]
Result: Duplicate entry '13' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_settings VALUES (14,'Show Most Recent Additions on Index page?','mostrecent','','yes',4,9)]
Result: Duplicate entry '14' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_settings VALUES (15,'Number of columns for thumbnail pages','thumbcols','','4',1,4)]
Result: Duplicate entry '15' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_settings VALUES (18,'Thumbnail image max width and height in pixels','previewwidth','','100',1,6)]
Result: Duplicate entry '18' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_settings VALUES (19,'Max allowable image width in pixels','maxwidth','','2500',2,6)]
Result: Duplicate entry '19' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_settings VALUES (20,'Max allowable image height in pixels','maxheight','','2500',3,6)]
Result: Duplicate entry '20' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_settings VALUES (21,'Trigger medium graphic height and width','biggraphic','An uploaded larger than this will create a medium image of this size.','600',4,6)]
Result: Duplicate entry '21' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_settings VALUES (37,'cright','cright','','Powered by: PhotoPost --replaceme--
Copyright © 2007 All Enthusiast, Inc.',300,'0')]
Result: Duplicate entry '37' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_settings VALUES (38,'Use email to notify users?','useemail','Users can be notified of photo approvals and deletions.','yes',1,2)]
Result: Duplicate entry '38' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_settings VALUES (41,'User Registration System','vbversion','','vb2',2,13)]
Result: Duplicate entry '41' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_settings VALUES (42,'Comments increment user post count?','cpostcount','','yes',1,7)]
Result: Duplicate entry '42' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_settings VALUES (43,'Photo uploads increment user post count?','ppostcount','','yes',5,6)]
Result: Duplicate entry '43' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_settings VALUES (44,'Save and display medium and large images?','bigsave','','yes',6,6)]
Result: Duplicate entry '44' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_settings VALUES (45,'Number of columns for most recent additions section?','recentcols','','4',1,9)]
Result: Duplicate entry '45' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_settings VALUES (46,'Number of photos to display in the most recent additions section?','recentnum','','12',2,9)]
Result: Duplicate entry '46' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_settings VALUES (47,'Allow users to send e-Cards?','enablecard','','no',2,5)]
Result: Duplicate entry '47' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_settings VALUES (48,'Require users to be registered to send an e-Card?','cardreg','','yes',3,5)]
Result: Duplicate entry '48' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_settings VALUES (49,'URL to PhotoPost images directory','idir','','http://www.domain.com/images',13,1)]
Result: Duplicate entry '49' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_settings VALUES (50,'Depth (number of levels) of categories to display.','catdepth','','1',2,3)]
Result: Duplicate entry '50' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_settings VALUES (51,'Allow users to be notified of new posts via email?','usenotify','','yes',2,2)]
Result: Duplicate entry '51' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_settings VALUES (58,'Show post count and photo details for cats without thumbs?','catdetails','','no',3,3)]
Result: Duplicate entry '58' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_settings VALUES (61,'Use COPPA for registration?','coppa','','yes',3,8)]
Result: Duplicate entry '61' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_settings VALUES (62,'Full Path to Registration Rules, or leave blank for default','rules','','',4,8)]
Result: Duplicate entry '62' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_settings VALUES (63,'Require verification of email address upon registration?','emailverify','','yes',5,8)]
Result: Duplicate entry '63' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_settings VALUES (64,'Your mailing address to receive COPPA permission forms?','address','','',6,8)]
Result: Duplicate entry '64' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_settings VALUES (65,'Full path to COPPA rules file, or leave blank for default?','copparules','','',7,8)]
Result: Duplicate entry '65' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_settings VALUES (66,'Allow new user registrations?','allowregs','','yes',8,8)]
Result: Duplicate entry '66' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_settings VALUES (67,'Allow users to upload photos?','allowup','','yes',3,2)]
Result: Duplicate entry '67' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_settings VALUES (68,'Allow users to post comments?','allowpost','','yes',4,2)]
Result: Duplicate entry '68' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_settings VALUES (69,'Show recent photos in default location (bottom)? (if no, will display at top)','recentdefault','','yes',3,9)]
Result: Duplicate entry '69' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_settings VALUES (70,'Your Commission Junction click-through URL','cjurl','','',6,2)]
Result: Duplicate entry '70' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_settings VALUES (71,'Notify Admin of New Uploads?','uploadnotify','','yes',10,2)]
Result: Duplicate entry '71' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_settings VALUES (72,'Show last photo thumbnail in member galleries listing?','membthumb','','yes',4,5)]
Result: Duplicate entry '72' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_settings VALUES (75,'PhotoPost main table width, percent or pixels.','tablewidth','','100%',5,9)]
Result: Duplicate entry '75' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_settings VALUES (76,'Require unique email addresses for user registration?','emailunique','','no',1,8)]
Result: Duplicate entry '76' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_settings VALUES (78,'Show Random images on Index page?','disrandom','','no',4,3)]
Result: Duplicate entry '78' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_settings VALUES (79,'Show Most Popular images on Index page?','dispopular','','no',5,3)]
Result: Duplicate entry '79' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_settings VALUES (80,'Do you want to allow ZIP uploads?','allowzip','','no',5,2)]
Result: Duplicate entry '80' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_settings VALUES (81,'PATH to UPLOADS directory?','zipuploaddir','','/path/to/uploads',16,1)]
Result: Duplicate entry '81' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_settings VALUES (82,'URL to UPLOADS directory?','zipuploadurl','','http://www.yoursite.com/uploads',17,1)]
Result: Duplicate entry '82' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_settings VALUES (83,'Forum database table prefix','dprefix','','',3,13)]
Result: Duplicate entry '83' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_settings VALUES (84,'PhotoPost Version','pversion','','5.62',53,0)]
Result: Duplicate entry '84' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_settings VALUES (86,'Enable watermarking of photos with overlay image?','annotate','','no',1,10)]
Result: Duplicate entry '86' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_settings VALUES (87,'If enabled, position of overlay watermark on images.','gravity','','SouthEast',2,10)]
Result: Duplicate entry '87' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_settings VALUES (88,'Quality setting for resizing/thumbnails?','imgquality','','70',7,6)]
Result: Duplicate entry '88' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_settings VALUES (89,'If photo upload width or height exceeds maximums, resize upload down to max dimensions?','resizeorig','','yes',8,6)]
Result: Duplicate entry '89' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_settings VALUES (90,'Full server path to watermark overlay image.','watermark','','',3,10)]
Result: Duplicate entry '90' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_settings VALUES (91,'Allow users to delete their own images?','userdel','','no',17,2)]
Result: Duplicate entry '91' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_settings VALUES (92,'Display Members Gallery on the main index page?','showmem','','yes',6,3)]
Result: Duplicate entry '92' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_settings VALUES (93,'Require users to be registered to view images?','reqregister','','no',9,8)]
Result: Duplicate entry '93' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_settings VALUES (94,'Do you want Members Gallery to show all of a users photos?','memformat','','yes',4,4)]
Result: Duplicate entry '94' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_settings VALUES (95,'Display headers during SlideShows?','slidehead','','yes',24,5)]
Result: Duplicate entry '95' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_settings VALUES (97,'Maximum multimedia upload size in Kb','mmuploadsize','','16000',10,6)]
Result: Duplicate entry '97' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_settings VALUES (98,'Allow users to create Personal Albums?','allowpa','','yes',7,2)]
Result: Duplicate entry '98' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_settings VALUES (99,'Allow multimedia uploads?','allowmedia','','no',8,2)]
Result: Duplicate entry '99' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_settings VALUES (100,'Allow members to rate photos?','allowrate','','yes',20,5)]
Result: Duplicate entry '100' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_settings VALUES (101,'Display new comments/photos indicator on index?','displaynew','','no',7,3)]
Result: Duplicate entry '101' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_settings VALUES (102,'Display and extract EXIF information from images?','showexif','','no',9,6)]
Result: Duplicate entry '102' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_settings VALUES (103,'Do you want to show the Members Gallery in List format?','memblist','','no',3,4)]
Result: Duplicate entry '103' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_settings VALUES (104,'Do you want to prompt for optional info during registration?','getoptional','','yes',2,8)]
Result: Duplicate entry '104' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_settings VALUES (105,'Do you want to be notified of all new comments?','notifyadmin','','no',9,2)]
Result: Duplicate entry '105' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_settings VALUES (114,'Display filesize?','dispfs','','yes',11,5)]
Result: Duplicate entry '114' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_settings VALUES (115,'Display views?','dispviews','','yes',12,5)]
Result: Duplicate entry '115' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_settings VALUES (116,'Display date?','dispdate','','yes',13,5)]
Result: Duplicate entry '116' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_settings VALUES (117,'Display dimensions?','dispdims','','yes',14,5)]
Result: Duplicate entry '117' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_settings VALUES (118,'Display keywords?','dispkeys','','yes',15,5)]
Result: Duplicate entry '118' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_settings VALUES (119,'Display description?','dispdesc','','yes',16,5)]
Result: Duplicate entry '119' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_settings VALUES (120,'Display ratings that have no comments attached?','dispempty','','yes',17,5)]
Result: Duplicate entry '120' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_settings VALUES (121,'Display title under photo?','disptitle','','yes',18,5)]
Result: Duplicate entry '121' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_settings VALUES (122,'Display quickratings under photos?','dispquick','','yes',19,5)]
Result: Duplicate entry '122' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_settings VALUES (123,'Do you want to allow people to download their favorites?','allowfavzip','','yes',11,2)]
Result: Duplicate entry '123' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_settings VALUES (124,'Display # of comments indicator under thumbnails?','dispcoms','','yes',2,4)]
Result: Duplicate entry '124' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_settings VALUES (125,'Display unapproved comments?','moderatecoms','','yes',21,5)]
Result: Duplicate entry '125' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_settings VALUES (126,'How many file upload prompts do you want?','maxfiles','','1',13,6)]
Result: Duplicate entry '126' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_settings VALUES (128,'Pixel size of borders for images/thumbnails','cellpadding','Thickness - set to 0 for no border','1',8,9)]
Result: Duplicate entry '128' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_settings VALUES (129,'Color for image borders','framecolor','Color of the frame around images/thumbs','#000000',7,9)]
Result: Duplicate entry '129' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_settings VALUES (130,'Select a theme for your website','theme','Choose from the available themes for your site layout','default',6,9)]
Result: Duplicate entry '130' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_settings VALUES (131,'Show UBBCode on Photo page?','showubb','','no',25,6)]
Result: Duplicate entry '131' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_settings VALUES (133,'Use Spider-friendly URLs?','spider','','no',15,1)]
Result: Duplicate entry '133' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_settings VALUES (134,'Use Anti-leeching code?', 'right-click', 'Use Right-Click Disable JavaScript to try and prevent right-clicking images', 'no', 23, 5)]
Result: Duplicate entry '134' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_settings VALUES (135,'Display number of viewers on categories?', 'displayonline', 'Adds a query to main index, but shows numbers of viewers per category', 'yes', 8, 3)]
Result: Duplicate entry '135' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_settings VALUES (136,'Allow users to choose additional categories during upload?', 'optcats', '', 'no', 14, 6)]
Result: Duplicate entry '136' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_settings VALUES (137,'Enable slideshows?', 'slideshow', '', 'yes', 22, 5)]
Result: Duplicate entry '137' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_settings VALUES (138,'Enable next and previous photo previews?', 'nextbox', '', 'yes', 26, 5)]
Result: Duplicate entry '138' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_settings VALUES (139,'How many days after an eCard has been read do you want to keep it?', 'cardage', '', '7', 14, 2)]
Result: Duplicate entry '139' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_settings VALUES (140,'Expire eCards after how many days (even if not read)?', 'cardexpire', '', '90', 13, 2)]
Result: Duplicate entry '140' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_settings VALUES (141,'Acceptable multimedia file types?', 'acceptmm', 'Seperate file types by a comma and include the . (example: .mpg,.wma,.asf,.mp3)', '.mpeg,.mpg,.avi,.asf,.wmv,.mov', 11, 6)]
Result: Duplicate entry '141' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_settings VALUES (142,'Acceptable image file types?', 'acceptimg', 'Seperate file types by a comma and include the . (example: .jpg,.gif,.png)', '.jpg,.jpeg,.png', 12, 6)]
Result: Duplicate entry '142' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_settings VALUES (143,'Select a border for your thumbnails','thumbborder','Choose from the available borders for your thumbnails','thumbnail',9,9)]
Result: Duplicate entry '143' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_settings VALUES (144,'Sidebar Placement.?', 'sidebar', 'Set this to off for no sidebar or left or right depending on your tastes.', 'left', 1, 11)]
Result: Duplicate entry '144' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_settings VALUES (145,'Sidebar Width', 'sidebar_width', ' Choose the width for your sidebar', '20%', 4, 11)]
Result: Duplicate entry '145' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_settings VALUES (146,'UnderCategory PAL', 'undercat', ' Display Recent Comments and Who\'s Online Pals', 'no', 5, 11)]
Result: Duplicate entry '146' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_settings VALUES (147,'Statistics PAL', 'statspal', ' Display Statistics Pal?', 'yes', 6, 11)]
Result: Duplicate entry '147' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_settings VALUES (148,'Top Posters PAL', 'topposterspal', ' Display Top Posters Pal?', 'no', 7, 11)]
Result: Duplicate entry '148' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_settings VALUES (149,'Random Image PAL', 'randompal', ' Display Random Image?', 'yes', 8, 11)]
Result: Duplicate entry '149' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_settings VALUES (150,'Highest Ratings PAL', 'ratingspal', ' Display Highest Ratings?', 'no', 9, 11)]
Result: Duplicate entry '150' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_settings VALUES (151,'Show Sidebar on Index Page?', 'sidebar_index', '', 'yes', 2, 11)]
Result: Duplicate entry '151' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_settings VALUES (152,'Show Sidebar Globally?', 'sidebar_global', 'Showsidebar on showphoto,showmembers and showgallery pages?', 'yes', 3, 11)]
Result: Duplicate entry '152' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_settings VALUES (153,'Default theme setting (UBBThreads users only)', 'threads', 'Threads Users: We need to know what the site default theme setting is.', 'infopop', 5, 13)]
Result: Duplicate entry '153' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_settings VALUES (154,'Show signatures?', 'showsigs', 'When available, display signatures?', 'yes', 27, 5)]
Result: Duplicate entry '154' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_settings VALUES (155,'Show Avatars', 'showavatar', 'When available, show avatars?', 'yes', 28, 5)]
Result: Duplicate entry '155' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_settings VALUES (156,'Show Category Avatars?', 'indexavatars', 'Do you want to display the Index Avatars?', 'yes', 9, 3)]
Result: Duplicate entry '156' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_settings VALUES (157,'Display Custom PAL #1', 'custom1pal', ' If you modified the custom1pal.tmpl and want to include it set to yes', 'no', 10, 11)]
Result: Duplicate entry '157' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_settings VALUES (158,'Display Custom PAL #2', 'custom2pal', ' If you modified the custom2pal.tmpl and want to include it set to yes', 'no', 11, 11)]
Result: Duplicate entry '158' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_settings VALUES (159,'Display Custom PAL #3', 'custom3pal', ' If you modified the custom3pal.tmpl and want to include it set to yes', 'no', 12, 11)]
Result: Duplicate entry '159' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_settings VALUES (160,'Number of Top Posters to display', 'numtoppal', '', '5', 13, 11)]
Result: Duplicate entry '160' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_settings VALUES (161,'Number of Last Comments to display', 'numcompal', '', '5', 14, 11)]
Result: Duplicate entry '161' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_settings VALUES (162,'Number of Highest Rated Photos to display', 'mostpoppal', '', '5', 15, 11)]
Result: Duplicate entry '162' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_settings VALUES (163,'Use Integrated forum stylesheets?', 'forumstyle', 'If you use a forum like vB3 or Threads and want to use the intergated stylesheet option, choose Yes', 'no', 4, 13)]
Result: Duplicate entry '163' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_settings VALUES (164,'Use Whos Online PAL?', 'onlinepal', '', 'yes', 10, 11)]
Result: Duplicate entry '164' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_settings VALUES (165,'Your SMF Cookie Name', 'smfcookie', 'Only needed for users of SMF forums', '', 5, 12)]
Result: Duplicate entry '165' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_settings VALUES (166,'BotBuster Integration', 'botbuster', 'Set to yes if you have BotBuster on your system (this includes the necessary tag)', 'no', 22, 1)]
Result: Duplicate entry '166' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_settings VALUES (167,'Enable ZLIB page compression', 'compression', 'Set to on if you want to enable Zlib page compression (and it is supported)', '0', 23, 1)]
Result: Duplicate entry '167' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_settings VALUES (168,'Date format', 'ppdateformat', 'Keywords: dow, month, mm, dd, yyyy', 'dow month dd, yyyy', 24, 1)]
Result: Duplicate entry '168' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_settings VALUES (169,'GMT Offset', 'gmtoffset', 'If you are running VB and want the server to display the time as an offset of GMT (for example, to the timezone where your server is located), enter the offset here.', '0', 25, 1)]
Result: Duplicate entry '169' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_settings VALUES (170,'Enable IP Cache Timeout', 'ipcache', 'This variable is used to track IP addresses and userids for voting and viewing purposes. This is set in HOURS. 0 disables this setting', '0', 26, 1)]
Result: Duplicate entry '170' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_settings VALUES (171,'PhotoPost Cookie Path', 'cookie_path', 'This should be set to match the path/domain for your cookies. Setting to / enables entire site.', '/', 1, 12)]
Result: Duplicate entry '171' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_settings VALUES (172,'Forum Cookie Prefix', 'cookieprefix', 'Some Default values vB3: bb, phpBB2: phpbb2mysql, Threads: w3t_', '', 2, 12)]
Result: Duplicate entry '172' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_settings VALUES (173,'PhotoPost Cookie Domain', 'domain_path', '.yourdomain.com; sets the cookie to be usable across the domain', '', 3, 12)]
Result: Duplicate entry '173' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_settings VALUES (174,'Debug Setting', 'debug', 'How do you want PhotoPost to handle errors?', '0', 27, 1)]
Result: Duplicate entry '174' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_settings VALUES (175,'Enable on-the-fly image protection', 'onthefly', 'This option uses the watermark.php script to serve images', 'no', 29, 5)]
Result: Duplicate entry '175' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_settings VALUES (176,'Imaging Integration (IM or GD)', 'usegd', 'Select ImageMagick or GD1/GD2 for image processing', '0', 28, 1)]
Result: Duplicate entry '176' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_settings VALUES (177,'Directory for backups?', 'backupdir', 'The full path to the directory to store backups', '', 29, 1)]
Result: Duplicate entry '177' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_settings VALUES (178,'Path to mysqldump', 'mysqldumppath', 'The full path to your mysqldump executable', '/usr/bin/mysqldump', 30, 1)]
Result: Duplicate entry '178' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_settings VALUES (179,'Path to jpegtran (if used)', 'jpegtran', 'If you would like to clean any JPG image uploaded before being processed; enter the path to your jpegtran executable.', '/usr/bin/jpegtran', 18, 1)]
Result: Duplicate entry '179' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_settings VALUES (180,'Path to jhead (if used)', 'jhead_command', 'This only needs to be set if you are extracting EXIF information from images. Full server path.', '/usr/bin/jhead', 19, 1)]
Result: Duplicate entry '180' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_settings VALUES (181,'Gallery Open?', 'ppboards', '', 'open', 20, 1)]
Result: Duplicate entry '181' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_settings VALUES (182,'Message displayed when closed', 'closedmsg', '', 'The galleries are temporarily down for maintainence.', 21, 1)]
Result: Duplicate entry '182' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_settings VALUES (183,'Show Personal Albums Index link under Members Gallery?', 'showalbum', 'Adds a text link to the Albums index into the Members Gallery description', 'yes', 10, 3)]
Result: Duplicate entry '183' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_settings VALUES (184,'Allow users to move their own images?','usermove','','no',16,2)]
Result: Duplicate entry '184' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_settings VALUES (185,'Use embedded multimedia?','embededmm', '', 'yes', 5, 5)]
Result: Duplicate entry '185' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_settings VALUES (186,'Degrees to rotate portrait thumbnails? (set to 0 for no rotation)','rotatep', 'For users of ImageMagick only', '0', 15, 6)]
Result: Duplicate entry '186' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_settings VALUES (187,'Degrees to rotate landscape thumbnails? (set to 0 for no rotation)','rotatel', 'For users of ImageMagick only', '0', 16, 6)]
Result: Duplicate entry '187' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_settings VALUES (188,'If rotating, long side for mini thumbnail?','minil', 'If rotating your thumbnails, we need to create a mini thumbnail', '50', 17, 6)]
Result: Duplicate entry '188' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_settings VALUES (189,'If rotating, short side for mini thumbnail?','minis', 'If rotating your thumbnails, we need to create a mini thumbnail', '27', 18, 6)]
Result: Duplicate entry '189' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_settings VALUES (190,'Allow downloads from URLs?','downurl', '', 'yes', 19, 6)]
Result: Duplicate entry '190' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_settings VALUES (192,'Number of top level categories to show on index page?','indexcats', 'Set to 0 to show all top level categories on one page', '0', 11, 3)]
Result: Duplicate entry '192' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_settings VALUES (193,'Use popup window for BIG images?','bigpopup', 'If you want BIG photos to appear using a popup window, set to yes', 'no', 31, 5)]
Result: Duplicate entry '193' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_settings VALUES (194,'Do you want to use the forum-style layout?','pplayout', 'Yes is the default setting, No uses the thumbnail gallery layout', 'yes', 18, 3)]
Result: Duplicate entry '194' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_settings VALUES (195,'Do you want to enable the Announcement box?','news', '', 'no', 12, 3)]
Result: Duplicate entry '195' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_settings VALUES (196,'Title for the Announcement box?','newstitle', '', 'News', 13, 3)]
Result: Duplicate entry '196' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_settings VALUES (197,'Contents of the Announcement box?','newscopy', 'This block can contain HTML code (200 character limit)', '', 14, 3)]
Result: Duplicate entry '197' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_settings VALUES (198,'Use 24 hour time format?','timeformat', 'You can elect to have time displayed as HH:MMam or using the 24 hour clock', 'no', 32, 1)]
Result: Duplicate entry '198' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_settings VALUES (199,'Do you want moderators to have global rights?','modprivs', 'Set this to NO if you want to assign moderators to specific categories', 'yes', 18, 2)]
Result: Duplicate entry '199' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_settings VALUES (200,'Display Moderators as part of the category description?','dispmods', 'Set this to YES if you want the moderators listed on the index page under a category', 'no', 15, 3)]
Result: Duplicate entry '200' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_settings VALUES (201,'Use photo view caching to reduce view update queries on high load sites?','viewcache', 'Set this to YES if you want to enable the view caching code which caches photo view updates', 'no', 33, 1)]
Result: Duplicate entry '201' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_settings VALUES (202,'Min allowable image width in pixels','minwidth','','0',21,6)]
Result: Duplicate entry '202' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_settings VALUES (203,'Min allowable image height in pixels','minheight','','0',22,6)]
Result: Duplicate entry '203' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_settings VALUES (204,'Mobile Phone Integration: EMail address for images','mobemail','EMail address users should send their images to','',23,6)]
Result: Duplicate entry '204' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_settings VALUES (205,'Show Last Comments column on Index?','showcoms','','yes',16,3)]
Result: Duplicate entry '205' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_settings VALUES (206,'Show Last Photo column on Index','showlast','','yes',17,3)]
Result: Duplicate entry '206' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_settings VALUES (207,'Original Image storage directory URL','origdir','Typically this path matches your DATA directory URL, unless you want to store your original images seperatly from your thumbnails/medium images.','http://www.domain.com/photopost/data',34,1)]
Result: Duplicate entry '207' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_settings VALUES (208,'Orignial Image storage directory server path','origfull','Typically this path matches your DATA directory server path, unless you want to store your original images seperatly from your thumbnails/medium images.','/path/to/your/photopost/data',35,1)]
Result: Duplicate entry '208' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_settings VALUES (209,'When using on-the-fly image generation, do you want to overlay the watermark image?','overwater','You can use this feature for on-the-fly watermarks in combination with the on-the-fly image generation.','no',30,5)]
Result: Duplicate entry '209' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_settings VALUES (210,'Default location of the photo previews?','filmstrip','Determines the location of the film-strip previews on the showphoto page.','top',26,5)]
Result: Duplicate entry '210' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_settings VALUES (211,'Minutes to cache index page data for featured photos, statistics and PALs?','cachetimeout','Number of minutes to cache information. Default is 10 minutes, 0 means no caching.','10',36,1)]
Result: Duplicate entry '211' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_settings VALUES (212,'Show Calendar PAL?','calpal','Do you want to display the calendar pal, yes or no.','yes',16,11)]
Result: Duplicate entry '212' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_settings VALUES (213,'Show html code to display photos?','showhtml','Do you want to show the img src html tag for a photo?','no',6,5)]
Result: Duplicate entry '213' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_settings VALUES (214,'Show direct links to photos?','showdirect','Do you want to display the page link to a photo?','no',7,5)]
Result: Duplicate entry '214' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_settings VALUES (215,'Load limit for server?','loadlimit','If running *nix and you want to disable your forums when load goes over a certain limit; place the high limit here.','0',35,1)]
Result: Duplicate entry '215' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_settings VALUES (216,'Default number of thumbnail rows?','thumbrows','How many rows of thumbnails do you want to display by default on this page?','3',5,4)]
Result: Duplicate entry '216' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_settings VALUES (217,'Use category cache?','catcache','On some larger sites, using the category cache can actually reduce performance.','yes',36,1)]
Result: Duplicate entry '217' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_settings VALUES (218,'Display Featured Photos on this page?','features','On larger sites this option can slow down the showgallery page. Turn off to speed up this page.','yes',8,5)]
Result: Duplicate entry '218' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_settings VALUES (220,'Number of minutes a user is allowed to edit a comment?','comtimeout','0 to disable. 86400 is one day.','0',2,7)]
Result: Duplicate entry '220' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_settings VALUES (221,'Require users to be registered to use search?','searchreg','','no',1,14)]
Result: Duplicate entry '221' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_settings VALUES (222,'Maximium number of search results to return?','searchmax','On larger sites, the less the better.','500',2,14)]
Result: Duplicate entry '222' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_settings VALUES (223,'Number of seconds between searches?','searchto','The number of seconds a user must wait between searches.','30',3,14)]
Result: Duplicate entry '223' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_settings VALUES (224,'Number of days to hold search results?','searchhold','','7',5,14)]
Result: Duplicate entry '224' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_settings VALUES (225,'Display who is viewing a category?','catonline','This option adds a query to the Show Gallery page.','yes',5,4)]
Result: Duplicate entry '225' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_sort VALUES (2,'Latest','ORDER BY disporder,date DESC')]
Result: Duplicate entry '2' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_sort VALUES (3,'Most Views','ORDER BY disporder,views DESC')]
Result: Duplicate entry '3' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_sort VALUES (1,'Most Active','ORDER BY disporder,lastpost DESC')]
Result: Duplicate entry '1' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_sort VALUES (4,'Most Popular','ORDER BY disporder,rating DESC, views DESC')]
Result: Duplicate entry '4' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_sort VALUES (6,'Random', 'ORDER BY disporder,RAND()')]
Result: Duplicate entry '6' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_sort VALUES (5,'Least Popular', 'ORDER BY disporder,rating,views')]
Result: Duplicate entry '5' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_sort VALUES (7,'Image Name', 'ORDER BY disporder,bigimage')]
Result: Duplicate entry '7' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_sort VALUES (8,'Title', 'ORDER BY disporder,title')]
Result: Duplicate entry '8' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_admingroups VALUES (1,'Global Options')]
Result: Duplicate entry '1' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_admingroups VALUES (2,'Admin Options')]
Result: Duplicate entry '2' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_admingroups VALUES (3,'Index Options')]
Result: Duplicate entry '3' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_admingroups VALUES (4,'Show Gallery Options')]
Result: Duplicate entry '4' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_admingroups VALUES (5,'Show Photo Options')]
Result: Duplicate entry '5' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_admingroups VALUES (6,'Upload Photo Options')]
Result: Duplicate entry '6' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_admingroups VALUES (7,'Comments Options')]
Result: Duplicate entry '7' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_admingroups VALUES (8,'Registration Options')]
Result: Duplicate entry '8' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_admingroups VALUES (9,'Layout Options')]
Result: Duplicate entry '9' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_admingroups VALUES (10,'Watermark Options')]
Result: Duplicate entry '10' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_admingroups VALUES (11,'Sidebar Settings')]
Result: Duplicate entry '11' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_admingroups VALUES (12,'Cookie Settings')]
Result: Duplicate entry '12' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_admingroups VALUES (13,'Forum Settings')]
Result: Duplicate entry '13' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_admingroups VALUES (14,'Search Options');]
Result: Duplicate entry '14' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_sortmemb VALUES (2,'Date (newest first)','ORDER BY maxdate DESC')]
Result: Duplicate entry '2' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_sortmemb VALUES (3,'Views (high to low)','ORDER BY tviews DESC')]
Result: Duplicate entry '3' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_sortmemb VALUES (1,'Most Active','ORDER BY maxlast DESC')]
Result: Duplicate entry '1' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_sortmemb VALUES (4,'Alphabetical Order','ORDER BY user ASC')]
Result: Duplicate entry '4' for key 1
Database: scrapsn_photopost
Step 3: MySQL error reported: [INSERT INTO pp_cache VALUES (1,0,null,null,null,null,null,null,null)]
Result: Duplicate entry '1' for key 1
Database: scrapsn_photopost
| |
| |
July 16th, 2007, 10:52 PM
|
#6 (permalink)
| | Photopost Developer Verified Customer
Join Date: Jun 2002 Location: Abingdon,MD
Posts: 66,806
|
Your fine thats just telling you alot of the stuff already exists since you have ran it before go through all the install steps |
| |
July 17th, 2007, 10:01 AM
|
#7 (permalink)
| | Member
Join Date: Jul 2007 Location: Ohio
Posts: 34
|
Okay!
|
| |
July 17th, 2007, 10:19 AM
|
#8 (permalink)
| | Photopost Developer Verified Customer
Join Date: Jun 2002 Location: Abingdon,MD
Posts: 66,806
|
Not a problem let us know if you need anymore assistance.
|
| |
July 17th, 2007, 10:27 AM
|
#9 (permalink)
| | Member
Join Date: Jul 2007 Location: Ohio
Posts: 34
|
Ok I got back to step 4 without all the errors I showed you yesterday but not have only this Quote:
Error: Are you certain that your database prefix is set properly?
I cannot see your phpBB2 "scrapsn_groups" table.
The prefix setting adds characters to the front of phpBB2 table names - please doublecheck this.
| |
| |
July 17th, 2007, 10:47 AM
|
#10 (permalink)
| | Photopost Developer Verified Customer
Join Date: Jun 2002 Location: Abingdon,MD
Posts: 66,806
|
Well make sure as I posted your database settings are correct in the config and on step 4 you enter the correct table prefix for phpbb there. You sure it is that and not phpbb_ check your config file for phpbb
|
| |
July 17th, 2007, 11:01 AM
|
#11 (permalink)
| | Member
Join Date: Jul 2007 Location: Ohio
Posts: 34
|
My forum database name is scrapsn_phpb1 so the prefeix in the config is right.
|
| |
July 17th, 2007, 11:13 AM
|
#12 (permalink)
| | Photopost Developer Verified Customer
Join Date: Jun 2002 Location: Abingdon,MD
Posts: 66,806
|
No it is not. Your database name is scrapsn_phpb1 sure but thats not your mysql table prefix for the forum or has anything to do with it. I bet if you look at your phpbb config file your table prefix is phpbb_
Why not humour me here and try it
|
| |
July 17th, 2007, 11:34 AM
|
#13 (permalink)
| | Member
Join Date: Jul 2007 Location: Ohio
Posts: 34
|
Sorry but Im confused. If you scroll down to the post I made yesterday at 08:53 PM that is exactly what I have in my config file. Should where I have scrapsn_photopost be scrapsn_phpb1 ? that's the name of my forums database.
|
| |
July 17th, 2007, 11:41 AM
|
#14 (permalink)
| | Member
Join Date: Jul 2007 Location: Ohio
Posts: 34
|
Ok I humored you... Im in step 5. Still made no sense that that was my prefix but whatever works. lol
Im sure I'll be back though. |
| |
July 17th, 2007, 11:44 AM
|
#15 (permalink)
| | Member
Join Date: Jul 2007 Location: Ohio
Posts: 34
|
Ok last questions on this installation topic and then we'll see how it goes. It installed and took me to the admin index to log in. I never entered a UN and PW anywhere.... is this the un and pw Photo Post gave me when I purchased it??
|
| |
July 17th, 2007, 12:28 PM
|
#16 (permalink)
| | Member
Join Date: Jul 2007 Location: Ohio
Posts: 34
|
Ok Im in. Just need to figure this out. Thanks for all your help. I can guarantee I'll be back! |
| |
July 17th, 2007, 02:50 PM
|
#17 (permalink)
| | Photopost Developer Verified Customer
Join Date: Jun 2002 Location: Abingdon,MD
Posts: 66,806
|
You login with your forum username and make sure to set permissions as you want them in edit usergroups |
| | |
Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | | | | Thread Tools | | | | Display Modes | Rate This Thread | Linear Mode | |
Posting Rules
| You may not post new threads You may not post replies You may not post attachments You may not edit your posts HTML code is Off | | | All times are GMT -5. The time now is 03:40 PM. | |