Mysidia Adoptables Support Forum  

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

Notices

Closed Thread
 
Thread Tools Display Modes
  #181  
Old 12-14-2013, 06:06 PM
AlexC's Avatar
AlexC AlexC is offline
Moderator
 
Join Date: Dec 2009
Location: Canada
Posts: 753
Gender: Unknown/Other
Credits: 66,333
AlexC is an unknown quantity at this point
Default

Quote:
Originally Posted by IntoRain View Post
It's "File Transfering Protocol". Just like HTTP is "Hypertext Transfer Protocol". Web is all protocol based, so every "TP" is most likely a transfer protocol
Ah, that sounds more right. xD I have such trouble with abrivations.
__________________
  #182  
Old 04-09-2014, 08:05 PM
gloryKAT's Avatar
gloryKAT gloryKAT is offline
Pikachu.
 
Join Date: Jun 2013
Posts: 81
Gender: Female
Credits: 8,424
gloryKAT is on a distinguished road
Default

I probably asked this before, but:

I have this error:

Could not connect to database, the following error has occurred:
SQLSTATE[HY000] [1045] Access denied for user 'glorykat'@'localhost' (using password: YES)

How do I solve this?
__________________
Dragons of the Dawn Roleplay
  #183  
Old 04-09-2014, 09:29 PM
Kyttias's Avatar
Kyttias Kyttias is offline
Premium Member
 
Join Date: Jan 2014
Posts: 857
Gender: Unknown/Other
Credits: 86,954
Kyttias is on a distinguished road
Default

Quote:
Originally Posted by gloryKAT View Post
I probably asked this before, but:

I have this error:

Could not connect to database, the following error has occurred:
SQLSTATE[HY000] [1045] Access denied for user 'glorykat'@'localhost' (using password: YES)

How do I solve this?
This sort of error can plague any user working with any framework setup that connects to MySQL, because the problem here lies with the username/password you're trying to connect to the database with. I personally can't advise much beyond triple checking your configuration for Mysidia to make sure it is trying to use the correct details, checking your MySQL through PHPMyAdmin to make sure that you can indeed log in with that same username/password combination, and then checking your permissions for that user - to make sure the user has access to all the functions of the database.

After browsing around the web trying to find some help for troubleshooting, all I found was the following vague gems:
  • Sometimes you have to use localhost not 127.0.0.1 for this to work.
  • Is the password in quotes?
  • This might be worth a read since you're on localhost (presumably through WAMP or similar). But it may be rather very irrelevant to this situation.

And whether you attempt this first or last, you can always try creating a new user in PHPMyAdmin, just to make sure you did it properly the first time.
  #184  
Old 04-09-2014, 09:32 PM
tahbikat's Avatar
tahbikat tahbikat is offline
Member
 
Join Date: Feb 2014
Location: Louisiana
Posts: 408
Gender: Female
Credits: 48,904
tahbikat is on a distinguished road
Default

Do you get this when logging in? I had the exact same issue. You need to make sure your database info for the site and forums are correct and match.

View this thread to see how to -hopefully- solve this issue: http://www.mysidiaadoptables.com/for...ead.php?t=4396
  #185  
Old 04-10-2014, 10:15 AM
gloryKAT's Avatar
gloryKAT gloryKAT is offline
Pikachu.
 
Join Date: Jun 2013
Posts: 81
Gender: Female
Credits: 8,424
gloryKAT is on a distinguished road
Wink

Thanks :3

I put in the wrong database password, so I couldn't get in.
__________________
Dragons of the Dawn Roleplay
  #186  
Old 04-10-2014, 05:06 PM
gloryKAT's Avatar
gloryKAT gloryKAT is offline
Pikachu.
 
Join Date: Jun 2013
Posts: 81
Gender: Female
Credits: 8,424
gloryKAT is on a distinguished road
Default

another problem:


Warning: require(/home/foxmerev/public_html/inc/smarty/Smarty.class.php): failed to open stream: No such file or directory in /home/foxmerev/public_html/classes/class_mysidia.php on line 326

Fatal error: require(): Failed opening required '/home/foxmerev/public_html/inc/smarty/Smarty.class.php' (include_path='.:/usr/lib/php:/usr/local/lib/php') in /home/foxmerev/public_html/classes/class_mysidia.php on line 326
__________________
Dragons of the Dawn Roleplay
  #187  
Old 04-10-2014, 05:58 PM
Kyttias's Avatar
Kyttias Kyttias is offline
Premium Member
 
Join Date: Jan 2014
Posts: 857
Gender: Unknown/Other
Credits: 86,954
Kyttias is on a distinguished road
Default

Quote:
Originally Posted by gloryKAT View Post
another problem:


Warning: require(/home/foxmerev/public_html/inc/smarty/Smarty.class.php): failed to open stream: No such file or directory in /home/foxmerev/public_html/classes/class_mysidia.php on line 326

Fatal error: require(): Failed opening required '/home/foxmerev/public_html/inc/smarty/Smarty.class.php' (include_path='.:/usr/lib/php:/usr/local/lib/php') in /home/foxmerev/public_html/classes/class_mysidia.php on line 326
What's the directory path in your config file look like?
  #188  
Old 04-10-2014, 05:59 PM
gloryKAT's Avatar
gloryKAT gloryKAT is offline
Pikachu.
 
Join Date: Jun 2013
Posts: 81
Gender: Female
Credits: 8,424
gloryKAT is on a distinguished road
Default

directory path?

how do i figure that out XD

all that's in there is this:

<?php
//Mysidia Adoptables Site Configuration File

define('DBHOST', 'localhost'); //DB Hostname
define('DBUSER', 'foxmerev_gloryka'); //DB Username
define('DBPASS', '***********'); //DB Password
define('DBNAME', 'foxmerev_main'); //Your database name
define('DOMAIN', 'foxmerevale.x10.mx'); //Your domain name (No http, www or . )
define('SCRIPTPATH', ''); //The folder you installed this script in
define('PREFIX', 'adopts_prefix');
?>

went into classes and found this:

}

/**
* The getTemplate method, will be added later once smarty or another template engine such as Twig is implemented.
* @access public
* @return Template
*/
public function getTemplate(){
$templateClass = "inc/smarty/Smarty.class.php";
require $this->path->getRoot().$templateClass;

$this->template = new Template($this->path);
Registry::set(new String("template"), $this->template, TRUE, TRUE);
return $this->template;
}

which appears to be part of my problem because it cant call upon smarty (it's not there)

okay i edited smarty and now this occurs:

Warning: require(/home/foxmerev/public_html/lang/lang_global.php): failed to open stream: No such file or directory in /home/foxmerev/public_html/classes/class_language.php on line 78

Fatal error: require(): Failed opening required '/home/foxmerev/public_html/lang/lang_global.php' (include_path='.:/usr/lib/php:/usr/local/lib/php') in /home/foxmerev/public_html/classes/class_language.php on line 78
__________________
Dragons of the Dawn Roleplay

Last edited by gloryKAT; 04-10-2014 at 06:06 PM.
  #189  
Old 04-10-2014, 07:03 PM
gloryKAT's Avatar
gloryKAT gloryKAT is offline
Pikachu.
 
Join Date: Jun 2013
Posts: 81
Gender: Female
Credits: 8,424
gloryKAT is on a distinguished road
Default

nevermind ^-^ i managed to fix it.
__________________
Dragons of the Dawn Roleplay
  #190  
Old 05-14-2014, 08:38 PM
mattinc mattinc is offline
Member
 
Join Date: May 2014
Posts: 2
Gender: Male
Credits: 77
mattinc is on a distinguished road
Default Fatal Error

I have a fatal error when clicking the - "You will need to log in to your installation of Mysidia Adoptables before you can access the ADMINCP.

This is what I get when I click Log In:

Fatal error: Class 'AppController' not found in /home/a3397944/public_html/login.php on line 3

Everything has been installed .. I'm confused. Help.

.matt
Closed Thread

Thread Tools
Display Modes

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
Help Installing Abronsyth Questions and Supports 2 07-01-2014 09:32 AM
Installing forum Cremuex Levier Questions and Supports 6 06-03-2013 07:59 AM
Installing the Script help? Clessidra Questions and Supports 2 12-07-2012 09:54 PM
Help Installing! Almost done:/ booksbooks098 Questions and Supports 11 11-30-2012 03:19 PM
installing help Aur Questions and Supports 3 11-15-2011 10:57 PM


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

Currently Active Users: 444 (0 members and 444 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