VolkerK

12,205
reputation
420 views

Registered User

name VolkerK
member for 1 year
seen 4 hours ago
website
location Berlin, Germany
age 33
4h
answered Combine many MySQL queries with logic into data file.
8h
accepted Which Location Mysql complied Procedures Stored?
8h
comment Which Location Mysql complied Procedures Stored?
hm, if you place those two files into another directory in your data dir, e.g. datadir/proctest/proc.MYI and datadir/proctest/proc.MYD and then restart the mysql server, can you access the table like e.g. SELECT body FROM proctest.proc ?
8h
answered Which Location Mysql complied Procedures Stored?
9h
comment PHP include from URL that redirects
And if http/1.x 310 ... is not the first line or if there's no Location: xyz line in the result that's what is preventing php from following the "redirect" (because it's not a redirect). If it is there we have to check the more unlikely causes (whatever they may be).
9h
comment PHP include from URL that redirects
I guess the answer is "no" because of "but unfortunately this is what they use now and we can't easily change that" ;-)
9h
comment PHP include from URL that redirects
It just a test script. Place it in a/any directory where the `include 'example.com/news.php'`doesn't work as expected and examine the output.
9h
comment PHP include from URL that redirects
The http fopen wrapper does follow Location: xyz headers unless told otherwise (e.g. by get_headers())
9h
accepted php_network_getaddresses: getaddrinfo
9h
answered php_network_getaddresses: getaddrinfo
10h
answered PHP include from URL that redirects
10h
comment PHP include from URL that redirects
Since php 5.2 there is allow_url_include, but that would raise a different error message
10h
comment PHP include from URL that redirects
That doesn't sound like a php error message ;-) Could it be that the webserver doesn't send a 301 status code but 200 ok.
10h
comment PHP include from URL that redirects
What's the exact error message (or messages) you get with error_reporting=E_ALL (or higher)?
10h
answered Is there a way to verify the integrity of javascript files at the client?
10h
comment How can I see the SQL statements which go to the database when using PDO?
You are using prepared statements and wonder if WHERE x=:x AND y=:y is somewhere "translated" to WHERE x='abc' AND y='xyz' and if you can inspect it?
11h
answered PHP: How to call function of a child class from parent class
23h
comment PHP remove HTTP header
wow, I wouldn't have thought of that for ages ;-)
1d
accepted PHP remove HTTP header
1d
comment cURL Download Progress in PHP not working ?
If not using curl is acceptable the stream api offers notification callback, too. And they are available sincee php 5.2. see edit.
1d
revised cURL Download Progress in PHP not working ?
added 439 characters in body
1d
answered Coverting an int to a different base. php, .NET
1d
answered mysql continue on errors
1d
comment single quotes in SQL Query
Yes, that's my point - only the other way round ;-) The whole bindParm() thing might seem like overhead but you'd have to call real_escape_string() otherwise (or make sure a numeric parameter really is numeric)
1d
accepted PHP variable to JS - over and over
1d
answered is there a __construct() equivalent for extended classes
1d
answered PHP variable to JS - over and over
1d
revised cURL Download Progress in PHP not working ?
deleted 247 characters in body; deleted 1 characters in body
1d
answered cURL Download Progress in PHP not working ?
1d
revised Accessing a function in a class from other classes
edited title
1d
answered single quotes in SQL Query
1d
comment What is the purpose of BlockingCollection(Of T)
The important part is "without doing any checking yourself". Both your producer and consumer code can be really simple, almost completely the same as for your non-parallel version and still you get the benefit of threads falling asleep if there's nothing (useful) to do for them.
1d
answered PHP remove HTTP header
1d
answered How to check if results on while($row = mysql_fetch_array in PHP
2d
accepted Creating a multidimensional array from row
2d
answered Creating a multidimensional array from row
2d
comment How can I get my TCP listener service to terminate correctly?
Then use the TCPListener's Stop() method, msdn.microsoft.com/en-us/library/…
2d
accepted How can I get my TCP listener service to terminate correctly?
2d
answered PHP: how to iterate through an array, and resume where you left off?
2d
comment How can I get my TCP listener service to terminate correctly?
If that's reliable for a service then yes, get rid of the call to Abort(). But I'd keep the Join(timeout). A maximum delay of one second shouldn't hurt if it gives the thread a chance to clean up first.
2d
comment How can I get my TCP listener service to terminate correctly?
The example seem to work (only tested as a console app, not a service). Socket.Accept() calls (unmanaged) winsock code that isn't affected by the ThreadAbortException. I wonder if there's way to "make it aware". Note to self: That took too long. practice more vb.net. It is dotnet.
2d
revised How can I get my TCP listener service to terminate correctly?
added 308 characters in body
2d
revised How can I get my TCP listener service to terminate correctly?
added 1591 characters in body; added 4 characters in body; added 3 characters in body; added 2 characters in body
2d
comment How can I get my TCP listener service to terminate correctly?
Give me a second or two for an example ...I'm not a VB developer ;-) Short version: Don't use a static method (shared sub?) but an instance of pmtListener (dim myListener as new pmtListener() ?) and start the thread on its Main() method (new Thread(AddressOf myListener.Main))
2d
answered How can I get my TCP listener service to terminate correctly?
Dec
19
comment Reading and Writing PHP operation in C#?
Or can $game['swf_url'] be something like http://.... ?
Dec
19
comment Reading and Writing PHP operation in C#?
Why do you use fwrite(..., file_get_contents())? Is there something else you do with $swf and $thumb or would a copy(target, source) suffice?
Dec
19
answered Variable Content Streaming in PHP
Dec
19
comment Variable Content Streaming in PHP
Wich command/application? Can it write results to stdout instead to a file?
Dec
19
comment PHP Include Error
see docs.php.net/language.variables.scope