Tagged Questions
1
vote
1answer
35 views
PHP lstat command doesn't distinguish shortcuts in windows
In windows, I open a dir, read the files, and for each file, run stat to determine the size, etc.
The problem is that when I run stat on a folder SHORTCUT, it comes back as a FOLDER, and I can't see ...
1
vote
1answer
36 views
Get the mode values of a column
I have a table (sample below) which contains results from a phone vote
Number Voted
97867 Dog
97868 Cat
97869 Dog
97870 Dog
97871 Cat
97872 Donkey
I query the data using
$stmt = ...
0
votes
1answer
33 views
How to ignore prefix on certain models? CakePHP
I have to read data from a table called sys_sbu which is in the same database as my app. However, I have set tr_ to be the prefix of all my tables. When I tried to use $useTable = 'sys_sbu' on my ...
1
vote
1answer
93 views
How do I find the PHP equivalent of the MySQL WEEK function with mode 7?
Using PHP, how do I find the week number where:
the First day of week is Monday,
week 1 is the first week with a Monday in this year,
and the range is from 1-53?
I'm trying to achieve the PHP ...
0
votes
2answers
269 views
Wordpress PHP Safe mode [duplicate]
Possible Duplicate:
Is setting the uploads folder 777 permision secure?
I am using WordPress on my new host, and when I try to install a plugin I get this;
Warning: touch() ...
0
votes
1answer
145 views
Calculating Mode within existing query to count rows in PHP and MySQL
I have a table rel with fields id refid cellid cat and some working PHP code to count the number of rows for each cellid and return this as an array for later use.
<?php
// connect to database
...
1
vote
2answers
117 views
How can I get emacs to indent html chunks between php control constructs?
I have tried every php/html mode (including nxHTML) I can find, but can't find a mode that indents the way I want. Here is an example of what my files contain:
<?php if (a == 5): ?>
...
1
vote
1answer
540 views
How to find the mode of an array in PHP
I have an array that has been sorted from low to high which has over 260k values in. I have found out the mean(average) and median of the array just need to find out the mode?
I cannot use any ...
1
vote
1answer
359 views
PHP: color overlay with Hue blend mode
Can anyone tell me how in PHP, I can do the same effect as in Adobe Photoshop - Color overlay->Blend mode:Hue
This thing colorizes all colorful pixels (non-grascale ones). I need it for my project - ...
0
votes
0answers
962 views
include() warning - SAFE MODE Restriction in effect
I just switched from the development server to a new, live one. I've been having a slew of different problems but this is the latest. When a user creates an account, it creates a profile page for them ...
1
vote
4answers
795 views
round() mode ROUND_HALF_DOWN with PHP 5.2.17
I need to simulate ROUND_HALF_DOWN mode in PHP 5.2.17 - I cannot upgrade the server's PHP version. Any ideas how to achieve this?
The basic idea is that 1.895 becomes 1.89, not 1.90 like it usually ...
1
vote
2answers
73 views
Which method to detect run mode of php script is more reliable?
I now to ways to detect weather php script runs in cli or web server mode:
if (defined('STDIN'))
or:
if (isset($argc))
Do they equally reliable or one of them is more ?
1
vote
3answers
215 views
Need Help Setting Chmod Permissions on New Directory via PHP
I am using PHP's mkdir function and I am having some difficulty with the $mode parameters. If I don't specify a parameter, I get UNIX 755 as the default permission settings of the new directory. I ...
0
votes
1answer
343 views
Need help with a PHP proxy script
I’m currently working on a small web app that allows people to search for music album covers. However, I’m having a problem getting my PHP proxy to work. Right now I’m using a simple PHP proxy script ...
1
vote
1answer
160 views
safe url with .htaccess and moderewrite
hi guy its my first time here and my english sukcs, sorry...
i have a problem with my .htaccess, i'm trying to redirect a page with a safe url using this code:
RewriteEngine On
RewriteCond ...
4
votes
2answers
339 views
Perl's taint mode in PHP
Just wondering... is there a PHP equivalent to Perl's Taint Mode? I don't think there is, but thought I'd ask.
