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 02-02-2018, 12:50 PM
goofyunicorn's Avatar
goofyunicorn goofyunicorn is offline
Kelpie
 
Join Date: Feb 2018
Location: Unicorn Land
Posts: 101
Gender: Female
Credits: 12,661
goofyunicorn is on a distinguished road
Default

Quote:
Originally Posted by Dinocanid View Post
I think it might be fixed with this: http://mysidiaadoptables.com/forum/s...ead.php?t=4763
I tried it but I must be doing it wrong. Do you have any knowledge of coding? If so, on the yoursitename part, do I put the database user or site url?
Reply With Quote
  #12  
Old 02-02-2018, 01:11 PM
Dinocanid's Avatar
Dinocanid Dinocanid is offline
Member
 
Join Date: Aug 2016
Location: Maryland, USA
Posts: 516
Gender: Unknown/Other
Credits: 63,599
Dinocanid is on a distinguished road
Default

Quote:
Originally Posted by goofyunicorn View Post
I tried it but I must be doing it wrong. Do you have any knowledge of coding? If so, on the yoursitename part, do I put the database user or site url?
Yeah, I'm a coder. For yoursitename, you don't do either (the name is misleading, i know). On the left side of cPanel's file manager, you should see a path thing with a home icon followed by the path of whatever folder you're viewing. You should put what it says between the home and public_html there. So it should actually be "home/foldername/public_html".
I can provide a screenshot if I need to, since I might not have worded that in the best way.
__________________
Reply With Quote
  #13  
Old 02-02-2018, 01:14 PM
goofyunicorn's Avatar
goofyunicorn goofyunicorn is offline
Kelpie
 
Join Date: Feb 2018
Location: Unicorn Land
Posts: 101
Gender: Female
Credits: 12,661
goofyunicorn is on a distinguished road
Default

Quote:
Originally Posted by Dinocanid View Post
Yeah, I'm a coder. For yoursitename, you don't do either (the name is misleading, i know). On the left side of cPanel's file manager, you should see a path thing with a home icon followed by the path of whatever folder you're viewing. You should put what it says between the home and public_html there. So it should actually be "home/foldername/public_html".
I can provide a screenshot if I need to, since I might not have worded that in the best way.
May I have a screenshot please? :) Thank you for all the help
Reply With Quote
  #14  
Old 02-02-2018, 01:55 PM
Dinocanid's Avatar
Dinocanid Dinocanid is offline
Member
 
Join Date: Aug 2016
Location: Maryland, USA
Posts: 516
Gender: Unknown/Other
Credits: 63,599
Dinocanid is on a distinguished road
Default

Quote:
Originally Posted by goofyunicorn View Post
May I have a screenshot please? :) Thank you for all the help
I was on mobile at the time of my last comment, and the full path isn't clear from the file manager, sorry ^^;
It can be found under the statstics section of cPanel though:

Where it says "home directory", that's what you should use. So for example, mine would say "/home/foodbabs/public_html/". If the script is in a subfolder, then it would be "/home/name/public_html/subfolder_name".
__________________
Reply With Quote
  #15  
Old 02-02-2018, 02:02 PM
goofyunicorn's Avatar
goofyunicorn goofyunicorn is offline
Kelpie
 
Join Date: Feb 2018
Location: Unicorn Land
Posts: 101
Gender: Female
Credits: 12,661
goofyunicorn is on a distinguished road
Default

Quote:
Originally Posted by Dinocanid View Post
I was on mobile at the time of my last comment, and the full path isn't clear from the file manager, sorry ^^;
It can be found under the statstics section of cPanel though:

Where it says "home directory", that's what you should use. So for example, mine would say "/home/foodbabs/public_html/". If the script is in a subfolder, then it would be "/home/name/public_html/subfolder_name".
Ugh... I did exactly what you said, all info correct. It still doesn't work... ;-;
Reply With Quote
  #16  
Old 02-02-2018, 02:17 PM
Dinocanid's Avatar
Dinocanid Dinocanid is offline
Member
 
Join Date: Aug 2016
Location: Maryland, USA
Posts: 516
Gender: Unknown/Other
Credits: 63,599
Dinocanid is on a distinguished road
Default

Quote:
Originally Posted by goofyunicorn View Post
Ugh... I did exactly what you said, all info correct. It still doesn't work... ;-;
Hmm. If you go to public_html/inc/config.php, does it say anything next to "SCRIPTPATH"? It should look like this:
PHP Code:
define('SCRIPTPATH''');     //The folder you installed this script in 
Assuming there isn't a subfolder involved.
__________________
Reply With Quote
  #17  
Old 02-02-2018, 02:19 PM
goofyunicorn's Avatar
goofyunicorn goofyunicorn is offline
Kelpie
 
Join Date: Feb 2018
Location: Unicorn Land
Posts: 101
Gender: Female
Credits: 12,661
goofyunicorn is on a distinguished road
Default

Quote:
Originally Posted by Dinocanid View Post
Hmm. If you go to public_html/inc/config.php, does it say anything next to "SCRIPTPATH"? It should look like this:
PHP Code:
define('SCRIPTPATH''');     //The folder you installed this script in 
Assuming there isn't a subfolder involved.

Yes it does say that :)
Reply With Quote
  #18  
Old 02-02-2018, 02:32 PM
Dinocanid's Avatar
Dinocanid Dinocanid is offline
Member
 
Join Date: Aug 2016
Location: Maryland, USA
Posts: 516
Gender: Unknown/Other
Credits: 63,599
Dinocanid is on a distinguished road
Default

Quote:
Originally Posted by goofyunicorn View Post
Yes it does say that :)
This is really weird then. I read that it could be related to not having an htaccess file. You can check if it's there by enabling "show hidden files" under the file manager settings. If one is there, try enabling error reporting by adding this at the bottom:
PHP Code:
php_value error_reporting 1 
It might show a more specific error that's easier to figure out, instead of the mysterious 500 error.

I'd really like to figure out what causes this, since I'm using x10 for my site and I haven't run into this error.
__________________
Reply With Quote
  #19  
Old 02-02-2018, 02:37 PM
goofyunicorn's Avatar
goofyunicorn goofyunicorn is offline
Kelpie
 
Join Date: Feb 2018
Location: Unicorn Land
Posts: 101
Gender: Female
Credits: 12,661
goofyunicorn is on a distinguished road
Default

Quote:
Originally Posted by Dinocanid View Post
This is really weird then. I read that it could be related to not having an htaccess file. You can check if it's there by enabling "show hidden files" under the file manager settings. If one is there, try enabling error reporting by adding this at the bottom:
PHP Code:
php_value error_reporting 1 
It might show a more specific error that's easier to figure out, instead of the mysterious 500 error.

I'd really like to figure out what causes this, since I'm using x10 for my site and I haven't run into this error.
I have done the show hidden files and can't find a htacess file. Where could I find it?
Reply With Quote
  #20  
Old 02-02-2018, 02:41 PM
Dinocanid's Avatar
Dinocanid Dinocanid is offline
Member
 
Join Date: Aug 2016
Location: Maryland, USA
Posts: 516
Gender: Unknown/Other
Credits: 63,599
Dinocanid is on a distinguished road
Default

Quote:
Originally Posted by goofyunicorn View Post
I have done the show hidden files and can't find a htacess file. Where could I find it?
It should be located under public html. It's listed underneath the folders but above the php files:

(you won't have all of these exact files and folders, since they're mostly custom, but you get the idea)
If it isn't there, then you should be able to make one by creating a new file called ".htaccess" and add this inside of it:
PHP Code:
RewriteEngine On
RewriteCond 
%{REQUEST_FILENAME} !-f
RewriteCond 
%{REQUEST_FILENAME} !-d
#RewriteCond %{HTTP_HOST} ^www\.(.*) [NC]
#RewriteRule ^ http://%1%{REQUEST_URI} [L,R=301]
RewriteCond %{REQUEST_URI} !\.(js|css|gif|jpg|png|ico)$ [NC]
RewriteRule ^(.*)$ index.php [QSA,L]
RewriteRule ^get/([0-9]+).gif$ /click/siggy/$[L]
php_value error_reporting 1 
Or at least, I think you can make your own. I'm not sure if cPanel prevents this or not. If it doesn't let you make one, then you should be able to make one with notepad++ or something and uploading it.
__________________

Last edited by Dinocanid; 02-02-2018 at 02:46 PM.
Reply With Quote
Reply

Tags
help!

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


All times are GMT -5. The time now is 05:19 AM.

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