Advanced search  

News:

cpg1.5.48 Security release - upgrade mandatory!
The Coppermine development team is releasing a security update for Coppermine in order to counter a recently discovered vulnerability. It is important that all users who run version cpg1.5.46 or older update to this latest version as soon as possible.
[more]

Pages: 1 2 3 [4] 5 6 7 8 ... 13   Go Down

Author Topic: Image Scroller - based on iTunes  (Read 259362 times)

0 Members and 1 Guest are viewing this topic.

rphMedia

  • Contributor
  • Coppermine addict
  • ***
  • Offline Offline
  • Gender: Male
  • Posts: 515
  • ***muvipix.com***
    • muvipix - Music | Video | Pictures
Re: Image Scroller - based on iTunes
« Reply #60 on: August 14, 2007, 01:00:27 pm »

Hi guys, I cant make to work. And I dont know whats going on.
I have my gallery in www.lacuadra-st.ej.am/gallery (thats were i put the php file)
And I want to show this swf in my main site, in the index so I place the htm, the swf, and the js in www.lacuadra-st.ej.am.

The things that I changed were:
in the htm I put the path to the php (http://www.lacuadra-st.ej.am/gallery/flow.php)
and in the htm I try different things to see which one works (http://www.lacuadra-st.ej.am/gallery  and  http://www.lacuadra-st.ej.am), no oneworked. The weirdest things was that when I put http://www.lacuadra-st.ej.am/ and put the swf, htm and js in the gallery directory, it worked there.

I want it to work in http://www.lacuadra-st.ej.am/flow.htm, but it just donet, the swf appears and works but the images dont appear, the boxes are empty

You may have the "WWW" problem. Try removing the www in your xmlPath in flow.htm. When Flash sees that you use the www in some places and others you don't, it assumes it's a different domain and fails security-wise.

Hint: When I click your link to the root of your site, the www disappears.

freeedy

  • Coppermine novice
  • *
  • Offline Offline
  • Posts: 45
Re: Image Scroller - based on iTunes
« Reply #61 on: August 14, 2007, 06:07:36 pm »

Ok, I already took out the www but it didnt work either, I also allow in the gallery the view of unlogged users, but it didnt work either.

So maybe the prob is in the urls of my site.
I found that it works if I put it in the gallery directory, but I want it to show in the root directory of my site (where the index.php of my site is).

Lets see, in the htm I have to put the complete url where the php is:
http://lacuadra-st.ej.am/gallery/flow.php
Thats right?

Now, in the flow.php I have to put the url were the htm is:
http://lacuadra-st.ej.am
Thats right?

Please correct me if i am wrong
Logged

rphMedia

  • Contributor
  • Coppermine addict
  • ***
  • Offline Offline
  • Gender: Male
  • Posts: 515
  • ***muvipix.com***
    • muvipix - Music | Video | Pictures
Re: Image Scroller - based on iTunes
« Reply #62 on: August 14, 2007, 06:15:48 pm »

Yeah, I was just looking at this.

Your flow.php file is outputting relative paths to the images. They should be absolute. Post your current flow.php file, something isn't right.

freeedy

  • Coppermine novice
  • *
  • Offline Offline
  • Posts: 45
Re: Image Scroller - based on iTunes
« Reply #63 on: August 14, 2007, 11:10:17 pm »

Thank you, I really appreciate your help. So far I found out that if I took out the www, the flash wont appear. Also I have tried changing the 'http://www.lacuadra-st.ej.am' into 'http://www.lacuadra-st.ej.am/gallery' and 'http://www.lacuadra-st.ej.am/gallery/albums'. No one makes the trick. Please help!!

Code: [Select]
<?php
define
('IN_COPPERMINE'true);
require(
'include/init.inc.php');
$path=$CONFIG['http://www.lacuadra-st.ej.am'];
$xml '<?xml version="1.0" encoding="UTF-8"?>
<content>';
if ($FORBIDDEN_SET != "") $FORBIDDEN_SET = "AND $FORBIDDEN_SET";
$result = mysql_query("SELECT * FROM {$CONFIG['TABLE_PICTURES']} AS p WHERE filename LIKE '%.jpg' $FORBIDDEN_SET ORDER BY RAND() LIMIT 20"); //You can change the '20'
if (!$result) {
die('<p>Error performing query: ' . mysql_error() . '</p>');
}
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></image>";
}
$xml .= '</content>';
echo $xml;
?>
Logged

rphMedia

  • Contributor
  • Coppermine addict
  • ***
  • Offline Offline
  • Gender: Male
  • Posts: 515
  • ***muvipix.com***
    • muvipix - Music | Video | Pictures
Re: Image Scroller - based on iTunes
« Reply #64 on: August 14, 2007, 11:42:40 pm »

Your site URL should be the Coppermine Photo GALLERY site URL, not your root. There's a variable that should be used that was so kindly referred to me that you should use as well. It's in the original flow.php file. You may have thought to use a URL, but it is a variable -

Change:
Code: [Select]
$path=$CONFIG['http://www.lacuadra-st.ej.am'];
To:
Code: [Select]
$path=$CONFIG['site_url'];
And you should be all set.

I realize you used the gallery URL, but I don't think you put a slash at the end.

freeedy

  • Coppermine novice
  • *
  • Offline Offline
  • Posts: 45
Re: Image Scroller - based on iTunes
« Reply #65 on: August 15, 2007, 01:25:18 am »

So actually in the original php I dont have to change anything? I just uploaded as it is into the gallery directory???

The only thing that I actually have to change to the original files if the code of yout sample (htm) so it directs me to the php??
Logged

freeedy

  • Coppermine novice
  • *
  • Offline Offline
  • Posts: 45
Re: Image Scroller - based on iTunes
« Reply #66 on: August 15, 2007, 05:01:44 am »

AT LAST!!!!! IT WORKS!!!! THANK YOU VERY MUCH for your help, I really appreciate all the time that you spend answering my comments.
Logged

freeedy

  • Coppermine novice
  • *
  • Offline Offline
  • Posts: 45
Re: Image Scroller - based on iTunes
« Reply #67 on: August 16, 2007, 06:38:10 am »

New problem arises!!!!!

Everything was working perfectly, but as any human I wanted more. I decided that my thumbs were too small, so I decided to change the swf, I put the one with no scale. Everything work right, but I realize that the problem wasnt the restriction of the swf, it was actually the size of my thumbs in my gallery, so I decided to resize all mi thumbs. I updated all my thumbs from awidth of 100 to a140, just a little bigger. And when I return to check everything was mess up.

The photos didnt show anymore!!!!! Instead big red squares appear!!!!

I dont know whats wrong, what can I do???
Logged

rphMedia

  • Contributor
  • Coppermine addict
  • ***
  • Offline Offline
  • Gender: Male
  • Posts: 515
  • ***muvipix.com***
    • muvipix - Music | Video | Pictures
Re: Image Scroller - based on iTunes
« Reply #68 on: August 16, 2007, 09:45:53 am »

Looks fine to me on the 'Incio' page.

You should post back if you've found the solution.

freeedy

  • Coppermine novice
  • *
  • Offline Offline
  • Posts: 45
Re: Image Scroller - based on iTunes
« Reply #69 on: August 16, 2007, 03:39:59 pm »

Its really weird, it get solve by its own. Probably it was just a cookies problem, since I didnt do nothing to solve it.

Anyway, thank you a lot for all your help.

This scroller its really great!!!!
Logged

Carlos5039

  • Coppermine newbie
  • Offline Offline
  • Gender: Male
  • Posts: 13
  • Thank God for Open Source
Re: Image Scroller - based on iTunes
« Reply #70 on: August 17, 2007, 01:40:37 pm »

Is there a way to select a particular album to get the pictures from?
Logged

rphMedia

  • Contributor
  • Coppermine addict
  • ***
  • Offline Offline
  • Gender: Male
  • Posts: 515
  • ***muvipix.com***
    • muvipix - Music | Video | Pictures
Re: Image Scroller - based on iTunes
« Reply #71 on: August 17, 2007, 03:51:08 pm »

Is there a way to select a particular album to get the pictures from?

On this line in 'flow.php':
Code: [Select]
$result = mysql_query("SELECT * FROM {$CONFIG['TABLE_PICTURES']} AS p WHERE filename LIKE '%.jpg' $FORBIDDEN_SET ORDER BY RAND() LIMIT 20"); //You can change the '20'

Change it to:
Code: [Select]
$result = mysql_query("SELECT * FROM {$CONFIG['TABLE_PICTURES']} AS p WHERE aid='YOUR ALBUM ID NUMBER' AND filename LIKE '%.jpg' $FORBIDDEN_SET ORDER BY RAND() LIMIT 20"); //You can change the '20'
Adding the Album ID (aid).

Carlos5039

  • Coppermine newbie
  • Offline Offline
  • Gender: Male
  • Posts: 13
  • Thank God for Open Source
Re: Image Scroller - based on iTunes
« Reply #72 on: August 18, 2007, 03:09:02 am »

Thanks for the Code, it worked perfectly............. ;D
Logged

olti

  • Coppermine regular visitor
  • **
  • Offline Offline
  • Posts: 68
    • Galeria Shqiptare - Albanian Gallery
Re: Image Scroller - Based on iTunes
« Reply #73 on: August 29, 2007, 01:01:53 am »

because of the edits required.

Can you give an exact guide what edits should be done?

Quote
Edit flow.php with yoursite information and the number of images you want extracted.

What should be edited here?

Logged

Gephri

  • Coppermine frequent poster
  • ***
  • Offline Offline
  • Posts: 235
Re: Image Scroller - based on iTunes
« Reply #74 on: August 31, 2007, 12:31:20 am »

Love the image scroller so much that I would like to use it on other sites I run - and have it pull from my current gallery.
You have previously stated:
Quote
This will run anywhere on your site (domain), doesn't have to be in the gallery only. Flash has a security feature built in to not allow cross-domain executions. There is a fix for this if desired and your server(s) support(s) it.

Can you instruct how to config for a cross-domain setup?
Logged

rphMedia

  • Contributor
  • Coppermine addict
  • ***
  • Offline Offline
  • Gender: Male
  • Posts: 515
  • ***muvipix.com***
    • muvipix - Music | Video | Pictures
Re: Image Scroller - based on iTunes
« Reply #75 on: August 31, 2007, 11:37:33 am »

Can you instruct how to config for a cross-domain setup?

Create a file with a text editor with the following XML format:

Code: [Select]
<?xml version="1.0"?>
<!DOCTYPE cross-domain-policy SYSTEM "http://www.macromedia.com/xml/dtds/cross-domain-policy.dtd">
<cross-domain-policy>
<allow-access-from domain="YOURSITE.com" />
<allow-access-from domain="www.YOURSITE.com" />
<allow-access-from domain="ANOTHERSITE.us" />
</cross-domain-policy>

Save it as 'crossdomain.xml'

Put that in the root of the site that you would like to allow access. And of course, change the domains in the file with yours. Then, simply point to the flow.php from the other site.
« Last Edit: November 08, 2007, 09:22:54 pm by rphMedia »
Logged

Gephri

  • Coppermine frequent poster
  • ***
  • Offline Offline
  • Posts: 235
Re: Image Scroller - based on iTunes
« Reply #76 on: August 31, 2007, 08:32:23 pm »

It seems simple enough - but I can't seem to get it to work cross-domain.
I changed the following to be my web sites (with http://www.) in front of each,
Code: [Select]
<allow-access-from domain="YOURSITE.com" />
<allow-access-from domain="ANOTHERSITE.us" />

and uploaded the files where you said.  Are you sure this is all that is needed?
Logged

rphMedia

  • Contributor
  • Coppermine addict
  • ***
  • Offline Offline
  • Gender: Male
  • Posts: 515
  • ***muvipix.com***
    • muvipix - Music | Video | Pictures
Re: Image Scroller - based on iTunes
« Reply #77 on: August 31, 2007, 08:35:59 pm »

Where did I say to add the 'http://www' ? This is why it doesn't work for you. Your server(s) [host] must support it as well.

Gephri

  • Coppermine frequent poster
  • ***
  • Offline Offline
  • Posts: 235
Re: Image Scroller - based on iTunes
« Reply #78 on: August 31, 2007, 11:10:51 pm »

You did not... sorry to offend
Logged

rphMedia

  • Contributor
  • Coppermine addict
  • ***
  • Offline Offline
  • Gender: Male
  • Posts: 515
  • ***muvipix.com***
    • muvipix - Music | Video | Pictures
Re: Image Scroller - based on iTunes
« Reply #79 on: September 01, 2007, 01:09:32 pm »

Did you get it working?
Pages: 1 2 3 [4] 5 6 7 8 ... 13   Go Up
 

Page created in 0.028 seconds with 20 queries.