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 - Krali

Pages: [1]
1
Hey,

GREAT, it works!!!

But I didn't have to delete anything :-)

Thank you very, very much!!!

Kind regards,

Klaus

2
Hi,

I only have this code:
Code: [Select]
$desc = get_category_dropdown_check($cat_id);
When I replace it with
Code: [Select]
$desc = get_category_dropdown($cat_id, $cat_id, 4);, there is no change.

Here is the file checkimages.php

Thank you

Kind regards,

Klaus

3
Hi,

ok, I have now:
if ($action == "checkimages")
{
  $max_dimension = (isset($HTTP_POST_VARS['max_dimension'])) ? $HTTP_POST_VARS['max_dimension'] : $max_dimension_default;
  $cat_id = (isset($HTTP_POST_VARS['cat_id_p'])) ? intval($HTTP_POST_VARS['cat_id_p']) : $usercat;

But all the other users and subcategories are still there, it is now just the Beginning of the user preselected.

Thank you

Kind regards,

Klaus

4
As I understood your original post is that your users have the same IDs as categories, so when you go to categories.php?cat_id=4 and then change url to member.php?action=showprofile&user_id=4 it would open page of the user of that category.

Hello,

no, that's not right.

It's like that:
Code: [Select]
if ($user_info['user_id'] == "2") {
    $usercat = "2";
} elseif ($user_info['user_id'] == "3") {
    $usercat = "3";
} elseif ($user_info['user_id'] == "4") {
    $usercat = "1";
} elseif ($user_info['user_id'] == "5") {
    $usercat = "111";
} elseif ($user_info['user_id'] == "6") {
    $usercat = "390";
}

Thank you

Kind regards,

Klaus

5
perhaps your user ids don't match with cat ids


???

6
Hello,

I am using 1.7.5.

I found two of these lines in checkimages.php:
$cat_id = (isset($HTTP_POST_VARS['cat_id_p'])) ? intval($HTTP_POST_VARS['cat_id_p']) : 0;

I changed both, but nothing has changed.

Thank you!

Kind regards,

Klaus

PS:
If I change:
Code: [Select]
if ($action == "checkimages")
{
  $max_dimension = (isset($HTTP_POST_VARS['max_dimension'])) ? $HTTP_POST_VARS['max_dimension'] : $max_dimension_default;
  $cat_id = (isset($HTTP_POST_VARS['cat_id_p'])) ? intval($HTTP_POST_VARS['cat_id_p']) : $user_info['user_id'];

to

Code: [Select]
if ($action == "checkimages")
{
  $max_dimension = (isset($HTTP_POST_VARS['max_dimension'])) ? $HTTP_POST_VARS['max_dimension'] : $max_dimension_default;
  $cat_id = (isset($HTTP_POST_VARS['cat_id_p'])) ? intval($HTTP_POST_VARS['cat_id_p']) : $user_info['user_id'];

Nothing happens, but if I change it to:
Code: [Select]
if ($action == "checkimages")
{
  $max_dimension = (isset($HTTP_POST_VARS['max_dimension'])) ? $HTTP_POST_VARS['max_dimension'] : $max_dimension_default;
  $cat_id = (isset($HTTP_POST_VARS['cat_id_p'])) ? intval($HTTP_POST_VARS['cat_id_p']) : 1;

The dropdown jumps directly to the Name of the user with user_id 1 in the dropdown, which is a first helpful way. But all the other users are still there with their subcategories and why is it not working with $user_info['user_id'] ?

Thank you

Kind regards,

Klaus

7
Hello,

no, this will not work, I tried this before.

If you change this line, the dropdown has pre-selected the category, you write in this line.
But all other subcategories of all users are still there and if you have a second or more pages for one process for the next photos, it will not use the manually choosen category, but the preselected again.

Thank you

Kind regards,

Klaus

8
Hello,

I don't need an owner of a category.

Everyone of us has it's own first "root" - category. With the user_id I can set this "root-category" anywhere to get only all the subcategories of this "root-category".

Do you understand?

Kind regards,

Klaus

9
Hello,

we are 5 users in our gallery and all have administrator rights.

We have a lot of subcategories now, so it is not ok to have the whole list of subcategories in the dropdown of checkimages.php.

I know how to get the user_id from the logged in user: $user_info['user_id']
And I know the start cat_id of each user, which should be used for the beginning of the sub categories.

So, what do I have to change to get only the sub-categories (cache?) from the logged in user in the dropdown of checkimages.php?

Thank you!

Kind regards,

Klaus

10
Hallo,

suche jemanden, der mir meine Links-Generierung in 4homepages entsprechend umprogrammiert, damit sie Suchmaschinen-tauglich sind.

Bezahlung natürlich möglich!

Bitte um Kontaktaufnahme bei Interesse, danke.
>> contact@kral-design.com

Mfg,

Klaus

11
Hello,

I have the same problem, like other users. I don't get the file "sitemap.xml" in the webroot created.

And please, I want the absolutely updated and latest version of this great mod too.

Kind regards,

Krali

12
Discussion & Troubleshooting / 100 cells, but after 3 columns new row
« on: June 27, 2007, 01:48:35 PM »
Hello,

to have the right order of my categories, I changed the value in the configuration to 100.

So, now all categories are in the right order like in admin control panel.

BUT: now, they are in one row. I want now to change the view, that after every third column, a new row should begin.

Like:

category1, category2, category3
category4, category5, category6
and so on...

Does anybody know, how and where (functions.php?) I can change the code for my request?

Nice greetings,

Klaus

13
Hallo,

wie kann ich einen Link bei der Detailansicht von einem Bild einfügen, welcher auf die richtige Seite der Kategorie verlinkt, wo das Thumbnail des Bildes angezeigt wird?

Also:

5 Seiten in der Thumbnailübersicht
Ich öffne in Seite 2 ein Bild.
Wenn ich nun wieder auf den Kategorienamen in den Breadcrumbs klicke, komme ich wieder auf Seite, nicht auf Seite 2...

Gibts dafür schon was?

Lg, Klaus

Pages: [1]