SMFHacks.com
SMFHacks
Community Suite
SMF Gallery Pro
SMF Store
SMF Classifieds
Newsletter Pro
Downloads System Pro
Ad Seller Pro
Badge Awards
Hacks and Mods
Latest SMF Hacks
TopTen Hacks
Styles and Themes
Add a Hack
Manage Hacks
Earn Money from Your Forum with these tips
SMF Theme Generator
SMF Package Parser
Free SMF Hosting
Buy Website Traffic
Site Showcase
Email Marketing Software
Search Forums
Advanced search
User
Welcome,
Guest
. Please
login
or
register
.
June 19, 2013, 07:39:19 pm
1 Hour
1 Day
1 Week
1 Month
Forever
Login with username, password and session length
Stats
Members
Total Members: 10807
Latest:
GoldDigger1950
Stats
Total Posts: 32565
Total Topics: 5509
Online Today: 58
Online Ever: 2482
(April 09, 2011, 07:02:45 pm)
Users Online
Users: 3
Guests: 30
Total: 33
BSD2000
Draffi
SMFHacks.com
Forum
Modifications/Themes
Modifications Talk
Latest Mods
SMF Links
0 Members and 1 Guest are viewing this topic.
« previous
next »
Pages:
1
...
15
16
[
17
]
18
19
...
24
Author
Topic: SMF Links (Read 221979 times)
samyot
Inline PM Customer
Offline
Posts: 4
Re: SMF Links
«
Reply #240 on:
October 17, 2007, 09:14:07 am »
OK, I've removed the permissions through the Links Configuration and changed the permissions through the Member Permissions instead and set the Guest group to only view.
I'll see within the next few days if they can still spam my links directory.....
Logged
GameSocket
Jr. Member
Offline
Posts: 79
NZ Made
Re: SMF Links
«
Reply #241 on:
October 17, 2007, 06:38:19 pm »
If this works your a champion. I'm in my database admin. What am I changing and how. I think all I have just done is add more tables. I changed the ID_CAT......0 to 3 and clicked GO but nothing happend..is that right?
Logged
(\__/)
(O.o ) *If You need help, best not to ask me*
(> < )
GameSocket
Jr. Member
Offline
Posts: 79
NZ Made
Re: SMF Links
«
Reply #242 on:
October 18, 2007, 04:31:43 am »
Ok.. I cleared my forum error reports and then tried to accept or decline...this is the error I got
8: Undefined index: smflinks_set_count_child
File: /home/ezmne3/public_html/gamesocket2/Themes/default/languages/Admin.english.php (eval?)
Line: 1358
Logged
(\__/)
(O.o ) *If You need help, best not to ask me*
(> < )
samyot
Inline PM Customer
Offline
Posts: 4
Re: SMF Links
«
Reply #243 on:
October 18, 2007, 11:12:19 am »
Quote from: GameSocket on October 17, 2007, 06:38:19 pm
If this works your a champion. I'm in my database admin. What am I changing and how. I think all I have just done is add more tables. I changed the ID_CAT......0 to 3 and clicked GO but nothing happend..is that right?
Hi,
I just verified your site and you don't appear to have a cat with ID3, try changing all ID_CAT that = 0 to 1 (since you have one, Game Sites)
Logged
GameSocket
Jr. Member
Offline
Posts: 79
NZ Made
Re: SMF Links
«
Reply #244 on:
October 18, 2007, 04:26:26 pm »
ahhh. Thanks samyot.
Finally can clear them. Its always been a long process to clear waiting links but now I have 146 to do over time.
I always had spammers/bots putting in links but they have always shown up. Something has changed somewhere.
I am working on getting an existing links software to install into SMF that has its own settings, capture, admin and support forum. I just have to read up tutorials and send a lot more emails to the makers(done that and responded). Probably nearer the end of the year
Thankyou so much for your reply.
Logged
(\__/)
(O.o ) *If You need help, best not to ask me*
(> < )
samyot
Inline PM Customer
Offline
Posts: 4
Re: SMF Links
«
Reply #245 on:
October 19, 2007, 01:33:07 pm »
No prob!
I just wanted to let you know that I haven't had any spam entries since changing the permissions through the Member Permissions instead of the Links MOD and setting the Guest group to only view!
Logged
GameSocket
Jr. Member
Offline
Posts: 79
NZ Made
Re: SMF Links
«
Reply #246 on:
October 19, 2007, 11:58:39 pm »
Cheers. Yeah I got mine on Guest post. Might change it and just use contact for genuine links.
Thanks
Logged
(\__/)
(O.o ) *If You need help, best not to ask me*
(> < )
sasawawa
Inline PM Customer
Offline
Posts: 12
Re: SMF Links
«
Reply #247 on:
October 28, 2007, 12:59:09 pm »
Thanks,installed successfully.
But i have one question, how can i add a new tag that named "links" on my homepage.
I just add
Code:
if ($context['current_action'] == 'links')
$current_action = 'links';
after
Code:
if ($context['current_action'] == 'search2')
$current_action = 'search';
in my forum index.template.php i using default theme.
But i still can't see there is a tag "links' display on my homepage.
Help need ,please.
Any help will be appreciated
Logged
http://www.invest-tracing.com/forum/index.php
GameSocket
Jr. Member
Offline
Posts: 79
NZ Made
Re: SMF Links
«
Reply #248 on:
October 28, 2007, 06:13:46 pm »
Code:
// How about the [links] button?
echo '
<a href="', $scripturl, '?action=links">', ($settings['use_image_buttons'] ? '<img src="' . $settings['images_url'] . '/' . $context['user']['language'] . '/links.gif" alt="' . $txt['links'] . '" border="0" />' : $txt['links']), '</a>', $context['menu_separator'];
// How about the [search] button?
if ($context['allow_search'])
echo '
<a href="', $scripturl, '?action=search">', ($settings['use_image_buttons'] ? '<img src="' . $settings['images_url'] . '/' . $context['user']['language'] . '/search.gif" alt="' . $txt[182] . '" border="0" />' : $txt[182]), '</a>', $context['menu_separator'];
You will see where it goes
Logged
(\__/)
(O.o ) *If You need help, best not to ask me*
(> < )
sasawawa
Inline PM Customer
Offline
Posts: 12
Re: SMF Links
«
Reply #249 on:
October 29, 2007, 03:51:28 am »
I have added the links tag on my homepage, but only admins can see the links tag.
Members and guests can't see it.
Moreover, when the members group visit the URL "forum/index.php?action=links"
There is a note :
An Error Has Occurred!
Below is the code in my index.template.php :
Code:
// Show the menu up top. Something like [home] [help] [profile] [logout]...
function template_menu()
{
global $context, $settings, $options, $scripturl, $txt;
// Work out where we currently are.
$current_action = 'home';
if (in_array($context['current_action'], array('admin', 'managegames', 'arcadesettings', 'arcadecategory', 'ban', 'boardrecount', 'cleanperms', 'detailedversion', 'dumpdb', 'featuresettings', 'featuresettings2', 'findmember', 'maintain', 'manageattachments', 'manageboards', 'managecalendar', 'managesearch', 'membergroups', 'modlog', 'news', 'optimizetables', 'packageget', 'packages', 'permissions', 'pgdownload', 'postsettings', 'regcenter', 'repairboards', 'reports', 'serversettings', 'serversettings2', 'smileys', 'viewErrorLog', 'viewmembers')))
$current_action = 'admin';
if (in_array($context['current_action'], array('links','search', 'arcade', 'admin', 'calendar', 'profile', 'mlist','register', 'login', 'help', 'pm')))
$current_action = $context['current_action'];
if ($context['current_action'] == 'search2')
$current_action = 'search';
if ($context['current_action'] == 'links')
$current_action = 'links';
if ($context['current_action'] == 'theme')
$current_action = isset($_REQUEST['sa']) && $_REQUEST['sa'] == 'pick' ? 'profile' : 'admin';
// Are we using right-to-left orientation?
if ($context['right_to_left'])
{
$first = 'last';
$last = 'first';
}
else
{
$first = 'first';
$last = 'last';
}
// Show the start of the tab section.
echo '
<table cellpadding="0" cellspacing="0" border="0" style="margin-left: 10px;">
<tr>
<td class="maintab_' , $first , '"> </td>';
// Show the [home] button.
echo ($current_action=='home' || $context['browser']['is_ie4']) ? '<td class="maintab_active_' . $first . '"> </td>' : '' , '
<td valign="top" class="maintab_' , $current_action == 'home' ? 'active_back' : 'back' , '">
<a href="', $scripturl, '">' , $txt[103] , '</a>
</td>' , $current_action == 'home' ? '<td class="maintab_active_' . $last . '"> </td>' : '';
// Show the [help] button.
echo ($current_action == 'help' || $context['browser']['is_ie4']) ? '<td class="maintab_active_' . $first . '"> </td>' : '' , '
<td valign="top" class="maintab_' , $current_action == 'help' ? 'active_back' : 'back' , '">
<a href="', $scripturl, '?action=help">' , $txt[119] , '</a>
</td>' , $current_action == 'help' ? '<td class="maintab_active_' . $last . '"> </td>' : '';
echo ($current_action == 'arcade' || $context['browser']['is_ie4']) ? '<td class="maintab_active_' . $first . '"> </td>' : '' , '
<td valign="top" class="maintab_' , $current_action == 'arcade' ? 'active_back' : 'back' , '">
<a href="', $scripturl, '?action=arcade">' , $txt['arcade'] , '</a>
</td>' , $current_action == 'arcade' ? '<td class="maintab_active_' . $last . '"> </td>' : '';
// How about the [search] button?
if ($context['allow_search'])
echo ($current_action == 'search' || $context['browser']['is_ie4']) ? '<td class="maintab_active_' . $first . '"> </td>' : '' , '
<td valign="top" class="maintab_' , $current_action == 'search' ? 'active_back' : 'back' , '">
<a href="', $scripturl, '?action=search">' , $txt[182] , '</a>
</td>' , $current_action == 'search' ? '<td class="maintab_active_' . $last . '"> </td>' : '';
// the [links] button
if ($context['allow_view_smflinks'])
echo ($current_action == 'links' || $context['browser']['is_ie4']) ? '<td class="maintab_active_' . $first . '"> </td>' : '' , '
<td valign="top" class="maintab_' , $current_action == 'links' ? 'active_back' : 'back' , '">
<a href="', $scripturl, '?action=links">' ,links , '</a>
</td>' , $current_action == 'links' ? '<td class="maintab_active_' . $last . '"> </td>' : '';
// Is the user allowed to administrate at all? ([admin])
if ($context['allow_admin'])
echo ($current_action == 'admin' || $context['browser']['is_ie4']) ? '<td class="maintab_active_' . $first . '"> </td>' : '' , '
<td valign="top" class="maintab_' , $current_action == 'admin' ? 'active_back' : 'back' , '">
<a href="', $scripturl, '?action=admin">' , $txt[2] , '</a>
</td>' , $current_action == 'admin' ? '<td class="maintab_active_' . $last . '"> </td>' : '';
// Edit Profile... [profile]
if ($context['allow_edit_profile'])
echo ($current_action == 'profile' || $context['browser']['is_ie4']) ? '<td class="maintab_active_' . $first . '"> </td>' : '' , '
<td valign="top" class="maintab_' , $current_action == 'profile' ? 'active_back' : 'back' , '">
<a href="', $scripturl, '?action=profile">' , $txt[79] , '</a>
</td>' , $current_action == 'profile' ? '<td class="maintab_active_' . $last . '"> </td>' : '';
// Go to PM center... [pm]
if ($context['user']['is_logged'] && $context['allow_pm'])
echo ($current_action == 'pm' || $context['browser']['is_ie4']) ? '<td class="maintab_active_' . $first . '"> </td>' : '' , '
<td valign="top" class="maintab_' , $current_action == 'pm' ? 'active_back' : 'back' , '">
<a href="', $scripturl, '?action=pm">' , $txt['pm_short'] , ' ', $context['user']['unread_messages'] > 0 ? '[<strong>'. $context['user']['unread_messages'] . '</strong>]' : '' , '</a>
</td>' , $current_action == 'pm' ? '<td class="maintab_active_' . $last . '"> </td>' : '';
// The [calendar]!
if ($context['allow_calendar'])
echo ($current_action == 'calendar' || $context['browser']['is_ie4']) ? '<td class="maintab_active_' . $first . '"> </td>' : '' , '
<td valign="top" class="maintab_' , $current_action == 'calendar' ? 'active_back' : 'back' , '">
<a href="', $scripturl, '?action=calendar">' , $txt['calendar24'] , '</a>
</td>' , $current_action == 'calendar' ? '<td class="maintab_active_' . $last . '"> </td>' : '';
// the [member] list button
if ($context['allow_memberlist'])
echo ($current_action == 'mlist' || $context['browser']['is_ie4']) ? '<td class="maintab_active_' . $first . '"> </td>' : '' , '
<td valign="top" class="maintab_' , $current_action == 'mlist' ? 'active_back' : 'back' , '">
<a href="', $scripturl, '?action=mlist">' , $txt[331] , '</a>
</td>' , $current_action == 'mlist' ? '<td class="maintab_active_' . $last . '"> </td>' : '';
// If the user is a guest, show [login] button.
if ($context['user']['is_guest'])
echo ($current_action == 'login' || $context['browser']['is_ie4']) ? '<td class="maintab_active_' . $first . '"> </td>' : '' , '
<td valign="top" class="maintab_' , $current_action == 'login' ? 'active_back' : 'back' , '">
<a href="', $scripturl, '?action=login">' , $txt[34] , '</a>
</td>' , $current_action == 'login' ? '<td class="maintab_active_' . $last . '"> </td>' : '';
// If the user is a guest, also show [register] button.
if ($context['user']['is_guest'])
echo ($current_action == 'register' || $context['browser']['is_ie4']) ? '<td class="maintab_active_' . $first . '"> </td>' : '' , '
<td valign="top" class="maintab_' , $current_action == 'register' ? 'active_back' : 'back' , '">
<a href="', $scripturl, '?action=join">' , $txt[97] , '</a>
</td>' , $current_action == 'register' ? '<td class="maintab_active_' . $last . '"> </td>' : '';
// Otherwise, they might want to [logout]...
if ($context['user']['is_logged'])
echo ($current_action == 'logout' || $context['browser']['is_ie4']) ? '<td class="maintab_active_' . $first . '"> </td>' : '' , '
<td valign="top" class="maintab_' , $current_action == 'logout' ? 'active_back' : 'back' , '">
<a href="', $scripturl, '?action=logout;sesc=', $context['session_id'], '">' , $txt[108] , '</a>
</td>' , $current_action == 'logout' ? '<td class="maintab_active_' . $last . '"> </td>' : '';
// The end of tab section.
echo '
<td class="maintab_' , $last , '"> </td>
</tr>
</table>';
}
I do appreciate for your help
Logged
http://www.invest-tracing.com/forum/index.php
GameSocket
Jr. Member
Offline
Posts: 79
NZ Made
Re: SMF Links
«
Reply #250 on:
October 29, 2007, 04:39:50 am »
Have you gone to admin links settings and set it for guests and members?
Admin>>Board permissions>>>guests modify>>SMF Links>>>tick or untick your preferences.
Do the same thing for members.
Logged
(\__/)
(O.o ) *If You need help, best not to ask me*
(> < )
sasawawa
Inline PM Customer
Offline
Posts: 12
Re: SMF Links
«
Reply #251 on:
October 29, 2007, 06:10:05 am »
Quote from: GameSocket on October 29, 2007, 04:39:50 am
Have you gone to admin links settings and set it for guests and members?
Admin>>Board permissions>>>guests modify>>SMF Links>>>tick or untick your preferences.
Do the same thing for members.
Thanks for your reply,GameSocket.
But there is no the option of SMF under my Admin>>Board permissions>>>guests modify
Btw, i have enabled guests and all members' permission of "View,add link, edit own link, delete own link " .
Still doesn't work.
«
Last Edit: October 29, 2007, 06:14:11 am by sasawawa
»
Logged
http://www.invest-tracing.com/forum/index.php
GameSocket
Jr. Member
Offline
Posts: 79
NZ Made
Re: SMF Links
«
Reply #252 on:
October 29, 2007, 06:22:41 am »
where is your site? I done use the default theme and I don't like links that much.
If you have given them those permissions the should be seeing the link and access.
Logged
(\__/)
(O.o ) *If You need help, best not to ask me*
(> < )
sasawawa
Inline PM Customer
Offline
Posts: 12
Re: SMF Links
«
Reply #253 on:
October 29, 2007, 11:47:23 am »
My forum link is here :
http://www.invest-tracing.com/forum/index.php
May i ask you a favor ?
Could you check my code fix me the problem ?
I am stupid with the codes .
Logged
http://www.invest-tracing.com/forum/index.php
sasawawa
Inline PM Customer
Offline
Posts: 12
Re: SMF Links
«
Reply #254 on:
October 29, 2007, 12:34:50 pm »
Quote from: SMFHacks on July 12, 2006, 11:36:19 am
Then the mod isn't installed.
Links are not handled in the admin panel. You need to go to the links page
http://yoursite.com/index.php?act=links
from there you can add categories and manage links.
Only thing in the admin panel you will find is permissions under the permissions page.
SMFHacks.com
Dear Admin,
i don't see there is links permissions under my forum Admin CP- Members--Permissions
Logged
http://www.invest-tracing.com/forum/index.php
Pages:
1
...
15
16
[
17
]
18
19
...
24
« previous
next »
Jump to:
Please select a destination:
-----------------------------
SMFHacks.com
-----------------------------
=> News
=> Site Discussion
===> Suggestions
===> Bugs
-----------------------------
SMF Gallery Pro
-----------------------------
=> Announcements
=> Presales
=> Support
===> Bugs
===> Feature Requests
-----------------------------
SMF Store
-----------------------------
=> Announcements
=> Presales
=> Support
===> Guides and Tips
===> Feature Requests
===> Bugs
-----------------------------
SMF Classifieds
-----------------------------
=> Announcements
=> Presales
=> Support
===> Bugs
===> Feature Requests
-----------------------------
Downloads System Pro
-----------------------------
=> Announcements
=> Presales
=> Support
===> Feature Requests
===> Bugs
-----------------------------
Ad Seller Pro
-----------------------------
=> Presales
=> Support
-----------------------------
Menu Editor Pro
-----------------------------
=> Presales Menu Editor Pro
=> Bug Reports
-----------------------------
Inline Personal Messages
-----------------------------
=> Presales
=> Support
=> Bug Reports
-----------------------------
Newsletter Pro
-----------------------------
=> Presales
=> Support
===> Feature Requests
-----------------------------
Badge Awards
-----------------------------
=> Presales
=> Support
-----------------------------
Tweet Topics/FB Post System
-----------------------------
=> Presales
-----------------------------
Social Login Pro
-----------------------------
=> Presales
-----------------------------
SMF Gallery Lite
-----------------------------
=> SMF Gallery Lite
-----------------------------
Modifications/Themes
-----------------------------
=> General SMF Forum
=> Modifications Talk
===> Latest Mods
===> Modification Showcase
=> Theme Talk
===> Theme Showcase
===> Latest Themes
Recent
Badge block
by
SMFHacks
[
Today
at 07:25:45 pm]
Rebadging after install
by
SMFHacks
[
Today
at 07:19:48 pm]
Showing Badge Icons on Bo...
by
Draffi
[
Today
at 06:00:40 pm]
WhatÄs this?
by
Labradoodle-360
[
Today
at 01:36:26 pm]
A few problems with Ad Se...
by
SeppoK
[
Today
at 03:45:00 am]
Can "Ad Seller Pro" do it...
by
SMFHacks
[June 18, 2013, 07:27:33 am]
Feature Requests for SMF ...
by
BSD2000
[June 18, 2013, 06:10:04 am]
paid auctions
by
SMFHacks
[June 17, 2013, 12:27:50 pm]
Wow
by
Nicole
[June 16, 2013, 08:17:21 pm]
Modification allowing Adm...
by
AcEAndroid
[June 15, 2013, 08:34:38 pm]
Random Picture
Donate to SMFHacks.com
Help Support the SMFHacks.com mod making.
Loading...