3
votes
3answers
77 views
checkdnsrr always returns false on windows
I am using checkdnsrr on Windows with PHP 5.3 and it always returns false.
dns_get_record, however, works.
echo ("test.com dns check: ". checkdnsrr("test.com","NS")); //false!! …
-1
votes
4answers
59 views
How can I send all php errors run on one page to an email?
Basically I have a single page on my site that I want any php erorrs, warnings, etc to be sent to me in an email every time the script is run.
Edit: this must be code that is plac …
4
votes
3answers
126 views
How did PHP 5.3 break your application?
PHP 5.3 has been released some time ago and the developers tried to keep the number of backwards compatibility breaks low. What issues did you find while testing/migrating your cod …
2
votes
4answers
158 views
PHP 5.3.0 - Is it stable enough for production use?
I'm running a couple of sites and are thinking about moving over to using Nginx instead of Apache and as such I need to move to FCGI where the preferred choice right now seem to be …
2
votes
3answers
148 views
Upgrade PHP from version 5.2 to 5.3
Hello,
I've been using PHP version 5.2 and now need to upgrade to version 5.3 (Windows/Apache). I have been using 5.2 for awhile now and have customized many things in php.ini an …
1
vote
4answers
75 views
WTF. Strong data typing bug in PHP 5.3?
Hi
Is it normal to get the error "Default value for parameters with a class type hint can only be NULL" for a method in an interface defined as
public function nullify(bool $for …
2
votes
3answers
197 views
Update to php5.3 breaks connecting to mysql db
I just updated php to 5.3 and can no longer connect to my remote mysql server. I get the following errors:
mysqli_connect(): OK packet 6 bytes shorter than expected
mysqli_connect …
0
votes
3answers
92 views
PHP is displaying my source code?
I just upgraded to php5.3 and when I execute:
php myfile.php
I see the source code for myfile.php.
Any idea why this is happening? I've never seen anything like it before!
G- …
0
votes
0answers
81 views
full-text searching for non-English text in sqlite
How can I make some ful-text searching in non-english texts with sqlite? I use php5.3, with pdo_sqlite.
CREATE VIRTUAL TABLE example USING FTS3(title TEXT, TOKENIZE icu hu_HU)
T …
2
votes
2answers
188 views
Alternative conditional syntax (if-else) failing on PHP 5.3.0 (xampp)
Hello,
I recently upgraded to xampp v1.7.2 which dumped PHP 5.3 on me. Along with that all my httpd.confs and php.ini's got wiped out (I had taken it for granted that this relea …
1
vote
3answers
103 views
PHP denying use of short hand “<?”
I just installed php 5.3.0 and it won't run php scripts utilizing short open tags like <?, only <?PHP
5
votes
3answers
194 views
OpenID in PHP 5.3
Does anyone have openid working in a PHP 5.3 installation? None of the libraries I've tried seem to be working.
1
vote
2answers
120 views
Unable to write to a chmod 777 database file on SQlite3 via php 5.3.0
I'm trying to insert data into my SQlite3 database (this works via the command line).
I gave the data1.db file 777 permissions and still it says it's unable to open the file.
I ge …
0
votes
2answers
102 views
Include view file within same namespace in PHP 5.3.0
Hi,
I started developing sort of a mvc framweork on PHP5.3.0 for the static keyword, but since I'm here I said I should take advantage of the namespaces as well.
So I have someth …
0
votes
0answers
39 views
temporal expressions with DatePeriod?
I am attempting to implement Martin Fowler's class model for recurring events in PHP. The DateTime and DatePeriod PHP objects look like they might be a good fit for dealing with te …
