Permissions on a windows server should always be fine... well, it is for me. But then again, I'm not using IIS
You might need to change the owner of the directory to the user running the webserver.
776 2007-03-27 15:55
Re: punbb in a windows server! (6 replies, posted in PunBB 1.2 troubleshooting)
777 2007-03-26 12:59
Re: Getting the forum ID (6 replies, posted in PunBB 1.2 discussion)
$fid for forum ID, $cur_post['uid'] for user ID and $cur_post['g_id'] for group ID.
778 2007-03-25 21:38
Re: Getting the forum ID (6 replies, posted in PunBB 1.2 discussion)
You'd need to put a check around the pun_htmlspecialchars() function call. I suggest you pass on these variables in viewtopic.php. It should be possible
779 2007-03-25 21:21
Re: Getting the forum ID (6 replies, posted in PunBB 1.2 discussion)
Where would you like to use this?
780 2007-03-25 21:17
Re: Group numbers? (solved) (4 replies, posted in PunBB 1.2 discussion)
I'm sure. Unverified is 32000.
781 2007-03-25 20:53
Re: Group numbers? (solved) (4 replies, posted in PunBB 1.2 discussion)
define('PUN_ADMIN', 1);
define('PUN_MOD', 2);
define('PUN_GUEST', 3);
define('PUN_MEMBER', 4);
That should tell you enough
782 2007-03-25 16:27
Re: Easy profile fields language error (6 replies, posted in PunBB 1.2 troubleshooting)
Oh right, it uses the lang/*/common.php file for it's (rarely used) language stuff. But that should only be used when you explicitly define a language index to be used when creating the field. Shouldn't give this kind of error =/
783 2007-03-25 14:11
Re: Easy profile fields language error (6 replies, posted in PunBB 1.2 troubleshooting)
Make sure the language files of the mod are there.
784 2007-03-17 15:41
Re: This type of CSS elements overview would be nice to see re punBB... (3 replies, posted in PunBB 1.2 discussion)
Any chance such a thing would be in PunXS?
785 2007-03-16 16:12
Re: Little job offer: Request for a very simple calendar code snippet (2 replies, posted in Programming)
I'm interested, but I'm away for a week =/
So I'm afraid I can't help you.
786 2007-03-15 09:02
Re: Extensions and Languages in 1.3 (8 replies, posted in PunBB 1.2 discussion)
I'd fall back to english when the specified language isn't included in the extension.
787 2007-03-15 08:58
Re: Extensions and Languages in 1.3 (8 replies, posted in PunBB 1.2 discussion)
Language files are just arrays, so you can define them in a hook on the page you want and merge them with the array?
788 2007-03-14 22:13
Re: [HOWTO] - Upgrade mod compatibility for 1.2.* (38 replies, posted in PunBB 1.2 modifications, plugins and integrations)
Before the code given in instruction 7, add the code in instruction 8.
789 2007-03-14 20:54
Re: most used words in topics? (9 replies, posted in Programming)
Rickard's query seems a fair bit slower (both are on the same DB):
mysql> SELECT sw.word, COUNT(sm.post_id) AS hits
-> FROM search_words AS sw
-> INNER JOIN search_matches AS sm ON sw.id = sm.word_id
-> GROUP BY sw.id
-> ORDER BY hits DESC LIMIT 50;
+----------+------+
| word | hits |
+----------+------+
| moved | 2 |
| enjoy | 1 |
| posting | 1 |
| and | 1 |
| imported | 1 |
| maybe | 1 |
| guests | 1 |
| new | 1 |
| forum | 1 |
| put | 1 |
| spam | 1 |
| removed | 1 |
| portal | 1 |
| bots | 1 |
| fairly | 1 |
| brand | 1 |
| again | 1 |
| flooding | 1 |
| hosting | 1 |
| section | 1 |
| doubt | 1 |
| us | 1 |
| links | 1 |
| strategy | 1 |
| data | 1 |
| needed | 1 |
| anyway | 1 |
| page | 1 |
| improved | 1 |
| old | 1 |
+----------+------+
30 rows in set (0.10 sec)
790 2007-03-14 20:22
Re: punBB acessibility (18 replies, posted in PunBB 1.2 discussion)
Image verification isn't standard on PunBB; it's a mod.
791 2007-03-14 18:11
Re: How can you have it auo-rank up a user (6 replies, posted in PunBB 1.2 troubleshooting)
Not really Jeckyl, it needs you to fill in amounts of posts per forum.
It'll get a huge overhaul in the 1.3 extension tho.
792 2007-03-14 17:21
Re: How can you have it auo-rank up a user (6 replies, posted in PunBB 1.2 troubleshooting)
http://www.punres.org/desc.php?pid=242
Is that in the lines of what you were looking for? It's not perfect, but can be adapted to work perfectly
793 2007-03-14 12:04
Re: most used words in topics? (9 replies, posted in Programming)
Worked for me:
mysql> SELECT COUNT( m.post_id ) , w.word
-> FROM search_matches AS m
-> INNER JOIN search_words AS w ON m.word_id = w.id
-> GROUP BY m.word_id
-> ORDER BY COUNT( m.post_id ) DESC
-> LIMIT 100;
+--------------------+----------+
| COUNT( m.post_id ) | word |
+--------------------+----------+
| 2 | moved |
| 1 | needed |
| 1 | data |
| 1 | section |
| 1 | fairly |
| 1 | spam |
| 1 | maybe |
| 1 | old |
| 1 | strategy |
| 1 | hosting |
| 1 | bots |
| 1 | put |
| 1 | imported |
| 1 | improved |
| 1 | links |
| 1 | flooding |
| 1 | portal |
| 1 | forum |
| 1 | and |
| 1 | page |
| 1 | us |
| 1 | again |
| 1 | removed |
| 1 | new |
| 1 | posting |
| 1 | anyway |
| 1 | doubt |
| 1 | brand |
| 1 | guests |
| 1 | enjoy |
+--------------------+----------+
30 rows in set (0.06 sec)
794 2007-03-13 22:43
Re: Time change isnt showing on posts (20 replies, posted in PunBB 1.2 troubleshooting)
I don't see what's wrong with it =/ What's so hard about changing your clock?
795 2007-03-13 22:34
Re: showing changes before login, but not after (10 replies, posted in PunBB 1.2 troubleshooting)
If your logo's name is '*banner*' and you have Adblock installed, iot might be blocked
796 2007-03-13 20:20
Re: Hooks have been added to 1.3 (38 replies, posted in PunBB 1.2 discussion)
They've started with oxygen, but will provide the other standard styles still... they'll just be modified to the new markup and look.
And I like the new look really, it gives a more modern feel to PunBB.
797 2007-03-13 18:28
Re: most used words in topics? (9 replies, posted in Programming)
It should hide stopwords, as they're not included in the table?
798 2007-03-12 15:24
Re: Problems with post.php (4 replies, posted in PunBB 1.2 troubleshooting)
I think you've placed the JavaScript in the wrong position Try going over the readme again...
799 2007-03-12 15:09
Re: Problems with post.php (4 replies, posted in PunBB 1.2 troubleshooting)
Did you make any changes to post.php?
800 2007-03-11 21:55
Re: Vanilla vs PunBB (14 replies, posted in PunBB 1.2 discussion)
You can pretty much change everything with CSS. So that's not an argument IMO.