0
votes
0answers
13 views

Form boundaries and writing php://input to a file in php

So I want users to be able to upload big files without having to worry about the post max size values. The alternative is using PUT and send a file as raw data. When using jquery I can do this: var ...
0
votes
1answer
63 views

php - let the visitor download a remote file, chunk by chunk (range)

It's a recurring question on StackOverflow and i've browsed to all existing suggestions unsuccessfully. Here's what I'm trying to achieve: - visitor comes to my webpage and i have to send him a very ...
-1
votes
1answer
27 views

Alternative to Pyrocms Streams

Those who are familiar with PyroCMS Streams. Do you know any other similar projects that have something lika a Streams. It can be writen in PHP, Ruby on rails, python. It can be part of some other CMS ...
0
votes
2answers
21 views

rewrite url, from subdomain to another subdomain

Im try find good solution to hide real streaming url, im try with php but have problems with stream in that way like http://site.com/player/stream.php?p=[file path]&f=filename.flv&t=<? ...
1
vote
1answer
19 views

Get a substr of a long stream

I want to read only some finite characters of beginnings of some long streams, but file_get_contents does not support seek operations, and I must first read the whole stream to extract the desired ...
0
votes
0answers
31 views

php stream_get_contents() has missing characters

Anyone know why the PHP function stream_get_contents($res) would "lose" characters? It does not appear to work reliably! I'm using it to read a CLOB field from an informix database. I frequently ...
0
votes
0answers
39 views

PHP Socket, not a valid stream resource

I know this has been asked before, but I just can't get it to work. fgets() and feof() gives an error for not valid stream resource. socket $socket = fsockopen($settings['server'], ...
2
votes
2answers
81 views

Efficient reloading data / pushing data from server to client

I'm looking for the 'way to go' (i.e. the most efficient, most used, general accepted way) when it comes to the reloading of data from a web server to a front end. In the end application, I will have ...
1
vote
2answers
34 views

Read the Pre-login ssh banner from PHP

I'm trying to use the libssh2-php library functions to connect to an ssh server from PHP. That's all great, but I can't figure out how to read the pre-login banner in PHP. The Pre-login banner is text ...
0
votes
1answer
53 views

PHP: Read from socket or STDIN

I am learning socket programming in PHP and so I am trying a simple echo-chat server. I wrote a server and it works. I can connect two netcats to it and when I write in the one netcat, I recive it at ...
0
votes
0answers
22 views

IOException: Stream closed when having several PHP Portlets in Liferay

following steps lead to the error: a liferay page that has e.g 3 PHP Portlets(A, B, C) added portlet A is the first added, B the second ... each PHP Portlet contains a <form> element I ...
0
votes
1answer
203 views

How do i get my file-sharing script to stream uploaded videos?

Let's say i have this file-sharing website script but you see, all it does is share files, like PutLocker.com , i want it so that if a file with an extension like ".mp4 or .mpeg etc" is uploaded, it ...
0
votes
0answers
69 views

PHP Frontend Relay of an audio stream from an Internal Server

I was wondering if someone could help me with this. I have setup a KVM host with a bunch of virtual servers running on a private subnet with a few facing the internet. I would like to stream some ...
0
votes
1answer
25 views

Is incoming signals crashes blocking on a stream in php application

I used pcntl extension in my code like this : I bind a handler to some signal, for example SIGUSR1, and have a script which send signals to my application. pcntl_signal(SIGUSR1, function ($signo){ ...
1
vote
0answers
33 views

stream_notification_callback doesn't seem to work

http://www.php.net/manual/en/function.stream-notification-callback.php Per that I'd wouldn't expect the following to produce an error: <?php stream_context_create(array('notification' => ...
1
vote
0answers
56 views

stream_context_set_params vs. stream_context_set_option

What The Documentation Says From reading php.net it seems to me that stream_context_set_params pretty much does the same thing as stream_context_set_option. ie. ...
0
votes
1answer
72 views

PHP Session Error using plesk on a linux server

My friend hosts a website on a linux server using plesk. He was getting 404 error on almost every page, and the error code he was getting is pasted below: (I couldn't post more than two links, so ...
1
vote
2answers
42 views

Streaming large (200 MB) zip through PHP

I am creating an server-side api for my app. One of the steps requires the app do download a very large zip file from my server, but it can't be done by just downloading http://mydomain.com/file.zip. ...
0
votes
0answers
24 views

Streaming Image Data from API to Client

I'm currently trying to render raw image data from an API to clients using the Zend PHP Framework. Right now I'm downloading the entire image to memory, and then rendering the image to clients. I ...
0
votes
1answer
82 views

HTTP requests with file_get_contents, getting the response code

I'm trying to use file_get_contents together with stream_context_create to make POST requests. My code so far: $options = array('http' => array( 'method' => 'POST', ...
0
votes
3answers
91 views

Bring in a facebook users stream into a webpage

I need help on how to bring in a users personal stream. For example when I go to this webpage I want the user to be able to see his/her facebook live profile stream as if he/she was looking at the ...
0
votes
2answers
54 views

Symfony asynchronous stream possibilities

How to get a information on the client side, without requesting the database? The example would be a simple chat application. Two clients logged to a stream, like chat room. One filling a form, ...
0
votes
0answers
46 views

Deleting post by application. DELETE method only makes post “hidden”

My app allows users to delete posts published by the app, by issuing a DELETE request to graph.facebook.com/POST-ID. Here's my problem is: if I go to the activities tab on my timeline, I can still ...
0
votes
1answer
61 views

How to change the first 512 bytes of a file?

I have got a large file in PHP of which I would like to replace the first 512 bytes with some other 512 bytes. Is there any PHP function that helps me with that?
1
vote
1answer
71 views

How to seek through a stream with file_get_contents?

I'm using PHP to run a webservice. One of the url need to get couple images from the POST body. I currently using a fopen/fread solution : $size1 = intval($_REQUEST['img1']); $size2 = ...
0
votes
1answer
96 views

streaming audio by samples from server in a local network

Excuse me, if my question is silly, but I'm a beginner at web-developing. I am trying to write codes with php and javascript and can't find an answer or some example how to solve my problem. The ...
2
votes
1answer
28 views

what does callbacks option in ssh2 stream wrapper do?

http://www.php.net/manual/en/wrappers.ssh2.php One of the context options is callbacks but it doesn't have a description next to it. In fact it's the only context option that doesn't have a ...
2
votes
0answers
46 views

stream context for custom stream wrappers

In the code snippet that follows this paragraph I'm creating a stream wrapper called test using the Test_Stream object. I'm trying to use stream context's with it and have a few questions. First ...
1
vote
0answers
28 views

FTP context options seem redundant?

http://us.php.net/manual/en/context.ftp.php Maybe it's just me but most of those context options seem redundant? If you want to do 'overwrite' just do fopen() with 'w'. If you want to do 'resume_pos' ...
1
vote
1answer
153 views

Using a proxy server with fopen

I'm trying to use fopen to read a remote file from another website. I want to use a proxy to do this, and as far as I know I can do: $context = stream_context_create(array( 'http' => array( ...
0
votes
0answers
40 views

php streams using zip files

While reading the section about streams on the PHP manual http://www.php.net/manual/en/intro.stream.php I attampted to try a stream wrapper, "bzip2://", with the following code. <?php $handle = ...
0
votes
0answers
37 views

HTTP Stream Redirect Setting Cookies

I am grabbing the contents of a page that, under certain circumstances, sets cookies and reloads using header("Location: " . $this_page_url); The issue is that, although I follow the redirect, these ...
1
vote
0answers
43 views

renaming files over ftp with rename() and streams

I could do ftp_rename($ftp, 'old', 'new) or I could use rename() with stream wrappers. The problem with the stream wrapper approach is... I'm not sure how it'd work. Would I do this?: $old = ...
0
votes
1answer
22 views

PHP: text fil esentence iterator

I would like to ask you about some known PHP libraries which may help me to parse *.txt files for sentences. I have to parse too large text files, so I decided to make a stream parser (sentence by ...
0
votes
1answer
63 views

PHP set proc_open to output directly to user

I'm using proc_open with pdftk to pre-fill some forms with data, this works pretty well, but rather than save the result to a file and then read the file back, I'd like to print the file directly out. ...
3
votes
2answers
124 views

Streaming a file from the internet through PHP is slow

I'm writing a script which will stream a file from a web address through my server to the user. In its current state it works, but it is very slow. Here's the relevant code: /* Bytes per second */ ...
0
votes
3answers
50 views

How can I post a form with text as a stream to PHP to avoid browser post limit?

Web browsers have a limit to how much data (characters) can be posted to prevent attacks. In IE its roughly 2000 characters, and in Chrome its around 65,000. I'm trying to post a form that has a ...
0
votes
0answers
91 views

How do I implement an image based activity stream?

I'm looking to create an image hosting website with some social function, namely a custom activity stream to display the most popular content on the website at the top of an endless scroll. This is ...
0
votes
1answer
141 views

Facebook. Publish text on facebook wall by clicking image

I want to make a facebook app, when user click on image auto publish some text on user's wall. I have a script: <?php define('FB_APIKEY', 'YOUR_API'); define('FB_SECRET', 'YOUR_SECRET'); ...
0
votes
0answers
73 views

Can someone provide a decent PHP/MySQL implementation of activitystrea.ms? [closed]

I've got a php/mysql website developed using Yii Framework where users can Follow Places and other users, and they can Like Places, Products, Events, and so on. So I already store that information in ...
1
vote
0answers
60 views

File from client to S3 through PHP

I need service that allow to upload large files to S3, only for authenticated client. So, 1. I need to check if is client has an access (for example HMAC or any unique key) 2. Check file format ...
0
votes
1answer
232 views

Processing the Live Twitter Stream with PHP and JSON

I'm struggling trying to figure out how to pull in tweets from the live Twitter stream. I want to keep the stream connection open and render the tweets onto a map as they come in. I think my problem ...
0
votes
1answer
52 views

is there some way of make a gd image resource into a file stream resource? [duplicate]

Possible Duplicate: Creating an image without storing it as a local file i need create a image with gd and upload it to anoter server with curl in php . so i met a problem : a gd image ...
2
votes
1answer
136 views

Force download script and readfile: Why readfile outputs my html page?

I'm trying to send files (attachments) for users outside webroot. I made force download script, which sends the file in the header and outputs it in stream. This works good, until I call readfile ...
2
votes
3answers
132 views

Save large files from php stdin

Advise me the most optimal way to save large files from php stdin, please. iOS developer sends me large video content to server and i have to store it in to files. I read the stdin thread with video ...
2
votes
0answers
66 views

Using phar Stream to Write PharData Files

When I try this: $phar = new PharData('./phar.tar', 0, null, Phar::TAR); $phar->addEmptyDir('test'); file_put_contents('phar://./phar.tar/test/foo.txt', 'bar'); I get the following error: ...
0
votes
1answer
72 views

PHP Facebook Stream Undefined property Error?

I followed a tutorial on creating a facebook post stream for a website I created. The stream worked fine and has done for awhile now but I just checked the website again and it is now giving me a ...
1
vote
0answers
81 views

Simulate proxy localy

I'm using a PHP script that uses stream_context. I need to test it with a proxy. How can I simulate a proxy on my Mac for tests on my localhost (I'm using MAMP). I downloaded SquidMan but I don't know ...
0
votes
1answer
137 views

Download streamer isn't returning real files. Wrong Content-type or mime?

A pthyon application is saying the zip files I am streaming via a PHP streamer aren't zip files. However, winrar opens them with no issues. This is the headers it is sending: Content-disposition: ...
0
votes
0answers
95 views

How to gradually stream image from low resolution to high?

I need to stream an image from my server through php and receive it in my client app which is made with unity3d. But as I the picture files pretty big and loading could take up to a minute, I was ...

1 2 3 4 5 6