Author Topic: Questions Questions  (Read 7644 times)

0 Members and 1 Guest are viewing this topic.

Offline Vienix

  • Full Member
  • ***
  • Posts: 144
    • View Profile
    • com.municate.nl
Questions Questions
« on: May 23, 2002, 02:12:09 PM »
Hi,

just changed the lay-out to a "wide screen" version, it now fills the whole
screen.... the F11 version :) lot of work...

http://www.bali-pictures.com/4images/

Questions:

When I use pictures that are stored remote, download
doesn't work. Can I change that, or is it possible to
disable download just for the "remotely stored" pics ?

I couldn't upload midi files, just says failed. why ?


When you are in the lightbox, and you click one
of your pictures there, the previous and next
links point to the pictures in that gallery and not
to those in the lightbox, can I change that in one
way or another ?

Is it possible to create thumbnails from remotely stored
pictures. ( I heard already "no", but can it be changed ?)

thanks

Vienix
Thats It !

Offline Jan

  • Administrator
  • 4images Guru
  • *****
  • Posts: 5.024
    • View Profile
    • 4images - Image Gallery Management System
Re: Questions Questions
« Reply #1 on: May 23, 2002, 03:37:25 PM »
Quote from: Vienix
When I use pictures that are stored remote, download
doesn't work. Can I change that, or is it possible to
disable download just for the "remotely stored" pics ?


Try to change in "includes/functions.php" line
Code: [Select]
if (!check_permission("auth_download", $image_row['cat_id'])) {
to
Code: [Select]
if (!check_permission("auth_download", $image_row['cat_id']) || is_remote($image_row['image_media_file']) {

Quote
I couldn't upload midi files, just says failed. why ?

Maybe 4images don't detect the mime type properly. You can add new mime types in "includes/upload_definitions.php".
Try to change:
Code: [Select]
$mime_type_match['mid'] = array("audio/x-midi");
to:
Code: [Select]
$mime_type_match['mid'] = array("audio/x-midi", "audio/mid", "audio/midi");

Quote
When you are in the lightbox, and you click one
of your pictures there, the previous and next
links point to the pictures in that gallery and not
to those in the lightbox, can I change that in one
way or another ?

Yes, if you can ;)

Quote
Is it possible to create thumbnails from remotely stored
pictures. ( I heard already "no", but can it be changed ?)

Still no!

Greets Jan
Your first three "must do" before you ask a question:
1. Forum rules
2. FAQ
3. Search

Offline Vienix

  • Full Member
  • ***
  • Posts: 144
    • View Profile
    • com.municate.nl
Questions Questions
« Reply #2 on: May 23, 2002, 04:38:35 PM »
Hi,

disabling download for remotes works. How about enabling it and make it work ;-). It IS possible to download them from your lightbox, zipped and all......

The mime settings did the trick for midi files.. thanks..


Quote
Zitat:
When you are in the lightbox, and you click one
of your pictures there, the previous and next
links point to the pictures in that gallery and not
to those in the lightbox, can I change that in one
way or another ?

Yes, if you can  :)


I can't.... :cry:

Can you  :?:

you probably answer that you can... :wink:


btw, is there a list somewhere of "bugs and solutions" for v1.5beta ?

 :?:  In your html there is a lot of " / > " is it there for a reason ?

Imho it shouldn't be there....

I want to buy the software. When is the final version coming out ?
If I buy, what is your upgrade policy ? What kind of support do
you have for "bought" versions ?

thanks

Vienix
Thats It !

Offline Jan

  • Administrator
  • 4images Guru
  • *****
  • Posts: 5.024
    • View Profile
    • 4images - Image Gallery Management System
Questions Questions
« Reply #3 on: May 23, 2002, 05:26:01 PM »
Quote from: Vienix
disabling download for remotes works. How about enabling it and make it work ;-). It IS possible to download them from your lightbox, zipped and all......

Ok, wait for the final, this will be fixed.

Quote from: Vienix

I can't.... :cry:

Can you  :?:

you probably answer that you can... :wink:

Yes, i can, but i have no time to do this. I will set zhis to the feature list for future versions.

Quote

 :?:  In your html there is a lot of " / > " is it there for a reason ?

Imho it shouldn't be there....

This is XHTML...

Quote
I want to buy the software. When is the final version coming out ?
If I buy, what is your upgrade policy ? What kind of support do
you have for "bought" versions ?

I hope the final is coming this week. Updates are included. Support always only in the support forum...

Greets Jan
Your first three "must do" before you ask a question:
1. Forum rules
2. FAQ
3. Search

Offline Vienix

  • Full Member
  • ***
  • Posts: 144
    • View Profile
    • com.municate.nl
Questions Questions
« Reply #4 on: May 23, 2002, 05:36:55 PM »
Quote
This is XHTML...


Oh, that's why the html checker complained.... 8O


Quote
I hope the final is coming this week.



I have to start redoing the layout again... :cry:


Vienix
Thats It !

Offline Jan

  • Administrator
  • 4images Guru
  • *****
  • Posts: 5.024
    • View Profile
    • 4images - Image Gallery Management System
Questions Questions
« Reply #5 on: May 23, 2002, 06:35:27 PM »
Quote from: Vienix
I have to start redoing the layout again... :cry:

No, you don't have. There are no changes in the templates :)

Greets Jan
Your first three "must do" before you ask a question:
1. Forum rules
2. FAQ
3. Search

Offline Vienix

  • Full Member
  • ***
  • Posts: 144
    • View Profile
    • com.municate.nl
Questions Questions
« Reply #6 on: May 23, 2002, 06:41:01 PM »
Quote
No, you don't have. There are no changes in the templates  


Some things had to be changed in the php files as well :(

Like the aligning of the pictures to the top of the cell instead of the bottom.....

Well, I liked doing it....

:)

Vienix
Thats It !

Offline Chris

  • 4images Moderator
  • 4images Guru
  • *****
  • Posts: 4.487
  • Did u ever stop to think and then forget to start?
    • View Profile
Carrying over your customized PHP code
« Reply #7 on: May 24, 2002, 12:26:14 AM »
If you are using a UNIX based web server and you have telnet access, you can login and use 'diff file1.php file2.php' to see all the lines you changed.  If you have a PC, a much better way to capture this information is by using ExamDiff Pro downloadable here:
http://download.com.com/3000-2248-9013686.html?tag=lst-0-1
That tool allows you to visually see the two files side-by-side and with one click, copy the differences to the new PHP files that will be in the final release.  Just be careful when you do this to ensure compatibility.