Posts
 
Reputation
Joined
Last Seen
Ranked #4K
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
100% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
1 Commented Post
0 Endorsements
~2K People Reached
Favorite Tags

4 Posted Topics

Member Avatar for kishore5001

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 …

Member Avatar for afbach
0
2K
Member Avatar for countrygirl1970

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 …

Member Avatar for John A
0
117
Member Avatar for afbach

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

Member Avatar for Dani
0
196
Member Avatar for Mullimuh

[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)(/.*)$ …

Member Avatar for afbach
0
163

The End.