- Strength to Increase Rep
- +0
- Strength to Decrease Rep
- -0
- Upvotes Received
- 1
- Posts with Upvotes
- 1
- Upvoting Members
- 1
- Downvotes Received
- 0
- Posts with Downvotes
- 0
- Downvoting Members
- 0
4 Posted Topics
There's a related "token" __DATA__ and anything after that in the script can be accessed by the file handle "DATA" as in: [code] while (<DATA>) { # do something w/ the lines ... } __DATA__ first data line 2nd data line [/code] This lets you build your data/test stuff right …
Yes, you start using 0-8 but jump to 1-9. I'm not clear, in Checkposn what "cout << break" is supposed to do, but there's it's not going to get you past the cout line you're always seeing, right? It just stops the 'cascade' of the switch statement. Did you want …
Anybody else get a 'please take a quick survey' from csgal? The surveymonkee link just spins (I'd copy it but it ends w/ "DONT_COPY_THIS_LINK" and I always listen to my URLs ;-). a
[QUOTE=Mullimuh] So I edited the httpd.conf with following 2 lines: AliasMatch ^(?:/(?:en¦es¦fr¦ja¦ko¦ru))?(/.*)?$ "/usr/local/apache2/htdocs/MyProject/eng$1" AliasMatch ^(?:/(?:de))?(/.*)?$ "/usr/local/apache2/htdocs/MyProject/de$1" Thanks for your help[/QUOTE] Yeah, your first RE has the '?' (zero or one) around the whole of the alternative, which means the first RE will match everything. Try: AliasMatch ^(?:/(?:en¦es¦fr¦ja¦ko¦ru))(/.*)$ "/usr/local/apache2/htdocs/MyProject/eng$1" AliasMatch ^(?:/de)(/.*)$ …
The End.
afbach