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.


Messages - luktur

Pages: [1] 2 3
1
Mods & Plugins (Releases & Support) / Re: [Mod] Multiupload with jQuery
« on: February 22, 2021, 11:36:42 PM »
Hello, does anyone else look here? Could someone help me?

2
Quote
Please re-generate the thumbnails via the ACP (Admin Control Panel).

I know. I must copy 9000 picture from my hdd to serwer ;)

3
Discussion & Troubleshooting / Problem with reload page after comment
« on: July 08, 2017, 04:29:51 PM »
Hi.

I have problem with my site after change serwer.

When I add a comment page not reload - it's blank white. But comments apper.

Version: 1.7.6 www.ogk.cal.pl

4
Mods & Plugins (Requests & Discussions) / Re: More fields in keywords
« on: January 06, 2014, 10:28:52 PM »
In my version 1.7.6 I have in member.php:

  $image_keywords un_htmlspecialchars(trim($HTTP_POST_VARS['image_keywords']));
  
$image_keywords preg_replace("/[\n\r]/is"" "$image_keywords);
  
$image_keywords str_replace(","," ",$image_keywords);
  
$image_keywords ereg_replace("( ){2,}"" "$image_keywords);


I should have this thing to have mod:

$image_keywords un_htmlspecialchars(trim($HTTP_POST_VARS['image_keywords']));

  
$image_keywords preg_replace("/[\n\r]/is"","$image_keywords);
  
$image_keywords_arr explode(','$image_keywords);
  
array_walk($image_keywords_arr'trim_value');
  
$image_keywords implode(','array_unique(array_filter($image_keywords_arr)));


Today I solve the problem:

I change code from 1.7.6:

$image_keywords un_htmlspecialchars(trim($HTTP_POST_VARS['image_keywords']));
  
$image_keywords preg_replace("/[\n\r]/is"" "$image_keywords);
  
$image_keywords str_replace(","," ",$image_keywords);
  
$image_keywords ereg_replace("( ){2,}"" "$image_keywords);


to MOD code:

function image_keywords($image_keywords){
    
$image_keywords preg_replace("/[\n\r]/is"","$image_keywords);
    
$image_keywords_arr explode(','$image_keywords);
    
array_walk($image_keywords_arr'trim_value');
    
$image_keywords implode(','array_unique(array_filter($image_keywords_arr)));
    return 
$image_keywords;
  }

  
$image_keywords0 un_htmlspecialchars(trim($HTTP_POST_VARS['image_keywords0']));
  
$image_keywords1 un_htmlspecialchars(trim($HTTP_POST_VARS['image_keywords1']));
  
$image_keywords2 un_htmlspecialchars(trim($HTTP_POST_VARS['image_keywords2']));

  
$image_keywords0 image_keywords($image_keywords0);
  
$image_keywords1 image_keywords($image_keywords1);
  
$image_keywords2 image_keywords($image_keywords2);

  
$image_keywords $image_keywords0.",".$image_keywords1.",".$image_keywords2;
  
$image_keywords image_keywords($image_keywords);


Now I have no errors and MOD is working. But I have little problems with keywords:

EU07,EU07-102,D29-143

It should be:

EU07 EU07-102 D29-143


5
Mods & Plugins (Requests & Discussions) / Re: More fields in keywords
« on: September 28, 2013, 04:13:50 PM »
....
Also if I upload image I have errors:...
Your 4images Version is to old



So am I ;)

Now I don't have keywords :(

My versrion 1.76

6
Mods & Plugins (Requests & Discussions) / Re: More fields in keywords
« on: September 27, 2013, 09:20:21 PM »
In member.php I should have:

$image_keywords un_htmlspecialchars(trim($HTTP_POST_VARS['image_keywords']));

  
$image_keywords preg_replace("/[\n\r]/is"","$image_keywords);
  
$image_keywords_arr explode(','$image_keywords);
  
array_walk($image_keywords_arr'trim_value');
  
$image_keywords implode(','array_unique(array_filter($image_keywords_arr)));


but I have only in section upload:

  $image_keywords un_htmlspecialchars(trim($HTTP_POST_VARS['image_keywords']));
  
$image_keywords preg_replace("/[\n\r]/is"" "$image_keywords);
  
$image_keywords str_replace(","," ",$image_keywords);
  
$image_keywords ereg_replace("( ){2,}"" "$image_keywords);


Also if I upload image I have errors:

Code: [Select]
Warning: array_walk() [function.array-walk]: Unable to call trim_value() - function does not exist in /home/michall/domains/ogk.test.cal.pl/public_html/member.php on line 500

Warning: array_walk() [function.array-walk]: Unable to call trim_value() - function does not exist in /home/michall/domains/ogk.test.cal.pl/public_html/member.php on line 500

Warning: array_walk() [function.array-walk]: Unable to call trim_value() - function does not exist in /home/michall/domains/ogk.test.cal.pl/public_html/member.php on line 500

Warning: array_walk() [function.array-walk]: Unable to call trim_value() - function does not exist in /home/michall/domains/ogk.test.cal.pl/public_html/member.php on line 500

But keywords are visible. Problem is with ,

EU07,EU07-102,D29-143

It should be:

EU07 EU07-102 D29-143

7
Mods & Plugins (Requests & Discussions) / More fields in keywords
« on: September 21, 2013, 10:11:17 PM »
Hi. I have question. It is possible to have couple keywords fields in upload image?

1. User write in fields:



2. All data are in one kywords:

8
Mods & Plugins (Releases & Support) / Re: [MOD]Google Photomap
« on: February 18, 2012, 08:08:00 PM »
My map is working but I have big problem:

http://ogk.cal.pl/index.php?template=google-photo-map

When markers are load map is working very slowly. Something is wrong with script.

9
Mods & Plugins (Requests & Discussions) / Second voting
« on: November 27, 2011, 07:08:24 PM »
Hello. It's posible to have second voting for another category - picture of the month. I want to have there voting from 1 to 5.

On couple of days in this category {image_rating} ({image_votes} {lang_votes}) will be not able (I will delate {image_rating} ({image_votes} {lang_votes})).

Thx.

10
Mods & Plugins (Releases & Support) / Re: [MOD] Votes saved in DB
« on: August 17, 2011, 08:00:38 PM »
It's possible?

I want that average of votes will be shown only for admins and the autor of the foto.

11
Discussion & Troubleshooting / Re: problem with categories
« on: July 26, 2011, 11:11:29 AM »
No. Only google maps.

12
Discussion & Troubleshooting / problem with categories
« on: July 25, 2011, 10:40:10 PM »
Hello. I have problem with categories.

On main site and in PA are in diferent order.

For example:

Main: EP09, EP05, EU06

PA: EP05, EU06, EP09


13
Discussion & Troubleshooting / Pageonly for registered user but...
« on: February 04, 2011, 07:09:10 PM »
I have idea for my site. But I don't know how to do it.

I want create new page but how to do access only for users?

14
Mods & Plugins (Releases & Support) / Re: [MOD] Votes saved in DB
« on: February 04, 2011, 07:05:05 PM »
Is this possible?:

Create new category (photo of the month). I put for example 10 photos and user vote for it. But - on gallery a have voting scale 1-10.

Is this possible to do for this category:
- only one point - user can give only 1 (in other categories all the time 1-10)
- hide for user info about voting - only admins can see it. (now user can see in bellow thumbnail)

15
Hello. I have idea but I don't know how to do it.

I'm admin on polish rail gallery - www.ogk.cal.pl

On gallery I have two group of users:

1. old user - they photo are uploaded immediately without admin

2. new users - when they upload foto it must be checked by admin

New user upload foto to admin/validimages

Is it possible to upload photo by new user to category - waiting category - only admin can see it. Then moderator check foto and take decision - make public or delete it.

Pages: [1] 2 3