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 - whosthis.ee

Pages: 1 [2] 3
16
when i click on any item in my dropdown

its taking to this url : http://celebrityphotogallery.org/cat.htm?cat_id=31
instead of this url : http://celebrityphotogallery.org/cat-aishwarya-rai-31.htm

17
The one thing stopping me from using 4images on my live site is the problem with the URL


After spending several weeks fine tuning and adding lots of great mods to my site on a localhost WAMP test area I just can't get the URLs the way I want them


I've been thru the 27 pages of this MOD:

[Mod] Search Engine Friendly URLs aka Short URLs
http://www.4homepages.de/forum/index.php?topic=6729.0

and whilst I quite like the effect
eg.
www.mysite.com/cat-12
www.mysite.com/images-321

I can't get my dropdown menu to function with that particular mod
(and also it's not great for Google SEO as it has no category or image name in the URL)




I've also tried the mod on this current thread - [MOD] Google Friendly Urls For 4images Best Seo Mod - but can't manipulate the URL the way I want because I am struggling with REGEX and the .htaccess, and my own understanding of php coding

I appreciate that you have to have the cat ID and image ID in every URL using this mod but can I split up the long URL with a forward slash? (And remove the .htm extension)

eg. I want:
www.mysite.com/categoryname-12/imagename-43

I've also managed to remove the .htm / .html / .php ending successfully but would like to split up the category and the image with a forward slash (/)

because I have sub-categories, the URL currently looks ridiculous and would help if I could have forward slashes like this - category / subcat / image


any suggestions/advice?

18
how to display all the categories in the expand view

19
In the new code in functions.php find:
Code: [Select]
    if (check_permission("auth_viewcat", $category_id)) {insert below:
Code: [Select]
$category_url = $site_sess->url(ROOT_PATH."categories.php?".URL_CAT_ID."=".$category_id);

Find:
Code: [Select]
$category_list .= "<li><span class='folder'><a href=categories.php?cat_id=".$category_id.">".$quick_cat_name."</a></span>";
Replace with:
Code: [Select]
$category_list .= "<li><span class='folder'><a href=".$category_url.">".$quick_cat_name."</a></span>";


Find next:
Code: [Select]
      $category_list .= "<li><a href=categories.php?cat_id=".$category_id.">".$quick_cat_name."</a>";
Replace with:
Code: [Select]
      $category_list .= "<li><a href=".$category_url.">".$quick_cat_name."</a>";



Hi

i tried the same

but its not working for me

20
Templates & Styles (Requests & Discussions) / Re: Prev/Next Image
« on: May 01, 2009, 06:16:53 AM »
attach here your detail.html from templates folder

and PM me

22
Mods & Plugins (Releases & Support) / Re: [MOD] Left Gallery QuickList
« on: April 28, 2009, 05:35:16 PM »
but its not opening the google friendly urls

how to fix this ??

23
Mods & Plugins (Releases & Support) / Re: [MOD] Left Gallery QuickList
« on: April 28, 2009, 01:34:51 PM »
great mod

works fine

25
Tutorials / Re: [TUT] Using the Lightbox 'overlay' effect in 4images
« on: April 25, 2009, 03:17:00 PM »
the same is not working

instead all images are opening in new window

26
After editing the functions.php, page_header.php and langfiles, I get this error on the top of my 4images homepage . Any suggestions ??

Warning: array_values() [function.array-values]: The argument should be an array in /home/tsahu/public_html/netbaazigar/showoff/includes/functions.php on line 1744

Warning: Wrong parameter count for max() in /home/tsahu/public_html/netbaazigar/showoff/includes/functions.php on line 1744

Warning: array_values() [function.array-values]: The argument should be an array in /home/tsahu/public_html/netbaazigar/showoff/includes/functions.php on line 1745

Warning: Wrong parameter count for min() in /home/tsahu/public_html/netbaazigar/showoff/includes/functions.php on line 1745

Warning: Invalid argument supplied for foreach() in /home/tsahu/public_html/netbaazigar/showoff/includes/functions.php on line 1757


same here

Warning: array_values() [function.array-values]: The argument should be an array in E:\wamp\www\4images\includes\functions.php on line 1753

Warning: Wrong parameter count for max() in E:\wamp\www\4images\includes\functions.php on line 1753

Warning: array_values() [function.array-values]: The argument should be an array in E:\wamp\www\4images\includes\functions.php on line 1754

Warning: Wrong parameter count for min() in E:\wamp\www\4images\includes\functions.php on line 1754

Warning: Invalid argument supplied for foreach() in E:\wamp\www\4images\includes\functions.php on line 1766

27
if you use unmodified code from the original tutorial on first page of this topic, you should not see all the parent categories in the links, only current category name.
as of links to image details, in includes/sessions.php find
Code: [Select]
//return get_category_url($row['cat_id']).'-'.str_replace('+','-',urlencode($row['image_name'])).'-'.$image_id;
replace it with
Code: [Select]
return get_category_url($row['cat_id']).'-'.str_replace('+','-',urlencode($row['image_name'])).'-'.$image_id;

I am using your given sessions.php file which didnt have the code which you tell to replace.
I have attached your given sessions.php file which i am currently using plz plz edit it for better seo and also tell can i use it with 4images 1.6.7  for better seo and user flags?

the same is not working

28
The one thing stopping me from using 4images on my live site is the problem with the URL


After spending several weeks fine tuning and adding lots of great mods to my site on a localhost WAMP test area I just can't get the URLs the way I want them


I've been thru the 27 pages of this MOD:

[Mod] Search Engine Friendly URLs aka Short URLs
http://www.4homepages.de/forum/index.php?topic=6729.0

and whilst I quite like the effect
eg.
www.mysite.com/cat-12 
www.mysite.com/images-321

I can't get my dropdown menu to function with that particular mod
(and also it's not great for Google SEO as it has no category or image name in the URL)




I've also tried the mod on this current thread - [MOD] Google Friendly Urls For 4images Best Seo Mod - but can't manipulate the URL the way I want because I am struggling with REGEX and the .htaccess, and my own understanding of php coding

I appreciate that you have to have the cat ID and image ID in every URL using this mod but can I split up the long URL with a forward slash? (And remove the .htm extension)

eg. I want:
www.mysite.com/categoryname-12/imagename-43

I've also managed to remove the .htm / .html / .php ending successfully but would like to split up the category and the image with a forward slash (/)

because I have sub-categories, the URL currently looks ridiculous and would help if I could have forward slashes like this - category / subcat / image


any suggestions/advice?

hey

didi you got the solution

even im trying for the same

29
i searched whole topic but not able to locate

can u just send me the exact post

i'll be very thankful to you

 :)

30
tats ok

is there any way to display category path in the image url

for ex : if a site has hollywood-actress as a category it should say

http://test.com/cat-hollywood-actress-1/img-vanessa-21.htm

Pages: 1 [2] 3