Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
4answers
1k views

How to redirect STDOUT and STDERR to a variable

I want to redirect STDERR and STDOUT to a variable. I did this. close(STDOUT); close(STDERR); my $out; open(STDOUT, ">>", \$out); open(STDERR, ">>", \$out); for(1..10) { print ...
4
votes
3answers
113 views

redirecting input in c++

i was told that to redirect from standard input to file i need to do the following: static std::ifstream inF("inpur.txt"); std::cin.rdbuf(inF.rdbuf()); and every call to std::cin will be redirected ...
1
vote
1answer
54 views

URL forwarding JSF

I have a JSP page which is named as erSelection.jsp. But, at the deployment in the configuration file it is stored as ERSelection.jsp as a result page not found error is found. Is there a way in JSF ...
1
vote
1answer
81 views

inconsistency of redirecting sys.stderr in IPython and console

Redirecting sys.stderr to a text file in IPython and console(Gnome terminal) yields different results. f=open('std.log','w') sys.stderr=f raise Exception,"message goes here" In IPython, the error ...
1
vote
1answer
112 views

Best practice for redirecting from one web domain to another in Grails?

I am currently working on a filter in Grails that will allow me to redirect all incoming requests on foo.org to the same subpage on foo.com. So far I have been doing the following: ...
1
vote
2answers
459 views

Redirecting Input/Output/Error Streams of a CMD.exe Process Completely with Java

My aim with this project was to have a remote command prompt feel with Java. Using TCP/IP sockets, I was aiming to run a command prompt process on one computer, and virtually transmit all control to ...
1
vote
2answers
296 views

Using SharpSVN how can you Export a file memory instead of to the filesystem?

So I know how to export files @ certain revisions to the filesystem (because all of the overloads for Export havie paths in them) but I do not want to have to use the filesystem for ease of access ...
1
vote
3answers
687 views

How to Redirect a Python Console output to a QTextBox

I'm working on developing a GUI for the recompilation of Linux kernel. For this I need to implement 4-5 Linux commands from Python. I use Qt as GUI designer. I have successfully implemented the ...
0
votes
3answers
47 views

Manipulating the output of GIT version control system from a Java program

I am invoking the Git executable from my Java program using the process builder class and running various git commands. Java program is being run from the command prompt. However, I'm not finding a ...
0
votes
1answer
37 views

Mod_rewrite rule like facebook have for users

I want that if anyone types www.mysite.com/anna then it will take it to www.mysite.com/second.php?user=anna (second.php in root directory) And on this second.php file there is a link to an ...
0
votes
7answers
70 views

PHP - Redirecting into another page

header("Location:post.php?id=120"); This is the method which i am using now to pass values between two pages. This is not a secure way. Instead of that i want to use "post" method of sending values ...
0
votes
2answers
231 views

How to redirect page with symfony from one form to another using ajax passing to actions?

I am struggling for simple redirecting page in symfony using ajax...but before redirecting we must save the form ..i dno how to cal action using jquery ajax to save the form and redirecting to another ...
0
votes
1answer
65 views

How to redirect Shortcuts or Stop Shortcuts accessing a certain web page

I have a website which contains an information portal prior to a seperate login page, i would like to be able to stop users creating or accessing the login page via a shortcut they have created on ...
0
votes
1answer
197 views

symfony wrong index and auto redirect to xampp webpage

I installed xampp and it works great with my symfony. I even made few excercises on projects. However I cannot setup my latest project which was coppied from another PC. How it looks: well the site ...
0
votes
0answers
28 views

Can't access wordpress urls via native arguments when using clean permalinks

If i try to access my wordpress page using the native url structure i.e. for instance: www.mywebsite.com/?p=123 I am redirected to my homepage. It doesn't seem to be an htaccess issue for I tried ...
0
votes
1answer
78 views

Alternative to Redirecting command input in windows

Is there any way I coluld use some alternative approch to "redirecting command input" in windows command shell? For example, consider the following command: app.exe < ListOfNames.txt Content of ...
0
votes
0answers
27 views

Redirecting apache

Hi i have my default apache server running on port 80 in ubuntu linux. And i have aniother 2 apache instances running on port 4437 and 4438. My problem is When a customer with a sub domain requests ...
0
votes
0answers
108 views

.htaccess is changing url (if missed backslash)

We have problem while redirecting subdomain to directory. For example: http:// subdomain.domain.com to directory /subdomain/wwwdata In root (/) is .htaccess RewriteCond %{HTTP_HOST} ...
0
votes
2answers
430 views

How to redirect pages in jsp

actully I have to design several pages in jsp.after clicking on the submit button the first page the page should be automatically redirected to the second jsp page.plz tell me how to do it
0
votes
3answers
66 views

Cakephp, redirecting in the routing.

I was wondering how to do a redirect in the routes of a cakephp application. I simply want to redirect on url /xxx to /yyy I don't want to have to set up a controller or and action in the pages ...
0
votes
1answer
295 views

DotNetNuke Page Redirecting

When I browsing my DotNetNuke application from the server, it automatically redirects to error.aspx. How do I cause my DotNetNuke application to serve default.aspx when visited from the server?
0
votes
3answers
528 views

PHP +redirecting with sessions

i'm trying to make my site with a few languages. Every page includes config-file, wich checks variable 'lang' in session. If it doesn't exist, wi'll be redirected to the page of lang choosing. After ...
-1
votes
1answer
47 views

Redirecting compiler output to the Win32 program

Well I've searched for this but obviously found pure explanations and examples for objects in C#, my solution is on C++. I've a gcc compiler, to which i send command to compile my program (invoke it ...