jake
Coppermine novice

Posts: 21
|
 |
« Reply #40 on: January 10, 2008, 12:29:15 pm » |
|
Hmmm, thanks for checking, but I only get a blank (back) page with Win XP & FF/IE, MAC & Safari/FF. When I try to have a look on other sites mentioned here in the Forum it works fine for me.
What did I wrong?
Regards
It works for me as well. Try cleaning out your browser cache(s).
|
|
|
|
|
Logged
|
|
|
|
je001
Coppermine frequent poster
  
Posts: 231
|
 |
« Reply #41 on: January 10, 2008, 08:38:06 pm » |
|
Try the attached.
I don't get it, my pictures still get resized in the scroller even when i use this, any clue? my old "Flow.swf" with no resize works perfectly.
|
|
|
|
|
Logged
|
|
|
|
rphMedia 
Contributor
  
Gender:
 United States
Posts: 509
***muvipix.com***
|
 |
« Reply #42 on: January 11, 2008, 08:05:39 pm » |
|
For all that wanted a smaller version, try the attached. It should maintain aspect ratio, but still scale the content within the stage.
This one is 600x300.
|
|
|
|
|
Logged
|
|
|
|
|
M
Coppermine newbie
Posts: 5
|
 |
« Reply #43 on: January 15, 2008, 08:24:10 pm » |
|
Hi, this scroller is so beautiful ... But somehow i can't make it works http://www.mdnplace.com/galleryMap/flow_link_example.phpPlease advice on what i did wrong, already checked, 3 files are in the root folder. Thanks!
|
|
|
|
|
Logged
|
|
|
|
rphMedia 
Contributor
  
Gender:
 United States
Posts: 509
***muvipix.com***
|
 |
« Reply #44 on: January 15, 2008, 08:25:29 pm » |
|
Again... works for me. Try clearing your cache.
|
|
|
|
|
Logged
|
|
|
|
|
M
Coppermine newbie
Posts: 5
|
 |
« Reply #45 on: January 15, 2008, 08:26:28 pm » |
|
It was catch ..Open a new win and it works ... Thanks for all your hardwork! 
|
|
|
|
|
Logged
|
|
|
|
iorkara
Coppermine novice

Posts: 31
Be Nice.
|
 |
« Reply #46 on: January 29, 2008, 08:26:10 am » |
|
Hi everyone  I having a Problem over at: http://www.iorkara.com/flow_link_example.htmAs you can see I get a Blank Page. I have checked everything in code. Cannot find an error. Its not a cache thing neither as others had problems with too. My Gallery is at: www.iorkara/2/Any Help will be very much Appreciated. Thank you.
|
|
|
|
|
Logged
|
|
|
|
Pascal YAP
Dev Team member
   
Gender:
 Armenia
Posts: 3791
He's me, and She's Moon
|
 |
« Reply #47 on: January 29, 2008, 09:12:48 am » |
|
Iorkara, My Gallery is at: ww w.iorkara/2/ Where is your Coppermine Gallery in your install ? PYAP
|
|
|
|
|
Logged
|
! Pas de PM please ! No PM s'il vous plait !
|
|
|
rphMedia 
Contributor
  
Gender:
 United States
Posts: 509
***muvipix.com***
|
 |
« Reply #48 on: January 29, 2008, 11:22:08 am » |
|
I would remove any .htaccess files you have and try again. Also, take a look at your WWW in your addresses. You have them scattered all over the place. One domain has it while the other does not
|
|
|
|
|
Logged
|
|
|
|
iorkara
Coppermine novice

Posts: 31
Be Nice.
|
 |
« Reply #49 on: January 29, 2008, 01:14:13 pm » |
|
I removed the .htaccess files, did not work. So now they are back.. I removed all www and tried that. didnt work. So i put in www, same result.
|
|
|
|
|
Logged
|
|
|
|
rphMedia 
Contributor
  
Gender:
 United States
Posts: 509
***muvipix.com***
|
 |
« Reply #50 on: January 29, 2008, 01:30:17 pm » |
|
Put flow_link.swf in the same place as flow_link_example.htm eg, http://www.iorkara.com/flow_link.swf
|
|
|
|
|
Logged
|
|
|
|
iorkara
Coppermine novice

Posts: 31
Be Nice.
|
 |
« Reply #51 on: January 29, 2008, 01:37:27 pm » |
|
Ok, were getting somewhere! I put the .swf file where you said. Still blank, but its loading now... When you click, you get a URL like: http://www.iorkara.com/displayimage.php?pos=-6780It should be something like:http://www.iorkara.com /2/displayimage.php?pos=-6780 So ive missed a line somewhere?
|
|
|
|
|
Logged
|
|
|
|
rphMedia 
Contributor
  
Gender:
 United States
Posts: 509
***muvipix.com***
|
 |
« Reply #52 on: January 29, 2008, 02:00:58 pm » |
|
The paths in your flow_link.php file should be absolute, not relative - http://www.iorkara.com/2/flow_link.phpPost your flow_link.php file as modified (shouldn't have to modify it).
|
|
|
|
|
Logged
|
|
|
|
iorkara
Coppermine novice

Posts: 31
Be Nice.
|
 |
« Reply #53 on: January 29, 2008, 02:03:00 pm » |
|
<?php define('IN_COPPERMINE', true); require('include/init.inc.php'); $path=$CONFIG[' http://www.iorkara.com/2/']; $xml = '<?xml version="1.0" encoding="iso-8859-1"?><content>'; if ($FORBIDDEN_SET != "") $FORBIDDEN_SET = "AND $FORBIDDEN_SET"; $result = mysql_query("SELECT * FROM {$CONFIG['TABLE_PICTURES']} AS p WHERE filename LIKE '%.jpg' ORDER BY pid DESC LIMIT 20"); $row = mysql_fetch_array($result); while ($row = mysql_fetch_array($result)) { $type = max($row['pwidth'], $row['pheight']) > $CONFIG['picture_width'] ? 'thumb' : 'thumb'; $xml .= "<image><path><![CDATA[" . $path . get_pic_url($row, $type) . "]]></path><description><![CDATA[" . $row['title'] . "]]></description><data><![CDATA[" . $path . "displayimage.php?pos=-" . $row['pid'] . "]]></data></image>"; } $xml .= '</content>'; echo $xml; ?>
|
|
|
|
|
Logged
|
|
|
|
rphMedia 
Contributor
  
Gender:
 United States
Posts: 509
***muvipix.com***
|
 |
« Reply #54 on: January 29, 2008, 02:04:54 pm » |
|
This line should be - $path=$CONFIG['site_url'];
just as you see it.
|
|
|
|
|
Logged
|
|
|
|
iorkara
Coppermine novice

Posts: 31
Be Nice.
|
 |
« Reply #55 on: January 29, 2008, 02:11:48 pm » |
|
Ok made the change. I tested it in IE and got this Error: Is that because i have Private Albums? can i make it load a specific album?
|
|
|
|
|
Logged
|
|
|
|
iorkara
Coppermine novice

Posts: 31
Be Nice.
|
 |
« Reply #56 on: January 29, 2008, 02:15:24 pm » |
|
Sorry for double post. It seems that files to not popup in slide and do link to the gallery now.
|
|
|
|
|
Logged
|
|
|
|
|
Nibbler
|
 |
« Reply #57 on: January 29, 2008, 02:15:44 pm » |
|
Is that because i have Private Albums?
No, the mod does not respect private albums. You need to be consistant with iorkara.com vs www.iorkara.com. Use the same everywhere.
|
|
|
|
|
Logged
|
I don't care about what they say, I won't live or die that way.
|
|
|
iorkara
Coppermine novice

Posts: 31
Be Nice.
|
 |
« Reply #58 on: January 30, 2008, 02:51:15 am » |
|
Yer it is consistant.
|
|
|
|
|
Logged
|
|
|
|
|
Nibbler
|
 |
« Reply #59 on: January 30, 2008, 09:34:00 am » |
|
Read the message: Security sandbox violation: BitmapData.draw: http:// www.iorkara.com/flow_link.swf cannot access http:// iorkara.com/2/albums/userpics/thumb_Alex_Lynn_01.jpg. It's not consistant.
|
|
|
|
|
Logged
|
I don't care about what they say, I won't live or die that way.
|
|
|
|