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

Pages: 1 ... 16 17 18 19 [20] 21 22 23
286
Installation, Update & Configuration / Re: i can't enter my ACP
« on: August 25, 2008, 09:45:35 AM »
ok.. After logged in by index.php,   you can see one link "Admin Control Panel"  in the button.. try to click there .. It will take you to ACP.

Try this and let us know.. what happens

287
Your link retunrs "404 not Found" ....

provide the correct url..

288
Plugins / Re: [Plugin] Windows XP Publishing Wizard Integration
« on: August 15, 2008, 08:51:42 AM »
Thanks All,
                   It worked for me in my first attemp..  :D


289
Discussion & Troubleshooting / Re: Check new images log
« on: August 15, 2008, 04:25:29 AM »
 :D  Finally after   3 days long email conversation .. my host increased memory_limit to 64M .. :)


Thanks Vano for your help. 

290
Discussion & Troubleshooting / Re: Check new images log
« on: August 14, 2008, 03:15:20 PM »
ImageMagick or NetPBM not available on your server?

    NO idea about the availability .. but if it will be there, then what should I ask to my provider to change and what type of changes do I need to do from my side ?

291
Discussion & Troubleshooting / Re: Check new images log
« on: August 14, 2008, 12:33:37 PM »
Hi,
    I talked with host providers, they are not ready to increase the memory limit on a shared server :( .. now I am helpless.  :(


I have made one script to resize the pictures in my own desktop and its working fine .. but for some pictures its not working .. I have no idea why its not working ..

Can anyone help me to doing this script ???

 

292
Ancient Bump!

Does anyone know if this works with 1.7.4? Has there been any newer versions/similar mods out there?

 Yes, this works with 1.7.4 . My gallery is in 1.7.4

v@no,
          Is there any php function to scramble the photos instead of blur it ?  or Do we need some more step to scramble it. ?


Thanks,

293
Discussion & Troubleshooting / Re: Check new images log
« on: August 06, 2008, 09:51:51 AM »
Thanks V@no !!!
                         you are simply gr8.. :)   when you were not here, we really missed your reply on each and every topic ..  :D

And ... about the solutions.. 1st is a easy step .. but difficult decide ..  :)  . I will contact host administrator .. lets see what they are saying .. ..



294
Discussion & Troubleshooting / Re: Check new images log
« on: August 06, 2008, 05:49:36 AM »
V@no,
          Here is the details what I did.   IF I have uploaded my pictures to my data folder and in ACP I used "Check new images" option and tried to add the images into my gallary, but here I am getting the error messgae. I think my host has some setting to stop php error messages, so I am unable to see the error message.


Another way.
                      If I am uploading the picture of less size ( within 1600px) then its working fine.  If I am uploading the pictures thru website's upload button then the same issue, but not able to check the error message.

I went thru my error log in c-panel and found the following error message.

Code: [Select]
PHP Fatal error:  Allowed memory size of 33554432 bytes exhausted (tried to allocate 8868 bytes) in /home/bhwallpa/public_html/includes/image_utils.php on line 80, referer: http://www.bhwallpapers.com/member.php?action=uploadform&cat_id=162

295
Well.. Vano !! I did the changes but no result  :(    so I changed the thumbnail to text link in the detail page.  :)

Kodiwolfe,
                   Yes, I think its possible but need few changes and analysis where to change  :lol:   


296
Discussion & Troubleshooting / Check new images log
« on: August 05, 2008, 08:11:49 PM »
Hi All,
         I am trying to upload some images in my gallery and the images are very big size and I am getting the error messgae "Check new images log" . the particular image will be renamed to .bak file.

 Can anyone help to solve this problem ?


297
Vano,
          you are gr8. !!  :)  . Your code is working fine( one ')' missing in the first line. )  But still the same issue.. In the details page and in random thumbnails, it is displaying actual thumbnail .. not the blured one ..


298
Vano !!!!

              Finally I am able to apply blur effect to the images those are in T&C.  Here is what I did. please look into this and let me know if there is anything I have change. ( I have really no idea on PHP  :D ) .

I found this
Code: [Select]
      $file_src = get_file_path($thumb_file_name, "thumb", $cat_id, 0, 1);
      $image_info = @getimagesize($file_src);
      $width_height = (!empty($image_info[3])) ? " ".$image_info[3] : "";

after this I inserted
Code: [Select]
      global $site_db;
      $sql = "SELECT terms
                FROM ".IMAGES_TABLE."
                WHERE image_id = $image_id";
      $result=$site_db->query($sql);
      $row = $site_db->fetch_array($result);
      $terms1 = $row['terms'];

    if ($terms1['terms'] == 2) {

  $file_src = "thumb.php?file=".urlencode(str_replace(THUMB_DIR."/", "", $file_src))."&folder=blur";
  $thumb = "<img src=\"".$file_src."\" ".(($show_link) ? "" : "onClick=\"alert('".$lang['members_only']."'); \"")."border=\"".$config['image_border']."\"".$width_height." alt=\"".$image_name."\" />";
//    $thumb = "<img src=\"./data/thumbnails/test.jpg\" />";

    }
    else {
    $thumb = "<img src=\"".$file_src."\" ".(($show_link) ? "" : "onClick=\"alert('".$lang['members_only']."'); \"")."border=\"".$config['image_border']."\"".$width_height." alt=\"".$image_name."\" />";
    }

I just moved
Code: [Select]
    $thumb = "<img src=\"".$file_src."\" ".(($show_link) ? "" : "onClick=\"alert('".$lang['members_only']."'); \"")."border=\"".$config['image_border']."\"".$width_height." alt=\"".$image_name."\" />";

into this else condition.

then I took your thumb.php file from your blur effect post.

and now its done ..  :)   If any image is set for Term and Condition, then the thumbnail is now blured.

One problem !!! IF the thumbnail is in details page's next or previous image, then its displaying normal thumnail ..  :(   .

Where I have to make the changes for this ???

299
Sorry, can't help you at the moment with more then this link:
http://www.4homepages.de/forum/index.php?topic=11165.0

  Vano,
           Thanks for your quick reply ..   :)  .. But I have already gone thru this link and I just want to integrate these two.

Because the blur effect is only for thumbnails which the user don't have access, but this Terms and Condition MOD is for those thumbnails/images to which user have access ..

Is it Possible ??


300
Hi,
    I have applied this MOD and its working fine also. But Is it possible to blur the thumbnails for the images which are set under terms ??

I mean to say if one image is restricted by terms then the thmbnail of that image will blured.


Please if anyone can help me on this ?



Pages: 1 ... 16 17 18 19 [20] 21 22 23