Mysidia Adoptables Support Forum  

Home Community Mys-Script Creative Off-Topic
Go Back   Mysidia Adoptables Support Forum > Mysidia Adoptables > Questions and Supports

Notices

Reply
 
Thread Tools Display Modes
  #1  
Old 03-20-2011, 12:37 PM
blondbananamix blondbananamix is offline
Member
 
Join Date: Jan 2011
Posts: 47
Gender: Female
Credits: 6,159
blondbananamix is on a distinguished road
Default Adding adoptable >.<

I can add an adoptable, but once i click 'create adoptable' it then disappears, and I cant see/adopt it on the adopt page, or add a level as it has 'disappeared from the adoptables drop-down list.'
Help would be great :)
Reply With Quote
  #2  
Old 03-20-2011, 12:47 PM
fadillzzz fadillzzz is offline
Dev Staff
 
Join Date: Jan 2010
Posts: 501
Gender: Male
Credits: 32,862
fadillzzz is an unknown quantity at this point
Default

Open your nadopt.php
Go to line 143 and look for this line of code
PHP Code:
runquery("INSERT INTO ".$prefix."adoptables VALUES ('', '$name', '$description','$eggimage','$cba','$promocode', '$freqcond', '$number','$datecond','$date','$adoptscond','$maxnumcond','$morethannum','$usergroupcond','$usergroups','$alternates','$altoutlevel','$altchance', $cost)"); 
And replace it with
PHP Code:
runquery("INSERT INTO ".$prefix."adoptables VALUES ('', '$name', '$description','$eggimage','$cba','$promocode', '$freqcond', '$number','$datecond','$date','$adoptscond','$maxnumcond','$morethannum','$usergroupcond','$usergroups','$alternates','$altoutlevel','$altchance', '$cost')"); 
Reply With Quote
  #3  
Old 03-20-2011, 12:54 PM
blondbananamix blondbananamix is offline
Member
 
Join Date: Jan 2011
Posts: 47
Gender: Female
Credits: 6,159
blondbananamix is on a distinguished road
Default

I replaced the line like you said, but it still won't work. :/
Reply With Quote
  #4  
Old 03-20-2011, 01:01 PM
fadillzzz fadillzzz is offline
Dev Staff
 
Join Date: Jan 2010
Posts: 501
Gender: Male
Credits: 32,862
fadillzzz is an unknown quantity at this point
Default

You sure about that?
post your nadopt.php and screenshot of your adopts_adoptables (structure) table here.
Reply With Quote
  #5  
Old 03-20-2011, 01:07 PM
blondbananamix blondbananamix is offline
Member
 
Join Date: Jan 2011
Posts: 47
Gender: Female
Credits: 6,159
blondbananamix is on a distinguished road
Default

Code:
<?php

include("inc/functions.php");
$admin = true;

//***************//
//  START SCRIPT //
//***************//

if($isloggedin == "yes"){

$group = getgroup();
$cancp = cancp($group);
$canedit = cando($group, "canmanageadopts");

if($cancp == "yes" and $canedit == "yes"){

// We are logged in and can access this page, so let's get the post info...
$name = $_POST["name"];
$description = $_POST["description"];
$cost = $_POST['cost'];
$imageurl = $_POST["imageurl"];
$existingimageurl = $_POST["existingimageurl"];
$cba = $_POST["cba"];
$promocode = $_POST["promocode"];
$freqcond = $_POST["freqcond"];
$number = $_POST["number"];
$datecond = $_POST["datecond"];
$date = $_POST["date"];
$adoptscond = $_POST["adoptscond"];
//////////////////////////////////////////////////////////////////////
$maxnumcond = $_POST["maxnumcond"];
$morethannum = $_POST["morethannum"];
$usergroupcond = $_POST["usergroupcond"];
$usergroups = $_POST["usergroups"];
//////////////////////////////////////////////////////////////////////
$alternates = $_POST["alternates"];
$altoutlevel = $_POST["altoutlevel"];
$altchance = $_POST["altchance"];

// Now we run some checks to make sure that we have a go.

$error = ""; 

if($name == ""){
$error = "You did not enter in a name for the adoptable.  Please go back and try again.";
}

if($name == ""){
$error = "You did not enter in a name for the adoptable.  Please go back and try again.";
}

if($imageurl == "" and $existingimageurl == "none"){
$error = "You did not select an image for this adoptable.  Please go back and make sure an image is selected for this adopt.";
}

if($imageurl != "" and $existingimageurl != "none"){
$error = "You selected two images for the adoptable's egg image.  Please go back and make sure that either the image textbox is blank or the image dropdown box is set to No Exising Image.";
}

if($cba != "always" and $cba != "promo" and $cba != "conditions"){
$error = "You did not choose a valid scenario when this adoptable can be adopted.  Please go back and either select the Always option, the Promo option or the Conditions option.";
}

//If we are using a promo code, we should have a promo code in the box...
if($cba == "promo" and $promocode == ""){
$error = "You selected that this adoptable is available for adoption only with a promo code, but you did not enter in a promo code.  Please go back and either change this setting or type in a valid promo code.";
}

//If we are using conditions...

if($cba == "conditions"){

	if($freqcond == "enabled" and !is_numeric($number)){
	$error = "A condition is enabled but is blank or has an incorrect value.  Please go back and double check your conditions and that they contain valid input.";
	}

	if($datecond == "enabled" and $date == ""){
	$error = "A condition is enabled but is blank or has an incorrect value.  Please go back and double check your conditions and that they contain valid input.";
	}

	if($adoptscond == "enabled"){
	
		if($moreless == "" or !is_numeric($morelessnum) or $levelgrle == "" or !is_numeric($grlelevel)){
		$error = "A condition is enabled but is blank or has an incorrect value.  Please go back and double check your conditions and that they contain valid input.";
		}
	}

	if($maxnumcond == "enabled" and !is_numeric($morethannum)){

	$error = "A condition is enabled but is blank or has an incorrect value.  Please go back and double check your conditions and that they contain valid input.";

	}

	if($usergroupcond == "enabled" and !is_numeric($usergroups)){

	$error = "A condition is enabled but is blank or has an incorrect value.  Please go back and double check your conditions and that they contain valid input.";

	}


}

if($alternates == "enabled"){

		if(!is_numeric($altoutlevel) or !is_numeric($altchance)){
		$error = "There has been an error with the adoptable's alternate settings you selected.  Please go back and make sure the alternate values are filled in correctly.";
		}

}

//Check and see if an adoptable with this name already exists...

$query = "SELECT * FROM ".$prefix."adoptables WHERE type = '$name'";
$result = runquery($query);
$num = mysql_numrows($result);

if($num > 0){
$error = "An adoptable with this name already exists in your database.  Please go back and rename the adoptable to something different.";
}

//If we have an error, show it.  Otherwise continue...

if($error != ""){
$article_title = "An Error Has Occurred!";
$article_content = $error;
}
else{

//There has been no error, continue with the addition of the adoptable to the system...

//First determine which image URL to use...

$eggimage = "";

if($imageurl != "" and $existingimageurl == "none"){
$eggimage = $imageurl;
}
else{
$eggimage = $existingimageurl;
}

runquery("INSERT INTO ".$prefix."adoptables VALUES ('', '$name', '$description','$eggimage','$cba','$promocode', '$freqcond', '$number','$datecond','$date','$adoptscond','$maxnumcond','$morethannum','$usergroupcond','$usergroups','$alternates','$altoutlevel','$altchance', '$cost')");
// insert our level thing
runquery("INSERT INTO ".$prefix."levels VALUES ('$name', '0', '0', '$eggimage','','','')");

$article_title = "Adoptable Added Successfully";
$article_content = "Your adoptable, ".$name.", has been added to the database successfully.  You can now <a href='admin.php?set=adopts&do=addlevel'>Add a Level</a> to this adoptable.  You can also <a href='admin.php'>go back to the Admin CP index page</a>.";

}


} //This bracket ends the check of whether or not this user can access the adopts portion of the ACP


}



else{

$article_title = "Access Denied";
$article_content = "Access Denied";

}

//***************//
//  OUTPUT PAGE  //
//***************//

echo showpage($article_title, $article_content, $date);

?>
What is the adopts_adoptables structure?
Reply With Quote
  #6  
Old 03-20-2011, 01:13 PM
fadillzzz fadillzzz is offline
Dev Staff
 
Join Date: Jan 2010
Posts: 501
Gender: Male
Credits: 32,862
fadillzzz is an unknown quantity at this point
Default

The table structure.
Go into phpMyAdmin, select your database, and then select the table adopts_adoptables. It could be somethingelse_adoptables, depends on what your table prefix is.
Anyway, open the adopts_adoptables table and click structure or just post the screenshot of the table content.
Reply With Quote
  #7  
Old 03-20-2011, 01:13 PM
Hall of Famer's Avatar
Hall of Famer Hall of Famer is offline
Administrator, Lead Coder
 
Join Date: Dec 2008
Location: South Brunswick
Posts: 4,448
Gender: Male
Credits: 333,797
Hall of Famer is on a distinguished road
Default

Whats the database structure of your table prefix_adoptables? Such errors usually arise from a mismatch of Mysql table structure and PHP runquery codes.
__________________


Mysidia Adoptables, a free and ever-improving script for aspiring adoptables/pets site.
Reply With Quote
  #8  
Old 03-20-2011, 01:17 PM
blondbananamix blondbananamix is offline
Member
 
Join Date: Jan 2011
Posts: 47
Gender: Female
Credits: 6,159
blondbananamix is on a distinguished road
Default

http://www.iaza.com/work/110321C/iaza12645872669500.png
there you go :3
Reply With Quote
  #9  
Old 03-20-2011, 01:23 PM
Hall of Famer's Avatar
Hall of Famer Hall of Famer is offline
Administrator, Lead Coder
 
Join Date: Dec 2008
Location: South Brunswick
Posts: 4,448
Gender: Male
Credits: 333,797
Hall of Famer is on a distinguished road
Default

I see what problem you got. You were running Mys v1.1.4 before, werent you? To fix it, drop the two table columns pricestatus and pricevalue, while add a new column called cost whose type is int(11).

I am sorry but an upgrader is not available at this moment and might be tedious to do it manually. You may run into lots of problems like this one you just had before if you are using Mys v1.1.4's database.
__________________


Mysidia Adoptables, a free and ever-improving script for aspiring adoptables/pets site.
Reply With Quote
  #10  
Old 03-20-2011, 01:34 PM
blondbananamix blondbananamix is offline
Member
 
Join Date: Jan 2011
Posts: 47
Gender: Female
Credits: 6,159
blondbananamix is on a distinguished road
Default

Do you think it would be better if i make a new mysql database, and deleted and re-installed the new version?
Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Adding a Theme PokeFerno Questions and Supports 3 05-13-2014 03:47 PM
Adding a link back to an adoptable's stats Hwona Questions and Supports 11 07-20-2013 03:40 PM
Adding Databases Kesstryl Questions and Supports 4 06-08-2012 06:47 AM
Adding Picture SJC Questions and Supports 3 05-19-2009 12:24 AM
Adding levels lady jive Questions and Supports 3 03-29-2009 06:18 AM


All times are GMT -5. The time now is 09:10 AM.

Currently Active Users: 9665 (0 members and 9665 guests)
Threads: 4,080, Posts: 32,024, Members: 2,016
Welcome to our newest members, jolob.
BETA





What's New?

What's Hot?

What's Popular?


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2024, vBulletin Solutions Inc.
vBCommerce I v2.0.0 Gold ©2010, PixelFX Studios
vBCredits I v2.0.0 Gold ©2010, PixelFX Studios
Emoticons by darkmoon3636