Categories

Problems installing LinkMan?
Post Reply
ta2ed
Posts: 2
Joined: Sun Oct 29, 2006 4:45 pm

Categories

Post by ta2ed »

Script URL:
Version of script:
Hosting company:
URL of phpinfo.php:
URL of session_test.php:
What terms did you try when SEARCHING for a solution:

Write your message below:

Any development on creating categories for Linkman.

I would really like to use linkman on my site with 41 categories, and create a link on each category page.

I have very little experience at PHP and have been wracking my brain at trying to figure out what the directions here viewtopic.php?t=610 are trying to tell me.

I don't feel qualified to ask questions other than is there anything in the making, i read it was being thought about.



:shock:
Klemen
Site Admin
Posts: 10116
Joined: Fri Feb 11, 2005 4:04 pm

Post by Klemen »

Hi,

Well I do have plans on adding categories someday, but I really don't have much time lately to work on PHPJunkyard scripts and when I do there are other things I need to finish first (like new version of Hesk).

So, categories WILL be added someday, but I can't say when. I would suggest you rather find some other script than wait for this to be added as it might take long.
Klemen, creator of HESK and PHPJunkyardWas this helpful? You can buy me a drink here Image

Image You should follow me on Twitter here

Help desk software | Cloud help desk | Guestbook | Link manager | Click counter | more PHP Scripts ...

Also browse for php hosting companies, read php books, find php resources and use webmaster tools
ta2ed
Posts: 2
Joined: Sun Oct 29, 2006 4:45 pm

Post by ta2ed »

Anyone else around the boards that is willing to spread a lil more light on the thread i linked to in the original post?
Klemen
Site Admin
Posts: 10116
Joined: Fri Feb 11, 2005 4:04 pm

Post by Klemen »

You can try this:
viewtopic.php?t=687

Basically what you do is create folders
yourdomain.com/links/category1
yourdomain.com/links/category2
yourdomain.com/links/category3
and then install a copy of LinkMan in each of the category folders.

It's some work but probably the easiest way until LinkMan supports categories.
Klemen, creator of HESK and PHPJunkyardWas this helpful? You can buy me a drink here Image

Image You should follow me on Twitter here

Help desk software | Cloud help desk | Guestbook | Link manager | Click counter | more PHP Scripts ...

Also browse for php hosting companies, read php books, find php resources and use webmaster tools
plugmas.com
Posts: 3
Joined: Fri Sep 14, 2007 11:01 pm

Post by plugmas.com »

This sound easy. MY question is when i install a copy of LinkMan in each of the category folders ¿ i must manager admin.php in each of the category folder?
WebsiteManagers
Posts: 23
Joined: Fri Jun 24, 2005 8:19 pm

Post by WebsiteManagers »

Yes, every category will have its own admin page.
[url=http://www.websitemanagers.net]Website Managers[/url]
Website Hosting and Development Since 1998
watonaka
Posts: 8
Joined: Fri Feb 29, 2008 8:15 pm

Post by watonaka »

I know nothing of php, so please forgive me if I am underestimating the task at hand. But, I did find that`I could insert a pHP Array - drop down menu for categories as follows:
----------------------

<?
$category = array(
1=> "Category 1",
2=> "Category 2",
3=> "Category 3",
);
$category = str_replace(" ", " ", $category);

echo '<SELECT name=category>';
foreach ($category as $key => $value)
{
echo '<OPTION value='.$value.'> '.$value.'';
}
echo '</select>';

?>

------------
This give me a drop down menu to select a category. Now if I only knew how to assign some values and instructions to explain where to post the link to a given category. Am I on the right track, or is this possible. Anyone want to take a stab at this, and tell me if this is doable?

Thanks Jack
Klemen
Site Admin
Posts: 10116
Joined: Fri Feb 11, 2005 4:04 pm

Post by Klemen »

It would take more work than that to get it working and it is out of the scope of my support here. You would probably be better of if you find a MySQL script which already has categories.
Klemen, creator of HESK and PHPJunkyardWas this helpful? You can buy me a drink here Image

Image You should follow me on Twitter here

Help desk software | Cloud help desk | Guestbook | Link manager | Click counter | more PHP Scripts ...

Also browse for php hosting companies, read php books, find php resources and use webmaster tools
watonaka
Posts: 8
Joined: Fri Feb 29, 2008 8:15 pm

Post by watonaka »

That's wha I figured. Thanks Klemen
Post Reply