Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
6answers
320 views

Saving session data securely in PHP

I was trying to understand how sessions work in PHP and found that session data is by default stored in the file system. In a shared hosting environment, session data can be read by PHP scripts ...
7
votes
1answer
291 views

boost::spirit composing grammars from grammars

I have figured out how to use spirit -- i.e., I have written a moderately complex grammar. I always take the approach of growing a program -- one subsystem at a time. I've written the data structures ...
3
votes
1answer
950 views

Why are RackMultipart* files persisting in my Rails /tmp directory?

I'm using Paperclip (2.3) to handle image uploads on a Rails 3.0.3 app running on Ubuntu. Paperclip is handling the uploads as advertised BUT the RackMultipart* files that are created in the ...
3
votes
4answers
469 views

What happened to the TMP environment variable?

I always heard that the proper way to find the temporary folder on a UNIX machine was to look at the TMP environment variable. When writing code that worked on Windows as well as Linux, I would check ...
2
votes
2answers
865 views

PHP Can't find tmp directory

I am having problems with functions that create files in the tmp directory such as tmpfile() and tempnam(). They all seem to fail to write to tmp and return false. upload_tmp_dir is set in php ini and ...
2
votes
1answer
114 views

boost spirit: What type names should be used for the built in terminals?

I am refactoring a typing system (type model) I have in place that uses spirit for string-serialization. I am using the compile-time modeling construct of type-traits. template<> ...
2
votes
2answers
233 views

Ruby on rails, forcing the user to download a tmp file

I've created a file in the tmp directory with the following controller code: def download file_path = "#{RAILS_ROOT}/tmp/downloads/xxx.html" data = render_to_string( :action => :show, ...
2
votes
1answer
2k views

iPhone SDK Get tmp directory

How do i get the tmp directory on the iPhone or iPad? if i use NSTemporaryDirectory() to create a file it does not save to the simulator temp directory.
1
vote
1answer
17 views

Is it possible to recover temporary uploaded files (not moved with move_uploaded_file()) after script execution?

I have some php scripts that handle uploaded files via forms and stores them using move_uploaded_files(). Because of errors in my code, some uploaded files were not handled properly and were not ...
1
vote
1answer
460 views

MYSQL Triple Join Performance help, Copying to Tmp Table

I'm working on a query for a news site, which will find FeaturedContent for display on the main homepage. Content marked this way is tagged as 'FeaturedContent', and ordered in a featured table by ...
1
vote
2answers
566 views

Rails3: Change location of temp (tmp) directory

I usually develop in my local Dropbox folder. Some files in the tmp-folder get locked by the browsers (and keep Dropbox busy), Growl throws exceptions and so on. Therefore I am looking for a ...
1
vote
2answers
1k views

php:: how long to tmp files stay?

I am working on an upload script. If a user uploads a file and it already exists I want to warn the user (this is all through ajax) and give them the option to replace it, or cancel. Instead of ...
1
vote
1answer
92 views

mkstemp with FILE* return

Is there a way of "converting" a fd into a FILE* or is there a mkstemp version that returns a FILE*? Thanks in advance!
1
vote
1answer
217 views

php : get tmp size

how to get tmp size my code filesize('/tmp/phpn3jaaQ'); error PHP Warning: filesize() [function.filesize]: SAFE MODE Restriction in effect. The script whose uid is 524 is not allowed to ...
1
vote
2answers
128 views

Is it ok to rely on the writeability of /tmp folder?

Is it ok to assume /tmp folder writable by PHP/Apache on any unix system? I'm making a script and want to save cache in the tmp folder and want to know whether that can cause problems.
1
vote
1answer
240 views

when CreateDirectory returns ERROR_ACCESS_DENIED and “shouldn't”

My Win32 app A1 (actually a collection of processes) is trying to use CreateDirectory to create a directory D1 within parent directory P. The path to P is the value of the TMP environment variable, ...
1
vote
2answers
559 views

Tmp issues with java service on windows 2008 service

I am having a rather nasty problem with windows 2008 server. We have a java application that is running as a service using the local services user. The problem is this user does not have access to ...
0
votes
1answer
56 views

PHP tmp folder?

I'm practicing some file upload with PHP and I was uploading a file numerous times, so I wanted to make sure I wasn't taking up a lot of space on the server. I had a while loop go over every file in ...
0
votes
0answers
37 views

Temp fulls with strange uploaded files

I'd rebooted one of controlled server and had strange situation: /tmp becomes full of uploaded files. move_uploaded_file works as expected, PHP and Apache error logs are empty (there was some Warnings ...
0
votes
0answers
61 views

.Net winforms cannot find tmp file on startup

I have deployed a win forms app out to our servers at work. Users log in via Terminal Services. If a user remains logged in over night when they try to open the app the next morning they receive the ...
0
votes
0answers
29 views

tmpwatchc updates directory ctime? [closed]

I noticed that some directories under /tmp were updated ctime daily. As you can see below, I thought that was because of tmpwatch. [root@localhost ~]# cat /etc/crontab SHELL=/bin/bash ...
0
votes
0answers
43 views

How can I generate spool files in tmp extension instead of SHD and SPL?

It´s a simple question, I Have some problems with SHD and SPL files that are generated in some desktops when someone want printing something. In others desktops that generated TMP files, I can print ...
0
votes
1answer
58 views

Can I share 'cache' or 'tmp' directory via itunes share?

I want to share 'cache' or 'tmp' directory via itunes share... is that possible? if yes then how? I know I can share 'documents' directory by setting UIFileSharingEnabled true in info.plist. Just ...
0
votes
2answers
405 views

how to save image to app tmp dir

HI why if i Use NSTemporaryDirectory() to save my image into xcode so the image is saved into /var/folders/oG/oGrLHcAUEQubd3CBTs-1zU+++TI/-Tmp-/ and not into /Users/MyMac/Library/Application ...
0
votes
0answers
309 views

Mkdirs failed to create hadoop.tmp.dir

I've upgraded from Apache Hadoop 0.20.2 to the newest stable release; 0.20.203. While doing that, I've also updated all configuration files properly. However, I am getting the following error while ...
0
votes
1answer
264 views

php - check to see if a session file exists on server

I've just encountered a problem. I store session ids in a cookie to retrieve the basket info when a user leaves a site and then comes back again. My problem being that as a test i cleared all sessions ...
0
votes
1answer
181 views

create a new tmpfs and mount it

When i do the "df" command in my machine I can see the following: Filesystem 1K-blocks Used Available Use% Mounted on tmpfs 491520 127240 364280 26% / I ...
0
votes
1answer
608 views

File Upload Failing Mysteriously in CakePHP

I'm trying to upload a file to my server using the CakePHP file upload form helper. I am currently running CakePHP 1.3 on my development computer (Mac OSX). When the form submits, it has in the ...
0
votes
1answer
447 views

Move File from /tmp to hosting account folder

I have write access to /tmp folder of my shared hosting account at godaddy. I want to move uploaded pictures from /tmp folder to my hosting account folder /home/content/x/y/z/xyz/html/pic/ I am trying ...
0
votes
2answers
324 views

set directory of tmpfile() on Linux

A program I use is failing when it uses tmpfile() for large files. The problem seems to be I don't have permission to create large files in /tmp, which this function uses by default. So is there a ...