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 09-16-2012, 11:58 PM
Ashe's Avatar
Ashe Ashe is offline
Member
 
Join Date: Sep 2012
Posts: 32
Gender: Female
Credits: 3,784
Ashe is on a distinguished road
Default

Yup. That's what I did. It appears on the site but not in the code that allows it viewable on other sites. Here's a page where I put the code it gave me to place on websites.

http://adragonsden.com/adopt/click.html

It names the img file ( http://www.adragonsden.com/adopt/siggy.php?id=8 )
Reply With Quote
  #12  
Old 09-17-2012, 12:15 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: 331,412
Hall of Famer is on a distinguished road
Default

Oh you are talking about the bbcode? It seems that you have disabled the allow_url_fopen property in php.ini. For this reason you won't be able to read your image file from a different url. Do you have access to your php.ini file? If so, find the keyword 'allow_url_fopen' and set this value to be 'on'. And then, problem solved.

Here's what I found after seeing your siggy.php warning/error log, which confirms my conclusion:

PHP Code:
<br />
<
b>Warning</b>:  readfile() [<a href='function.readfile'>function.readfile</a>]: http:// wrapper is disabled in the server configuration by allow_url_fopen=0 in <b>/home/itsumoon/public_html/ash/dd/adopt/siggy.php</b> on line <b>146</b><br />
<br />
<
b>Warning</b>:  readfile(http://www.adragonsden.com/adopt/stage1/pika1.jpg) [<a href='function.readfile'>function.readfile</a>]: failed to open stream: no suitable wrapper could be found in <b>/home/itsumoon/public_html/ash/dd/adopt/siggy.php</b> on line <b>146</b><br />
<br />
<
b>Warning</b>:  Cannot modify header information headers already sent by (output started at /home/itsumoon/public_html/ash/dd/adopt/siggy.php:146in <b>/home/itsumoon/public_html/ash/dd/adopt/siggy.php</bon line <b>151</b><br />
Readfile appears to be disabled on your host
__________________


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

Where is that file located in the directory?
Reply With Quote
  #14  
Old 09-17-2012, 12:30 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: 331,412
Hall of Famer is on a distinguished road
Default

Well php.ini may be located in your ftp root directory's subfolder called 'php'. Some webhosts do not allow their clients to modify php.ini manually, and if this is the case you won't see php.ini from ftp. You'd have to consult your webhost and ask them to modify the php.ini settings. I was wondering though, who is your webhost provider? Or do you host your site on a local machine? It's rare for allow_url_fopen to be disabled by any kind of hosting services, there must be a mistake.
__________________


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

My host is from another domain (itsumo-online.net) but I'm close friends with him so I can ask about the php.ini settings. I have access to his cpanel but I don't know where to modify that setting xD
Reply With Quote
  #16  
Old 09-17-2012, 12:44 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: 331,412
Hall of Famer is on a distinguished road
Default

I see, so you are not using any hosting services that I know of. XD Your friend may have disabled allow_url_fopen for a reason, you need to consult him and ask whether it is possible to enable allow_url_fopen property in php.ini. This is crucial if you want to use bbcode on other sites/forums, otherwise they won't be able to see your images and other uploaded stuff.

There is a chance you may be able to edit your php.ini through cpanel. Do you see a module called 'php configuration'? If so, click it and see if you can do anything about php configuration there. For me, this is not an option and I have to consult my own host to update php settings. XD

If you wanna know what your php.ini setting currently is, create an empty php file and enter this code below:

PHP Code:
<?php
 phpinfo
();
?>
The page should look like this below:
__________________


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

It says its in /usr/local/lib/php.ini but I have no idea where that is located xD I don't see any folders like this.
Reply With Quote
  #18  
Old 09-17-2012, 12:58 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: 331,412
Hall of Famer is on a distinguished road
Default

Well this is usually a hidden directory only accessible to the webhost itself. I was wondering if you could use a custom php.ini file though, download the attachment below and upload it to your public_html directory. Some webhosts allow you to use custom php.ini which overwrites part of their default settings, not all of them do though. Lemme know if this solves your problem, otherwise you'd have to consult your friend and persuade him to enable allow_url_fopen.
Attached Files
File Type: ini php.ini (193 Bytes, 1 views)
__________________


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

nope doesnt work xD I'll try to contact him tomorrow. And I still need to solve the login problem so i'll ask him too
Reply With Quote
  #20  
Old 09-17-2012, 01:08 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: 331,412
Hall of Famer is on a distinguished road
Default

Alright good luck on that. I apologize that I cannot help you more, this script does require an appropriate server environment to run flawlessly. Does not mean you won't be able to use it, but some features depend on your server variables. XD
__________________


Mysidia Adoptables, a free and ever-improving script for aspiring adoptables/pets site.
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
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 07:32 AM.

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