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
  #21  
Old 09-17-2012, 01:12 AM
Ashe's Avatar
Ashe Ashe is offline
Member
 
Join Date: Sep 2012
Posts: 32
Gender: Female
Credits: 3,742
Ashe is on a distinguished road
Default

yah ty for your help! I don't know if my host knows more about it but I hope he does. This script was perfect for what I wanted to do. Would suck if it ends up I cant use it :(
Reply With Quote
  #22  
Old 09-17-2012, 01:16 AM
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: 327,753
Hall of Famer is on a distinguished road
Default

Well I dont think it will be as bad as you won't be able to use it, but you won't benefit from certain features such as bbcode if your php.ini settings ain't working out properly.
__________________


Mysidia Adoptables, a free and ever-improving script for aspiring adoptables/pets site.
Reply With Quote
  #23  
Old 09-17-2012, 11:22 AM
Ashe's Avatar
Ashe Ashe is offline
Member
 
Join Date: Sep 2012
Posts: 32
Gender: Female
Credits: 3,742
Ashe is on a distinguished road
Default

http://www.surmunity.com/showthread....ighlight=fopen

My host showed me this. It seems they disabled allow_url_fopen for everyone. My host is suggesting I instal cURL to bypass it but I have no idea how >.<
Reply With Quote
  #24  
Old 09-17-2012, 11:27 AM
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: 327,753
Hall of Famer is on a distinguished road
Default

Wow this is so unexpected. I personally dont really know what Curl is, not sure how much I can help you. Can your host provide scripting support for customers? If not, I will see if I can get an answer from a few PHP programmer communities that I've registered on.
__________________


Mysidia Adoptables, a free and ever-improving script for aspiring adoptables/pets site.
Reply With Quote
  #25  
Old 09-17-2012, 11:53 AM
Ashe's Avatar
Ashe Ashe is offline
Member
 
Join Date: Sep 2012
Posts: 32
Gender: Female
Credits: 3,742
Ashe is on a distinguished road
Default

Nah there's no support for it. >.<
Reply With Quote
  #26  
Old 09-17-2012, 03:27 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: 327,753
Hall of Famer is on a distinguished road
Default

I see, I will try to help you by asking on the php coders community. Hopefully someone will come out with a solution to your problem. If it turns out that curl functions are better alternative than allow_url_fopen, we may be switching to use curl functions for the next releases.
__________________


Mysidia Adoptables, a free and ever-improving script for aspiring adoptables/pets site.
Reply With Quote
  #27  
Old 09-17-2012, 04:19 PM
Ashe's Avatar
Ashe Ashe is offline
Member
 
Join Date: Sep 2012
Posts: 32
Gender: Female
Credits: 3,742
Ashe is on a distinguished road
Default

Alright, thanks a bunch. Let me know if you guys learn anything more on the matter ^^
Reply With Quote
  #28  
Old 09-17-2012, 08:57 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: 327,753
Hall of Famer is on a distinguished road
Default

Well I am not sure if this will work, but let's give it a try. Open your siggy.php file and find the following lines:

PHP Code:
header ($contentType); 
$status readfile($image); 
if(
$status == "" or $status == "false" or $status == "FALSE"){ 
    
// Reading the file failed, so show an error...      
    
header ("text/plain"); 
    die(
"Readfile appears to be disabled on your host."); 

Replace by:

PHP Code:
header ($contentType); 
$ch curl_init();
curl_setopt($chCURLOPT_URL$image);
curl_setopt($chCURLOPT_HEADER0);
curl_exec($ch);
curl_close($ch); 
Incase you get an error message, please report to me so I can troubleshoot it further. I am not quite familiar with curl functions myself, so I really cannot guarantee that it will definitely work for this time being.
__________________


Mysidia Adoptables, a free and ever-improving script for aspiring adoptables/pets site.
Reply With Quote
  #29  
Old 09-18-2012, 05:23 PM
Ashe's Avatar
Ashe Ashe is offline
Member
 
Join Date: Sep 2012
Posts: 32
Gender: Female
Credits: 3,742
Ashe is on a distinguished road
Default

Yup! That solved it! The images are now showing up ^^ Here's a page where I placed the html code for testing: http://www.adragonsden.com/adopt/click.html Thanks so much :D I was beginning to make a myadopt page all depressed lool

But I still have a problem with members logging in (forbidden 403 error)...The first time they make the account they can login but once they logout they can't get back in xD I'm not sure if its a browser issue or not. Out of 3/5 people or so can't log back in.

if you want you can test it out with one of my members' accounts. This is her old account and that doesn't work but she made a new one that works now so I'm not sure what's going on o: When you try to login, it does'nt lead you to the page (wrong login) instead it leads to a 403.

user: bbshadowcat pass: chobits413

Last edited by Ashe; 09-18-2012 at 05:29 PM.
Reply With Quote
  #30  
Old 09-18-2012, 08:29 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: 327,753
Hall of Famer is on a distinguished road
Default

Glad it works for you Ashe, this was my first attempt using curl functions so I wasnt quite sure at the very beginning. XD

Its kinda weird how the login script is malfuntioning for you at times. I used the account you provided and made two login attempts. Both failed, but I was able to log in with an account I registered. I will see what I can do about this, it never happened to anyone before. I was wondering though, did you happen to notice if there was anything in common with those who could not log in? Username, IP address, or anything?
__________________


Mysidia Adoptables, a free and ever-improving script for aspiring adoptables/pets site.
Reply With Quote
Reply

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
Adopt Spotlight Broken? parayna Questions and Supports 9 12-07-2014 02:46 PM
Broken Theme Zoroark Questions and Supports 1 10-15-2012 09:55 PM
Images Broken Alaric Questions and Supports 5 04-18-2012 04:19 PM
Broken Login konzair Questions and Supports 8 01-26-2011 09:43 AM
Broken links RipJawWolfFang Questions and Supports 2 04-11-2009 03:16 AM


All times are GMT -5. The time now is 03:22 AM.

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