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

Pages: 1 ... 19 20 21 22 [23] 24 25 26 27 ... 29
331
Look at this: http://www.4homepages.de/forum/index.php?topic=5763.0

One of the things said is "Placing files outside the web root will not work."
Not a 100% sure if this pertains to what you are asking since it is about downloading, but I believe it is all the same.  :wink:

Maybe that thread will give you an idea on something else  :?:

332
Do you have "Auto-create thumbnail" set to yes in the admin control panel?

333
Ok, this is kind of the same problem I had when I first installed this.

What I did was start fresh with my back ups and followed the directions again with out running the "install_annotation.php" since I already did that.
I don't have a clue what was giving me the issue, but all works good now. However I do not use the text part of it since I created my own image.

334
Mods & Plugins (Requests & Discussions) / Re: Articles publishing
« on: January 16, 2007, 11:24:15 PM »
I think the one you are referring to is not supported anymore and that is why it is not in the forum.


Try these:
http://www.4homepages.de/forum/index.php?topic=9064.0
or
http://www.4homepages.de/forum/index.php?topic=5142.0

335
I suggest try and contact them to see if they would share the template or post it here.

336
So you get no errors?

What is the link to your gallery so someone can look?

338
change ROOT_PATH to "../../"

dont have anymore ideas for you to try

340
Try what picster posted:

(Reading in patience makes life much easier...)
In batch_annotation.php, line 5, I adjusted manually the define_ROOT_PATH like this: define('ROOT_PATH'),"absolute Path/"); So everything works now like a snap. SUPER MOD - THANKS SLL!!! :D

cheers, picster

341
Mods & Plugins (Requests & Discussions) / Re: [addon] DREAMBOARD V 2.1
« on: January 13, 2007, 10:43:36 AM »
As said 3 post before yours it is attached to this post:

http://www.4homepages.de/forum/index.php?topic=9598.msg70227#msg70227

342
Nevermind I got it, something I should have seen from the start   :oops:

I had
Code: [Select]
$sql = "SELECT a.image_id, a.cat_id, a.image_name, a.image_active, a.image_thumb_file, a.image_comments
        FROM ".IMAGES_TABLE." a, ".CATEGORIES_TABLE." b

and needed
Code: [Select]
$sql = "SELECT a.image_id, a.cat_id, a.image_name, a.image_active, a.image_thumb_file, a.image_comments, a.image_hits, a.image_rating
        FROM ".IMAGES_TABLE." a, ".CATEGORIES_TABLE." b


@ mawenzi
Thanks for your help, I appreciate it  :!:

343
@ CeJay
... try this ...
Code: [Select]
echo "Hits: ".$image_hits."<br>\n";
echo "Bewertung: ".$image_rating."<br>\n";

Ok I added that. Here is what I have on the php:
Code: [Select]
while ($row = $site_db->fetch_array($result)){
  $image_id = $row['image_id'];
  $cat_id = $row['cat_id'];
  $image_name = $row['image_name'];
  $image_comments = $row['image_comments'];
  $image_hits = $row['image_hits'];
  $image_rating = $row['image_rating'];
  $thumb_src = (is_remote($row['image_thumb_file'])) ? $row['image_thumb_file'] : ROOT_PATH.THUMB_DIR."/".$cat_id."/".$row['image_thumb_file'];

  echo "<table border='0' width='213' Align=left>\n";
  echo "<TR>\n";
  echo "<TD><a href=\"".ROOT_PATH."details.php?image_id=$image_id\"><img src=\"".$thumb_src."\" border=\"0\" alt=\"$image_name\"></a></TD>\n";
  echo "</TR>\n";
  echo "<TR>\n";
  echo "<TD><b>$image_name</b></TD>\n";
  echo "</TR>\n";
  echo "<TR>\n";
  echo "<TD>Comments: $image_comments</TD>\n";
  echo "</TR>\n";
  echo "<TR>\n";
  echo "Hits: ".$image_hits."<br>\n";
  echo "</TR>\n";
  echo "<TR>\n";
  echo "Rating: ".$image_rating."<br>\n";
  echo "</TR>\n";
  echo "</table>\n";

The tables are set to have the rows horizontal so that is why you see that.

I do have the listing for the ratings and hits, however nothing (the count) shows up next to them.
I did double check the images that loaded to see if there was at least hits and there was.

344
Not sure if I gave enough info on last post.
Do I need to do something like what was posted in this post on the random_more_pics.php like so?

$image_hits = $row['image_hits'];
$image_rating = $row['image_rating'];
and
echo "Hits: $image_hits<br>\n";
echo "Bewertung: $image_rating<br>\n";

I tried to figure this out before I asked.
If adding ratings is not possible is it possible for hits?

345
Installation, Update & Configuration / Re: error from image.php
« on: January 12, 2007, 08:17:23 AM »
I think what he is saying is that is not the correct path you posted and the one he posted is the correct one as I can also see the image with the path he posted.
I also had no trouble seeing any image on your site and none of them gave me  link like you posted.
With the
Code: [Select]
image.php?v=./data/media/3/ in it.

So you may have to clarify how you came to that path (example: what link you clicked on).
The more info the better.

Pages: 1 ... 19 20 21 22 [23] 24 25 26 27 ... 29