Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
2answers
277 views

Why is this kernel module marked at permanent on 2.6.39

When I load this module: #include <linux/init.h> #include <linux/module.h> #include <linux/kernel.h> MODULE_LICENSE("Dual BSD/GPL"); static int hello_init(void) { ...
2
votes
3answers
113 views

Permanent java objects

I was wondering (there has to be an easy solution) if there is a way to make a number of objects, and use them in other classes and objects from those classes, without having to update them (in Java). ...
2
votes
1answer
174 views

How to add to Interface builder classes in a static library, permanently?

I know the thread on http://stackoverflow.com/questions/1058766/interface-builder-cant-see-classes-in-a-static-library there add to InterfaceBuilder(IB) classes in static library, temporary. The way ...
2
votes
1answer
938 views

want to add UInavigationBar rightBarButton like 'Now Playing' button of ipod, which doesnot disappears between view Transitions

i am new to iphone dev, i want to add a button (sign out) which remains fixed on the navigation bar's right side for every view.i.e. even when tabs of TabBar are tapped, the Sign Out button should ...
2
votes
4answers
381 views

How can I send a 301 Permanent Redirect with ASP.NET?

I need to permanent redirect some pages, and redirect the user to the new URL as well. This code only sets the correct headers. The user are not redirected. public static void PermanentRedirect(this ...
1
vote
1answer
43 views

Best practice for creating a variables page in php?

I have to create an administrator control panel and I want to create a php page that just contains variables that can be changed by the administrator and that would affect the rest of the website. Is ...
1
vote
2answers
292 views

Struts 2 redirects - permanent redirect option? 301 vs 302

By default, Struts 2 "redirect" is a temporary redirect (302). This makes sense. However, for SEO purposes, I need to issue a permanent redirect (301). Is there an easy way to achieve this?
1
vote
2answers
200 views

How can I implement a global, implicit filter in Django admin?

A lot of my models have a foreign key to a "Company" model. Every logged in user can be part of one or more companies (User m2m Company, not null). I would like the current admin user to have ...
1
vote
1answer
199 views

Permanent Redirect from old ASP.net pages/site to PHP pages/site

I picked up a new-to-me client who had a site built in ASP.net (which I do not host). I converted the site to PHP, which worked fine. I want to set up redirects for all the pages he had in the old ...
1
vote
1answer
125 views

Permanent redirect exclude a path

I have the following: RewriteEngine On # Check if the host name contains a . (localhost won't) # Check if the host name starts with www # Check if the host name ends with .com # Check if the ...
1
vote
4answers
264 views

iPhone permanent data store

How to store information in iPhone so that it cannot be removed when application removed. For example to indicate if user already used all trial features. I tried to use [NSUserDefaults ...
1
vote
1answer
69 views

Permanent line at the bottom of the console window in batch files

Just wondering if anyone knew if it was possible to have a permament line of text at the bottom of a cmd prompt window when running a batch file? So it floats, and if there is a lot of text flowing on ...
1
vote
1answer
339 views

Permanent deleting under TFS 2005

How can I permanently delete a folder/file under TFS 2005 source control? I know about the tf destroy command, but that only works with TFS 2008. I also know about the TFS PowerPack at CodePlex, but ...
0
votes
3answers
58 views

PHP “permanent variable”

I'm currently working at a WordPress Plugin. It supports shortcode and creates DOM elements, when the shortcode is called. Now my problem: I want to identify the elements. So when the shortcode gets ...
0
votes
1answer
47 views

Android SQLite permanent data

I'm developing simple application for collecting expenses. For now I keep data using SQLiteDatabase. I have 2 questions: 1) When I clear application data in Settings->Application then SQLite db is ...
0
votes
4answers
65 views

Permanent Powershell Variable

Is there a way to define a variable in powershell so when i open up a new powershell window, it'll keep the same value? I'll need this variable to keep its value because I'll be needing to reboot my ...
0
votes
1answer
141 views

Can't add directory to Python Path

In my .bashrc I added the following: export PYTHONPATH=$PYTHONPATH:/home/tbao/src/Cython-0.14.1 When I relogin, I get the error: -bash: /home/tbao/src/Cython-0.14.1: is a directory I want to add ...
0
votes
2answers
170 views

Cannot delete files from Dropbox(from iPhone app)

I'm trying to delete files from my dropbox. I have implemented the swipe delete behaviour. This 'swipe-delete' deletes the files from the tableView only. Next time I upload, I can see the 'deleted' ...
0
votes
1answer
62 views

Various htaccess redirect methods and why?

I have an obsolete url (mydomain.com/page.html) which naturally returns a 404 error. I want to implement a permanent 301 redirect back to my home page at mydomain.com. (Apache/Linux server with ...
0
votes
1answer
50 views

.htaccess domain forwarding directories issue

I try to redirect a secondary domain towards a main domain, but for a reason URLs containing a directory path aren't redirected (e.g. www.secondaryDomain.com/aDirectory ). This is the section of the ...
0
votes
0answers
42 views

htaccess 301 redirect help

Friends, We have the following requirement and need your help in writing a permanent redirect htaccess script for the same. (Marked in bold are dynamic part in the url) domainname.com/user-username/ ...
0
votes
1answer
122 views

htaccess redirect only subdirectory requests (not requests for TLD)

I moved my blog from example.com to example.com/blog. I now have a splash page at example.com. I would like old blog post requests like example.com/2011/example-post to redirect to ...
0
votes
1answer
55 views

IIS Permanent Redirects

I have seen a few things written about this and remember one where there was an XMl file. So, there is an old URL and a new URL. If the user hits the old URL he is redirected to the new one. The ...
0
votes
1answer
169 views

creating a permant folder in /tmp/ of ubutu 10.04

how to create a permanent folder in the temporary folder in ubuntu? without being deleted when the computer shuts down, and not have to repeat the process every time the computer restarts
0
votes
3answers
982 views

How to make HTML combo box save values added by user in textbox?

I have made a combobox for a web page. It takes values from user into text box & adds those to list on double click in text box. I want to make user entered values permanently stored as option in ...
0
votes
1answer
255 views

How to store data permanently in database using C#? [closed]

In my project I used C# with MS Access but data can't be stored permanently. I placed the database file in the project work space, but this did not solve my problem. Please provide connection string ...