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
  #1  
Old 05-21-2010, 01:57 PM
dragonqueen dragonqueen is offline
Member
 
Join Date: Mar 2009
Posts: 5
Credits: 737
dragonqueen
Default images not showing

When I post the BBcode in my forum, the image doesn't show, just the word "image". I noticed the same thing was happening to Arvyre pets for awhile but those are showing now, so I'm sure it's nothing to do with my host or forum settings. I read previous topics and I don't have a htaccess file anywhere in my adoptables files. Could that be the problem or maybe because I uploaded my images to photobucket to save upload time? Do they need to be on my server?
Thanks for any help!
http://pattyjean78.plesk.freepgs.com/adoptables/index.php <--adoptables site

http://pattyjean78.plesk.freepgs.com/phpBB3/viewtopic.php?f=48&t=829 <---pets
__________________
Avatar by me
Reply With Quote
  #2  
Old 05-21-2010, 09:10 PM
Tequila's Avatar
Tequila Tequila is offline
The Grim One
 
Join Date: Jan 2009
Location: Souther Tier, New York State
Posts: 1,356
Gender: Female
Credits: 97,489
Tequila is on a distinguished road
Default RE: images not showing

Looks like you're still on the old script, a lot has been fixed since and there is very little support for the old version at the moment.

I'd recommend upgrading, it's easy and you'll keep everything you already have (minus mods).
Reply With Quote
  #3  
Old 05-21-2010, 11:35 PM
dragonqueen dragonqueen is offline
Member
 
Join Date: Mar 2009
Posts: 5
Credits: 737
dragonqueen
Default RE: images not showing

k, thought I had downloaded the latest but I see the new one now. Thanks, I will try it out tomorrow. ;)
Reply With Quote
  #4  
Old 05-22-2010, 09:03 AM
Tequila's Avatar
Tequila Tequila is offline
The Grim One
 
Join Date: Jan 2009
Location: Souther Tier, New York State
Posts: 1,356
Gender: Female
Credits: 97,489
Tequila is on a distinguished road
Default RE: images not showing

No problem. :)
Reply With Quote
  #5  
Old 05-22-2010, 07:11 PM
dragonqueen dragonqueen is offline
Member
 
Join Date: Mar 2009
Posts: 5
Credits: 737
dragonqueen
Default RE: images not showing

I installed the new script. Everything installed without problems. However, the images are still not showing up and the link to level them up isn't working either. Could it be a permissions thing?

New site: http://pattyjean78.plesk.freepgs.com/adoptables/index.php

BBcode for a pet:
Code:
Edit: I figured out why the link wasn't working but not the image. In the bbcode, it adds www to the link. If you remove the www it works. I will need to figure how to change that so it doesn't add it in each time. Still can't figure the image issue out. :(
Reply With Quote
  #6  
Old 05-22-2010, 09:27 PM
Tequila's Avatar
Tequila Tequila is offline
The Grim One
 
Join Date: Jan 2009
Location: Souther Tier, New York State
Posts: 1,356
Gender: Female
Credits: 97,489
Tequila is on a distinguished road
Default RE: images not showing

Quote:
Originally Posted by dragonqueen
I installed the new script. Everything installed without problems. However, the images are still not showing up and the link to level them up isn't working either. Could it be a permissions thing?

New site: http://pattyjean78.plesk.freepgs.com/adoptables/index.php

BBcode for a pet:
Code:
Edit: I figured out why the link wasn't working but not the image. In the bbcode, it adds www to the link. If you remove the www it works. I will need to figure how to change that so it doesn't add it in each time. Still can't figure the image issue out. :(
It should be changeable on your myadopts.php page. Look for the following and modify to suit your site.

PHP Code:
else if($act == "bbcode"){

if(
is_numeric($id)){

// Now we see if the adoptable actually exists...

$query "SELECT * FROM ".$prefix."owned_adoptables WHERE owner='$loggedinname' and aid='$id'";
$result mysql_query($query);
$num mysql_numrows($result);

//Loop out code
$i=0;
while (
$i 1) {

$aid=@mysql_result($result,$i,"aid"); //The adoptable's ID
$currentlevel=@mysql_result($result,$i,"currentlevel");
$type=@mysql_result($result,$i,"type");
$name=@mysql_result($result,$i,"name");
$totalclicks=@mysql_result($result,$i,"totalclicks");
$isfrozen=@mysql_result($result,$i,"isfrozen");

$i++;
}

if(
$aid == $id){

$altbb grabanysetting("usealtbbcode");

// Adoptable exists, so show the BBCode:

$article_title "Codes for ".$name;
$article_content $lang_bbcode_explain."<br>
<p><u>Forum Codes / BBCode: </u></p>
<p>
  <textarea name='textarea' cols='50' rows='4'>[url="
.$domain."".$scriptpath."/levelup.php?id=".$aid."][img]".$domain."".$scriptpath."/siggy.php?id=".$aid."[/img][/url]
</textarea>
</p>"
;

if(
$altbb == "yes"){

// Use the seo friendly alternate bbcodes...

$article_content $article_content."<p><u>Alternate BBCodes (Use if the above do not work on a forum): </u></p>
<p>
  <textarea name='textarea' cols='50' rows='4'>[url="
.$domain."".$scriptpath."/levelup.php?id=".$aid."][img]".$domain."".$scriptpath."/pet/".$aid.".gif[/img][/url]
</textarea>
</p>"
;

}



$article_content $article_content."<p><u>HTML Code</u>:</p>
<p>
<textarea name='textarea' cols='50' rows='4'><a href=\""
.$domain."".$scriptpath."/levelup.php?id=".$aid."\" target=\"_blank\">
<img src=\""
.$domain."".$scriptpath."/siggy.php?id=".$aid."\" border=0></a>
  </textarea>
   
</p>"
;


Reply With Quote
  #7  
Old 05-22-2010, 09:53 PM
dragonqueen dragonqueen is offline
Member
 
Join Date: Mar 2009
Posts: 5
Credits: 737
dragonqueen
Default RE: images not showing

Not sure what to edit but thanks for trying to help.
Reply With Quote
  #8  
Old 05-22-2010, 10:11 PM
Tequila's Avatar
Tequila Tequila is offline
The Grim One
 
Join Date: Jan 2009
Location: Souther Tier, New York State
Posts: 1,356
Gender: Female
Credits: 97,489
Tequila is on a distinguished road
Default RE: images not showing

It's all right, mine has been edited to work better with my site, you can see basics of how to change the original script.
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
Images not showing? katsRme Feedback and Suggestions 15 08-19-2012 06:08 PM
images aren't showing vexel Questions and Supports 11 12-01-2010 12:13 AM
Signature images not showing Killgore Questions and Supports 23 09-10-2010 03:52 PM
Images not showing RipJawWolfFang Questions and Supports 32 05-11-2009 10:22 AM
Images not showing Tequila Questions and Supports 22 03-07-2009 07:15 AM


All times are GMT -5. The time now is 01:23 AM.

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