0
votes
1answer
16 views
Flash URLLoader and Location -redirection
I have a Flash object that sends an URL request with URLLoader. However, how do I make it follow those Location: redirections in headers?
0
votes
3answers
37 views
htaccess 404 error redirection for /cat/sub/.html like urls
Hi friends,
How can I redirect such link (below) to 404 error page?
http://www.blabla.com/category/sub/.html
I generate a SEO friendly links, normally products has url like …
0
votes
3answers
49 views
Detect DNS Redirect in .NET
In a .NET application I am writing, I need to detect whether a particular URL is available. For the average user with a default DNS server, an invalid address would end up throwing a WebException. …
0
votes
2answers
25 views
How do I IIS redirect on a different port for tortoise svn
I installed VisualSVN on port 8080. So I can access it with http://www.mysite.com:8080 and everything works fine.
I now want to access the svn using http://svn.mysite.com instead of using port 8080. …
0
votes
0answers
77 views
Education.. how much how little? [closed]
Hi Everyone,
So a little background. Started out in construction and completed my apprenticeship over a 6 year period. Got married, bought 2 houses and decided I wanted to switch to computers. I …
0
votes
2answers
151 views
BASH script passing stdin input to a program and giving control back to user input
(I looked everywhere for this, perhaps my googling skill is off today)
I have a program that requires a handful of initialization cmds from stdin (and not through arguments). It'd be nice to move …
0
votes
1answer
21 views
Sharepoint Redirecting Users or Groups from a page to another.
Hello ,
What I am tring to do is, when people comes to that page:
http://server:26521/MY%5FPortal/service/default.aspx
I want them to be redirected to that page
http://server:26521/default.aspx
…
0
votes
2answers
29 views
Redirect window of command line tool to your app (Windows)
Hello,
is there a way (on Windows XP+) to redirect the output of a window created by a process created with e.g. CreateProcess to a window of your own program?
I'd like to make a nicer GUI for …
1
vote
5answers
81 views
Using file contents as command line arguements in BASH
I'd like to know how to use the contents of a file as command line arguments, but am struggling with syntax.
Say I've got the following:
# cat > arglist
src/file1 dst/file1
src/file2 dst/file2
…
0
votes
2answers
39 views
I want all page requests to point to a single page
The wrinkle is that the pages being requested are aspx pages and they are no longer present. I want any request coming to the root domain (and any subdomain like www) to redirect to a single page in …
0
votes
2answers
51 views
Regular expression with RedirectMatch does anything
Hi
I use .htaccess to perform redirection.
Here the line
RedirectMatch permanent .*\?langue=([\w]{2}).*id_([\w]+)=([1-9]+) …
2
votes
3answers
107 views
Retrieving stdin after using the redirection operator <
For a programming assignment, we have the following requirements:
It needs to be a command-line program written in C.
It needs to read text from a text document. However, we are to do this by using …
1
vote
2answers
109 views
How to activate new page on some event in MVVM-WPF?
Hi,
I have a list page which list records in graphical representation.
On clicking a some graphical portion or some button-which is added runtime on page- i want to activate new page by passing a …
6
votes
6answers
295 views
Can I capture stdout/stderr separately and maintain original order?
I've written a Windows application using the native win32 API. My app will launch other processes and capture the output and highlight stderr output in red.
In order to accomplish this I create a …
0
votes
3answers
84 views
How to supply many argv and outputredirection with one bash var ?
In file a.lst:
in1.a in1.b > out1.a 2> out1.b
in2.a in2.b > out2.a 2> out2.b
In do.sh:
CLI=$(sed -n -e "1 p" a.lst)
perl a.pl $CLI
I want to run like perl a.pl in1.a in1.b > …
