Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Topics - fitterashes

Pages: [1]
1
Installation, Update & Configuration / 1.7.8 to 1.7.9 files updates
« on: November 17, 2010, 04:09:43 PM »
Hello,
Could we have the detailed list of what has been changed in the php files from 4images 1.7.8 to 1.7.9. ?
It would be greatly appreciated.

thanks

2
Discussion & Troubleshooting / multi-word search in 1.7.8
« on: September 29, 2010, 08:37:28 PM »
Hello,

I don't know if this issue is related to the last update or my configuration, but i just noticed a problem with the search engine and the keywords :

- Search with a single word works fine (ie : houston)
- Search with 2 words (space separated) = Your search resulted in no matching records. (ie : houston washington)
- Search with 2 words using AND, OR, NOT = Your search resulted in no matching records. (ie:  houston AND washington)

- Search with 2 words seperated by a comma = works fine, same as using "OR" (ie:  houston,washington)
- Search with 2 words using comma + AND = works fine (ie : houston,AND,washington)

So there's a bug with space and commas i guess, any help to fix that please ?
nb : I use the last version 1.7.8, I did the keyword migration, and i have unmodified search.php and search_utils.php

Thank you

3
Discussion & Troubleshooting / New Images - Next and Previous
« on: August 11, 2009, 05:03:45 PM »
Hello, here is something i'd like to modify : when I click on a "new picture" on front page (or in the "new pictures" page) I get the detail page with the full picture but NEXT and PREVIOUS links won't show the next/previous picture in the "new pictures" category but in the next/previous image from the category the picture belongs to.

Is there a way to change that ? (only for new pictures).
Basically, I'd like to browse all new images in the detail page.


FYI I recently réinstalled 4images 1.7.7 from sctach with a lot of mods.

Thanks

4
Discussion & Troubleshooting / user list too long
« on: May 18, 2007, 06:40:42 AM »
Hello, Here is the small problem I have :

When I want to edit a picture the user dropdown is really long to load (I have more than 10 000 members on my gallery) so I'd like to know if there is a work around to avoid to load the dropdown each time (but still accessible if needed). I dind't find anything in the mod section.
Thanks  :wink:

5
Hello,

I'am trying to replace the "select" (the dropdown "show xx images per page") by links (<a href) or buttons (input). It's purely for the design as dropdowns are really ugly on dark backgrounds.



In include/page_header.php I started to modify the code and replace the select by inputs (buttons):

Code: [Select]
$setperpage_dropdown = "<input type=\"hidden\" name=\"buttonChoice\"\n";

for($i = 1; $i <= $config['custom_row_steps']; $i++) {
  $setvalue = $config['image_cells'] * $i;
  $setperpage_dropdown .= "<input type=\"button\" value=\"".$setvalue."\" size=\"2\" maxlength=\"2\" readonly=\"readonly\" onclick=\"setButton(".$setvalue.");\"    ";
    if ($setvalue == $perpage) {
    $setperpage_dropdown .= " class=\"selected\"";
  }
  $setperpage_dropdown .= " />";
}
if ($cat_id != 0) {
  $setperpage_dropdown .= "<input type=\"hidden\" name=\"cat_id\" value=\"".$cat_id."\" />\n";
}
if (isset($show_result) && $show_result == 1) {
  $setperpage_dropdown .= "<input type=\"hidden\" name=\"show_result\" value=\"1\" />\n";
}
$site_template->register_vars("setperpage_dropdown", $setperpage_dropdown);
$setperpage_dropdown_form = $site_template->parse_template("setperpage_dropdown_form");
$site_template->register_vars("setperpage_dropdown_form", $setperpage_dropdown_form);

$site_template->un_register_vars("setperpage_dropdown");
unset($setperpage_dropdown);
unset($setperpage_dropdown_form);

+ the javascript in the html

Code: [Select]
<script>
function setButton(s)
{
document.imagesperpage.buttonChoice.value = s;
document.imagesperpage.submit();
}
</script>

Well it doesn't work  :?
If someone have an idea it would be much appreciated.


thank you

6
Discussion & Troubleshooting / 1.7.4 - Thumbnails in RSS ?
« on: October 07, 2006, 08:05:08 PM »
Hello,

With the previous release 1.7.2 I had the mod RSS and thumbnails displayed in the feed. I'd like to do the same thing with the official feature in 1.7.3 & 1.7.3 but I'm not really good editing the XML. I tried to to put the same code I had, but I get errors.

Thank you for your help.

7
I have a main categorie restrected to active members (private / group id1) but all subcategories i create don't inherit the permissions of this main categorie.
- How can I easily change the permissions of all the subcategories ? (see attached file) and get those permissions each time I create a new subcategory.

8
I just installed 1.7.2, it went fine but with this new version there is a space between "categories" and "subcategories" if there isn't any description (see screenshot).
Any idea to fix that ?

Thanks

Pages: [1]