126

(2 replies, posted in Programming)

http://httpd.apache.org/docs/mod/mod_rewrite.html

127

(13 replies, posted in Feature requests)

There's a mod to highlight PHP, ... code at PunRes.

hcgtv wrote:

Coldplay is hot right now, I still prefer the old Rock & Roll though wink

I liked - and interviewed - Solas. (However, I think some of that was already obvious. smile )

129

(1,382 replies, posted in General discussion)

foreign

130

(34 replies, posted in PunBB 1.2 bug reports)

Mines' an iPAQ rx3115 with latest ROM version and Windows® Mobile 2003 Second Edition. Has WiFi and Bluetooth.

131

(17 replies, posted in News)

This is an old topic, I know.... I just wanted to say how clever it was of Rickard to make the subject line "PunBB & Subversion & Trac == true".

Reminds me of something like

<?php

$PunBB = true;
$Subversion = true;
$Trac = true;

if ($PunBB && Subversion && Trac == true) {
    echo 'Good.';
}
else {
    echo "Bad. Either get PunBB, Subversion, or Trac, or a combination thereof until this says \"Good.\"";
}

echo '<br />Read the above line.';

?>

The subject should be more like "PunBB && Subversion && Trac == true" to be more like PHP, though. smile

Yay! It uses PunBB for the forums. (Wait. I already knew that. smile ) CMS Made Simple could be abbreviated as CMS, which could be a recursive acronym then for CMS: Made Simple. (Back on topic...)

133

(17 replies, posted in PunBB 1.2 troubleshooting)

At least ¾ of it isn't blank as it was before. smile

134

(17 replies, posted in PunBB 1.2 troubleshooting)

Maybe ½ that size or smaller would be better. smile

135

(34 replies, posted in PunBB 1.2 bug reports)

What model iPAQ is it?

I'm opening up my image program again... thanks for the feedback. Can you read it now?

I added some extra space (just 24 pt/px worth) to use if I need extra space for quotes and stuff. smile

138

(63 replies, posted in Feature requests)

GregK: psst... that wasn't from yesterday; I just had it on hand from earlier. ...psst

It should be like 1.2: extern.php?type=RSS&fid=[forum id]&action=[active or new]

big_smile That was something I uploaded but don't need anymore.

I know. smile

I got everything fixed, but there's one problem: When I try to change the style, it doesn't set a cookie. And, the page that sets the cookie (supposedly, anyway) redirectsa back to the HTTP_REFERER.

For example, I am on http://www.scottywz.com/scottywz.com/viewtopic.php?id=11 (my Links page). I click the Submit button under Change Style, and it (supposedly) sets the cookie and (certainly) redirects back to http://www.scottywz.com/scottywz.com/viewtopic.php?id=11. Neat, huh? smile

My gosh! The problem was with neither; it was with a LANGUAGE file, of all things! mad lol smile

I'm so sorry my site was down for over 12 hours over a LANGUAGE file. smile

143

(8 replies, posted in PunBB 1.2 discussion)

Connorhd wrote:

wow ScottyWZ.COM: [ Generated in 0.948 seconds, 18 queries executed ] how do you manage that? thats huge

It's all modded up. smile So are my forums and SECM. the 2 test ones are unmodded.

144

(34 replies, posted in PunBB 1.2 bug reports)

GregK wrote:

...

Someone pack v1.3 in a .zip & I'll launch it today! We can make a handheld/screen TPL for PUN, a community project. I have OrganicCSS.com ready & waiting! wink

...

There could be unknown vulnerabiltites, but here I zipped it.

Rickard wrote:

Yes, please make your signature images a bit smaller. Half that size would be desirable.

Yes. I just left the empty space in the 1st one in case I needed it but I'll remove the blank space. smile And I just did.

Now if only I could combine the 2 or something... (And I just did. smile )

There's a html2xhtml.js file in the root. I was looking at a modded install.php script and I found some JavaScript in there to validate the form.

147

(33 replies, posted in Programming)

You could call Microsoft®, they don't support your Windows® version anymore, so they might charge you $35 USD, but if it's a product activation problem they might not charge you, I don't know.

148

(33 replies, posted in Programming)

I would go ahead and just install SP2.

If <del> is a strikethrough, you may want to use <strike> instead? smile

Gizzmo wrote:

how would i go about adding lists, like this

The people who wrote that page wrote:


  • Red

  • Blue

  • Yellow

The proper syntax should be:


  • Red

  • Blue

  • Yellow

- - - - - - - - - - - - - - - - - - - - - - - -

shinko_metsuo wrote:

instead of adding BBcode to your DB you could have it in a TXT (probly easyer)

In a PHP instead so I can include() it in the parser.php file and it will get parsed by PHP. And maybe an admin plugin to edit said PHP file in an easier manner?
- - - - - - - - - - - - - - - - - - - - - - - -
Another BBCode suggestion: An [hr /] to add the <hr /> element ([hr /] to follow the rules of XHTML, maybe also a [hr])
- - - - - - - - - - - - - - - - - - - - - - - -

Ataxy wrote:

ok well i got it to work
so any way just a stupid error in the code of my previous code
the line to be added are the following it only gives two table but one may easly mod it to have more then two

'#\[table\](.*?),(.*?)\[/table\]#',

and

'<table><tr><td>$1</td><td>$2</td></tr></table>',

as i understood since xhtml is strict i had forgoten to close the <table> tag to </table>
and the result is the following
http://d-vault.peerforces.com/table2.png

EDIT:
ok to get 3 table just add this

'#\[table3\](.*?),(.*?),(.*?)\[/table3\]#',

and this

'<table><tr><td>$1</td><td>$2</td><td>$3</td></tr></table>',

Maybe a better way of making tables?
Eg.

[table][tr]Hi![/tr][tr]Hello, world![/tr][tr]Bye![/tr][/table]

Outputs:

<table><tr><td>Hi!</td></tr><tr><td>Hello, world!</td></tr><tr><td>Bye!</td></tr></table>

smile Allows users to have more than 3 or less than 2 rows.