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 - jany.yar

Pages: [1]
1
Ok I installed this mod without facing any problem. However I would really appreciate if anyone could find a way to change it into this format:

http://www.site.com/category-name-123/image-name-123.htm

I'm 100% sure it's possible if a pro take a look at it., alot of people have asked for this.. please someone find the solution.


or atleast without the k-category-name or cat-category, img-imagename etc..

thank you in advance

2
Does this MOD work with version 1.7.6? If NO.. Then Is there any SEO mod out there for 1.7.6 version?

I'm very confused because even for 1.7.4 version nobody has replied with positive result, everyone was having a problem when they install this mod.. Can someone please give me link to a working SEO mod without any problems? or can someone please create one.. It will be very convenient for the users and I will really appreciate it. Thanks :)

works great with 1.7.4, 1.7.5 and 1.7.6 too, look here http://www.myanimalsworld.com

Did you face any problems installing the mod?

3
Does this MOD work with version 1.7.6? If NO.. Then Is there any SEO mod out there for 1.7.6 version?

I'm very confused because even for 1.7.4 version nobody has replied with positive result, everyone was having a problem when they install this mod.. Can someone please give me link to a working SEO mod without any problems? or can someone please create one.. It will be very convenient for the users and I will really appreciate it. Thanks :)

4
probably best way is write him and ask him about that ;) maybe he will share this information with you.....

hahaha you're very funny

5
you are probably looking for this mod http://www.4homepages.de/forum/index.php?topic=17912.0

No sir, have you looked at the example site link .. Please take a look at this page: http://hi5.enchulatupagina.com/subir-imagenes-a-hi5.htm

and plz try to upload an image.. you will see in the codes that the image is uploaded to the imageshack server which is a remote server not his server. How do I do that?

6
you want put remote images from internet to your 4images gallery and show some links to this image on detail page? its that right???

I would like to be able to directly upload images from my 4images gallery to remote image hosting servers like photobucket or imageshack and automatically show some links to that image on the details page.

7
bumping this thread hoping someone would have answer to my question..

8
Hello everyone,

Can someone please tell me where I can find the mod which is used here: http://hi5.enchulatupagina.com/subir-imagenes-a-hi5.htm

As you can see and if you try to upload an image, it automatically uploads the images to imageshack server and gives you the codes right after it's uploaded and the images are added to the particular categories after approved by the admins in the admin panel while the images are hosted on the imageshack server. I hope I made myself clear..

I will really appreciate it.

Eagerly waiting for a reply..

Thanks in advance,
Jany Yar

9
Can this be made to work with images hosted off site?
I get something like this:

Code: [Select]
<a href="http://mysite.com"><img src="http://mysite.com/data/media/3/http://i140.photobucket.com/albums/r32/image.gif" border="0" alt="http://i140.photobucket.com/albums/r32/image.gif"></a>
Notice the "img src" tag, the path is wrong...

Thanks!

There is a function named: is_remote(_) that it see if the image is remote. Ok you need to do the next
Find into the mod:
Code: [Select]
      $uploaded_image_path = $script_url."/".MEDIA_DIR."/".$cat_id."/".$new_name;
      $uploaded_thumb_path = $script_url."/".THUMB_DIR."/".$cat_id."/".$new_name;
and remplace:
Code: [Select]
if(is_remote($new_name)){
      $uploaded_image_path = $new_name;
}else{
  $uploaded_image_path = $script_url."/".MEDIA_DIR."/".$cat_id."/".$new_name;
}
if(is_remote($image_row['image_thumb_file']))
  $uploaded_thumb_path = $image_row['image_thumb_file'];
else
  $uploaded_thumb_path = $script_url."/".THUMB_DIR."/".$cat_id."/".$new_name;
 


It didn't work for me :( and I am sure I have not made any mistakes.. because I did exactly as you instructed.

Pages: [1]