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
  #11  
Old 12-29-2014, 10:19 PM
MeinKat's Avatar
MeinKat MeinKat is offline
Candy King
 
Join Date: Dec 2014
Location: Mars.
Posts: 15
Gender: Female
Credits: 2,565
MeinKat is on a distinguished road
Default


Kyttias-
What does going offline do, and how do I get there? o3o
Does going offline affect anything? (I've been using localhost myself)

I will definitely, definitely look into getting MAMP/XAMPP/WAMP. As of now though, I'm just trying to get a basic website up.

I have tried port-forwarding in Minecraft, but I'd figured there were too many risks with hackers involved/loophole in the system/etc.

I will keep all of that in mind before using a paid host, and them owning my domain name doesn't sound appealing in the least.

IntoRain
Yep, I went through the installation process.

------

Thank you everyone who helped, but seeing that the script wasn't working, I decided to use another one. I have a few remaining questions however- if I give credit to Mysidia Adoptables, may I use bits and bobs of the script on my website? And, may I continue to get help here, or is it only for the Mysidian community? Thanks again

Until there is a solution, I will use the script I have now. If I find/someone finds a fix for the problem, I will try using Mysidia again

Reply With Quote
  #12  
Old 12-29-2014, 10:50 PM
IntoRain's Avatar
IntoRain IntoRain is offline
Moderator
 
Join Date: Jul 2013
Location: Portugal
Posts: 461
Gender: Female
Credits: 19,257
IntoRain is on a distinguished road
Default

Quote:
Originally Posted by MeinKat View Post

Kyttias-
What does going offline do, and how do I get there? o3o
Does going offline affect anything? (I've been using localhost myself)

I will definitely, definitely look into getting MAMP/XAMPP/WAMP. As of now though, I'm just trying to get a basic website up.

I have tried port-forwarding in Minecraft, but I'd figured there were too many risks with hackers involved/loophole in the system/etc.

I will keep all of that in mind before using a paid host, and them owning my domain name doesn't sound appealing in the least.

IntoRain
Yep, I went through the installation process.

With the tools Kyttias presented (WAMP/XAMPP...) you can try out websites without having them on the internet. It's useful for local development, instead of doing the changes on the live website. To 'go offline' you just need to install and run one of those tools (my favorite is WAMP, it's easier to use). Then you just need to put the files in a specific folder in your computer and type "localhost" in the address bar to see it.

If you modify your settings to use the same php/apache versions as the live server, it shouldn't have any differences.


Quote:
And, may I continue to get help here, or is it only for the Mysidian community? Thanks again
Well, the forum is more Mysidia-oriented, so it's more complicated to get answers for other frameworks. You can set up a thread in here for non-mysidia websites ^^ I can always try to help, but if I don't have the framework set up to test, it might be not be as accurate
__________________


asp.net stole my soul.
Reply With Quote
  #13  
Old 12-30-2014, 08:12 PM
MeinKat's Avatar
MeinKat MeinKat is offline
Candy King
 
Join Date: Dec 2014
Location: Mars.
Posts: 15
Gender: Female
Credits: 2,565
MeinKat is on a distinguished road
Default

ohmygoodnessohmygoodnessohmygoodness

I fixed it!! Well, sort of. The index.php is the only page that'll show up, the rest are either Error 404's or blank.

When I click login, the URL will show mysite.com/login instead of mysite.com/login.php, thus resulting in the Error 404, and then when I manually type in /login.php, it'll show up blank.

I'll see if I can fix that myself, but help would be great!
However, I'm glad to see the front page working :DDD


Here is my website using the Mysidia script:
Kyandii

And here is the other one using code I found off of the internet, there's so many errors though:
Kyandii World


Reply With Quote
  #14  
Old 12-30-2014, 08:37 PM
IntoRain's Avatar
IntoRain IntoRain is offline
Moderator
 
Join Date: Jul 2013
Location: Portugal
Posts: 461
Gender: Female
Credits: 19,257
IntoRain is on a distinguished road
Default

Quote:
Originally Posted by MeinKat View Post
ohmygoodnessohmygoodnessohmygoodness

I fixed it!! Well, sort of. The index.php is the only page that'll show up, the rest are either Error 404's or blank.

When I click login, the URL will show mysite.com/login instead of mysite.com/login.php, thus resulting in the Error 404, and then when I manually type in /login.php, it'll show up blank.

I'll see if I can fix that myself, but help would be great!
However, I'm glad to see the front page working :DDD


Here is my website using the Mysidia script:
Kyandii

And here is the other one using code I found off of the internet, there's so many errors though:
Kyandii World


The pages are supposed to be without the .php. It might be an error with your configurations, maybe you put the wrong folder mysidia is in? Check your config.php
__________________


asp.net stole my soul.
Reply With Quote
  #15  
Old 12-30-2014, 08:53 PM
MeinKat's Avatar
MeinKat MeinKat is offline
Candy King
 
Join Date: Dec 2014
Location: Mars.
Posts: 15
Gender: Female
Credits: 2,565
MeinKat is on a distinguished road
Default

I checked it, it's all correct
I tried changing the scriptpath to home/kyandii/public_html, but it doesn't change anything. Is that correct?
Reply With Quote
  #16  
Old 12-30-2014, 09:35 PM
IntoRain's Avatar
IntoRain IntoRain is offline
Moderator
 
Join Date: Jul 2013
Location: Portugal
Posts: 461
Gender: Female
Credits: 19,257
IntoRain is on a distinguished road
Default

Quote:
Originally Posted by MeinKat View Post
I checked it, it's all correct
I tried changing the scriptpath to home/kyandii/public_html, but it doesn't change anything. Is that correct?
If your index.php file is inside the folder public_html folder, your scriptpath in config.php should be like

PHP Code:
define('SCRIPTPATH'''); 
If it's inside a folder like home/kyandii/public_html/adoptables/index.php, it should be like:

PHP Code:
define('SCRIPTPATH''/adoptables'); 
__________________


asp.net stole my soul.
Reply With Quote
  #17  
Old 12-30-2014, 09:38 PM
MeinKat's Avatar
MeinKat MeinKat is offline
Candy King
 
Join Date: Dec 2014
Location: Mars.
Posts: 15
Gender: Female
Credits: 2,565
MeinKat is on a distinguished road
Default

Quote:
Originally Posted by IntoRain View Post
If your index.php file is inside the folder public_html folder, your scriptpath in config.php should be like

PHP Code:
define('SCRIPTPATH'''); 
If it's inside a folder like home/kyandii/public_html/adoptables/index.php, it should be like:

PHP Code:
define('SCRIPTPATH''/adoptables'); 
It is in the public_html folder and looks like the first one.
Reply With Quote
  #18  
Old 12-30-2014, 10:11 PM
MeinKat's Avatar
MeinKat MeinKat is offline
Candy King
 
Join Date: Dec 2014
Location: Mars.
Posts: 15
Gender: Female
Credits: 2,565
MeinKat is on a distinguished road
Default


The index page shows up with the .php extension. When I type in kyandii.pcriot.com/index, I get an Error 404.

Is there a way to change it so that the .php shows up in the URL?

edit;; I've been at it for a while, anyone got any ideas?


Last edited by MeinKat; 12-31-2014 at 10:02 PM. Reason: can't find a fix
Reply With Quote
  #19  
Old 01-16-2015, 11:16 PM
Kyttias's Avatar
Kyttias Kyttias is offline
Premium Member
 
Join Date: Jan 2014
Posts: 857
Gender: Unknown/Other
Credits: 86,965
Kyttias is on a distinguished road
Default

I've got the same problem on another host (since I'm attempting to check out various hosting). My root site does not work (address.com, for example) but adding /index.php is the only way to get it to work. Not even a /index works, it must have the file extension. I can't log in, of course, because it's trying to go to a page without a file extension, thus I get a 500 Internal Server Error (same as I get when I try to visit the index without the file extension).

And yes, the .htaccess was uploaded.

My guess is that mod_rewrite is disabled... though the tech support insists that is on.
__________________
Please do not contact me directly outside of Mysidia.
I also cannot troubleshoot code more than two years old - I legit don't remember it.

Last edited by Kyttias; 01-16-2015 at 11:40 PM.
Reply With Quote
  #20  
Old 01-17-2015, 12:15 AM
MeinKat's Avatar
MeinKat MeinKat is offline
Candy King
 
Join Date: Dec 2014
Location: Mars.
Posts: 15
Gender: Female
Credits: 2,565
MeinKat is on a distinguished road
Default

Quote:
Originally Posted by Kyttias View Post
I've got the same problem on another host (since I'm attempting to check out various hosting). My root site does not work (address.com, for example) but adding /index.php is the only way to get it to work. Not even a /index works, it must have the file extension. I can't log in, of course, because it's trying to go to a page without a file extension, thus I get a 500 Internal Server Error (same as I get when I try to visit the index without the file extension).

And yes, the .htaccess was uploaded.

My guess is that mod_rewrite is disabled... though the tech support insists that is on.


My root site still works, though. I tried another reinstall on my second account, and to no avail. I messed around with it, but ended up deleting the entire thing since it did not work :p
Reply With Quote
Reply

Tags
blank, database, error, mysql

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
Blank profile page? gloryKAT Questions and Supports 3 02-08-2015 04:53 PM
Blank Inventory Page ilrak Questions and Supports 5 09-23-2014 09:03 PM
Blank Page Samuel hunter Questions and Supports 8 01-01-2013 04:08 PM
Need help with MySQL Database MirandaLK Questions and Supports 13 07-29-2010 09:01 PM
Blank page LilPixie Questions and Supports 2 02-20-2009 09:59 PM


All times are GMT -5. The time now is 12:31 PM.

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