Search Results

2
votes

How to change the HTML of the drupal 5’s views module

I think just creating a file named "views-list.tpl.php" will apply to all List-style views (unless a more specific .tpl.php file is present). Otherwise, there may be a way to get w …
7
votes

Defend PHP; convince me it isn’t horrible

A poor craftsman blames his tools. Sure, PHP has warts and it lacks fancy meta-programming and syntactic sugar. But so what? It's more than capable for most web applications, it's relative …
2
votes

Simple encryption in PHP

Why not just give each user a long, random ID and then store all the details about their pet on the server? Best practice is not to store anything in the URL, encrypted or not. All you should need …
0
votes

Suggest a good PHP wiki engine

I like DokuWiki, but pmWiki might be better for you. Here's a list of all the PHP wikis: http://www.wikimatrix.org/search.php?s …
0
votes

Making PHP scripts time out so they don’t kill my server

I'm not sure you can do that in lighttpd. You could, however, set up a "spinner" script to periodically check for hung processes and kill them. …
0
votes

Drupal deployment/testing/don’t-how-to-call it tool

Previously: Drupal Source Control Strategy? …
10
votes

What are some of Drupal’s shortcomings?

The lack of true object oriented design means that you frequently have to rely on other developers' foresight to leave "hook" functions to let you alter a certain behavior. Using Drupal 5 I …
0
votes

PHP curl post to login to Wordpress

Sounds like a cookies problem. Are you sending the login cookie returned from the handshake call to the subsequent calls? …
0
votes

How do I validate file type in Drupal 6 with file_save_upload?

I don't see how you could check whether it's a valid CSV without actually trying to parse it and seeing if there are any errors. …
0
votes

How to generate a secure activation string in php?

If you're storing the activation string in the database and checking it later, you don't need a hash at all! You just need a long, random string. You can generate it however you want, just …
0
votes

php: reversing mysql_real_escape_string’s effects on binary

Sure, should be fixable. You just need to figure out exactly what mysql_real_escape_string does. I believe you just need to remove any slashes that immediately precede a CR, LF, TAB, singl …
1
vote

preg_replace(), and the abbreviations that go with it?

Well, to answer your question, ^\v means the first character must be a "vertical space" character. Basically it means that "starts with a blank new line" EDIT: Looks like you a …
1
vote

How can I specify a special character in PHP

"\x1F" will work for regular ASCII characters, but I think sigma is a unicode character, so you're going to have to use something like …
0
votes

PHP exec() fails

Perhaps you need to turn off safe_mode in php.ini (safe_mode = Off) …
2
votes

Secure a “thanks” page against non-logged in users

Well, yes, when people log in, you should NOT be setting a cookie that says loggedin=true or some such. You should instead set $_SESSION['loggedin'] = TRUE PHP gen …