Search found 2692 matches

by netclectic
Mon May 29, 2006 12:15 pm
Forum: [2.0.x] MOD Writers Discussion
Topic: [Function] Insert Post
Replies: 437
Views: 146086

Re: SOMEONE PLEASE PUT THIS FILE ON THE WEB

FYI, the forums are back online and this file is now available for download again.


jane_jolin wrote: The Download link is broken at: :(

http://www.netclectic.com/forums/download.php?id=154

SOMEONE PLEASE PUT THIS FILE ON THE WEB. IT'S TOO VALUBLE TO BE LOST!!!

Kind Regards,

Jane
by netclectic
Fri Jun 04, 2004 3:27 pm
Forum: [2.0.x] MOD Writers Discussion
Topic: Help please... problem populating dropdown, multiple entries
Replies: 5
Views: 1792

All looks ok, i suggest your test your array just after the merge to see what's actualy in it. Maybe the merge is doing something wierd with the result of fetchrow.
by netclectic
Mon Apr 19, 2004 8:38 pm
Forum: [2.0.x] MOD Database Cleanup
Topic: [2.0.6] Watched Topics List
Replies: 202
Views: 124879

Cool, i'd appreciate it if you would take the time to upload it to the mods database, make sure you state clearly that it's an add-on for this mod, with a url to this topic.

Cheers!
by netclectic
Mon Apr 19, 2004 7:10 pm
Forum: [2.0.x] MOD Database Cleanup
Topic: [2.0.6] Watched Topics List
Replies: 202
Views: 124879

These things are not translated in spanish and I cant seem to find where to add them. I checked lang_main but whenever I add something i get errors that say it already got info from page_header. You're on the right track, you need to add translations to you lang_spanish version of the lang_main fil...
by netclectic
Thu Apr 15, 2004 5:00 pm
Forum: [2.0.x] MOD Writers Discussion
Topic: Need switch_admin_login type help
Replies: 6
Views: 1914

There is no such switch by default, so you'll have to add it yourself:

in includes/page_header.php
find

Code: Select all

$template->assign_block_vars('switch_user_logged_in', array());
after, add

Code: Select all

	if ($userdata['user_level'] == ADMIN)
	{
		$template->assign_block_vars('switch_admin_logged_in', array());
	}
by netclectic
Thu Apr 15, 2004 4:53 pm
Forum: [2.0.x] MOD Database Cleanup
Topic: [2.0.6] Today At/Yesterday At
Replies: 168
Views: 55259

Something must be messing with the file when it's being downloaded, as it definitly appears correctly in the file when i download it here and nobody else has reported a problem with it.

Do you use any download tools?
by netclectic
Thu Apr 15, 2004 7:23 am
Forum: [2.0.x] MOD Writers Discussion
Topic: "Template->loadfile(): No file specified for handle&
Replies: 4
Views: 1822

Most likely scenario is that this file (posting_topic_review.tpl) is not in your template directory, or you've misspelled it's name.
by netclectic
Thu Apr 15, 2004 7:20 am
Forum: [2.0.x] MOD Database Cleanup
Topic: [2.0.6] Cat Index Alternative
Replies: 126
Views: 52111

No, i don't think this will do what you are looking for.

This mod will hide whole categories, not individual forums or topics.
by netclectic
Wed Apr 14, 2004 5:20 pm
Forum: [2.0.x] MOD Database Cleanup
Topic: [2.0.6] Today At/Yesterday At
Replies: 168
Views: 55259

They should be <br /> and ?>

what browser do you use?
what editor are you using?

when i download the file using Firefox or IE they appear correctly.
by netclectic
Tue Apr 13, 2004 10:24 pm
Forum: [2.0.x] MOD Database Cleanup
Topic: [2.0.6] View Profile Sig
Replies: 71
Views: 36644

I suggest you either spend some more time rummaging around in your template files or you ask the authors of your templates for some assistance.
by netclectic
Tue Apr 13, 2004 7:07 am
Forum: [2.0.x] MOD Database Cleanup
Topic: [2.0.6] Rank in memberlist
Replies: 318
Views: 100765

maybe the stray f on then end of this line in your memberlist_body.tpl file has something to do with it?

Code: Select all

<td class="{memberrow.ROW_CLASS}" align="center"><span class="gen">&nbsp;{memberrow.ROW_NUMBER}&nbsp;</span></td>f
by netclectic
Mon Apr 12, 2004 1:56 pm
Forum: [2.0.x] MOD Database Cleanup
Topic: [2.0.6] FIND - Forum Integrated News Delivery - Input
Replies: 1078
Views: 248369

try this instead then:

Code: Select all

str_replace("'", "''", unprepare_message($subject))
by netclectic
Mon Apr 12, 2004 11:57 am
Forum: [2.0.x] MOD Database Cleanup
Topic: [2.0.6] FIND - Forum Integrated News Delivery - Input
Replies: 1078
Views: 248369

Try this...

in mods/netclectic/find_input/includes/functions_news.php

find

Code: Select all

str_replace("'", "''", $subject)
replace with

Code: Select all

str_replace("'", "''", stripslashes($subject))
see if that changes anything.
by netclectic
Fri Apr 09, 2004 4:03 pm
Forum: [2.0.x] MOD Writers Discussion
Topic: Quick 'n dirty Insert posts into ...
Replies: 1
Views: 996

This might help you: [Function] Insert Post

Go to advanced search