8,966 Posted Topics

Member Avatar for mcdevins

Do what it says, just delete the `install.php` file after you run it. It's just a security precaution to prevent others from running it again.

Member Avatar for pritaeas
0
327
Member Avatar for Vijaysurya
Member Avatar for hindu times

You can just change the function, although I'm not sure that WP will display that correctly.

Member Avatar for cereal
0
316
Member Avatar for xpertj007
Member Avatar for happyvalentine

It's a virtual machine (Virtual Private Server) in a cloud environment. They are not managing a hosting center with physical machines, they just use a service like Amazons S3, or Azure for their hosting.

Member Avatar for pritaeas
0
207
Member Avatar for mohnish34
Member Avatar for nisbusiness

PostGres, Oracle, SQL Server, MySQL for example. What are your requirements?

Member Avatar for IIM
0
131
Member Avatar for amvx86
Member Avatar for NardCake

Interesting, yes. But without a specific goal I don't see the point of forking your repo instead of adding stuff to my own (unless improving existing code).

Member Avatar for NardCake
0
162
Member Avatar for HelpWanted2115
Member Avatar for HelpWanted2115

The digits get negative because the integer type cannot hold such large values.

Member Avatar for HelpWanted2115
0
200
Member Avatar for RedOctober_CZ
Member Avatar for vtilva

Hard to pinpoint without code, but this "The request failed with HTTP status 404: Not Found." means you specified an invalid URL.

Member Avatar for vtilva
0
828
Member Avatar for ferdinandmucos

You will have to store the current question number, for example in a `$_SESSION` variable.

Member Avatar for diafol
0
311
Member Avatar for sushants

php.exe yourscript.php Make sure your path includes the php bin folder.

Member Avatar for NardCake
0
188
Member Avatar for ScottDonald
Member Avatar for cproger
0
122
Member Avatar for ScottDonald
Member Avatar for Octet
0
196
Member Avatar for Fiorentino01^

The create table needs to be in a string, to be executed by the `mysql_query` function. It's an SQL script, not PHP code.

Member Avatar for TonyG_cyprus
0
290
Member Avatar for erum

Perhaps the user on the server does not have priviliges to modify the registry.

Member Avatar for deceptikon
0
213
Member Avatar for glao
Member Avatar for rahul.pragma

AuthenticationHeader is a struct to hold data, not a function. What does the documentation say?

Member Avatar for pritaeas
0
319
Member Avatar for eltonpiko

You'll need to explain what's what. Hard to give tips on the design from an image only. In general, categories are usually separate tables, referenced by a foreign key. A list of linked items is an intermediairy table with ID's only.

Member Avatar for eltonpiko
0
183
Member Avatar for Priti_P

10 digits, with a word boundary: /\b\d{10}\b/ The above with optional +91, start boundary won't work: /(\+91)?\d{10}\b/

Member Avatar for pritaeas
0
99
Member Avatar for silvercats

If you are building server applications using pluggable modules (where you can just copy a newer assembly to replace an older one), then static objects are a problem because they are kept in memory (like ddanbe mentioned above). Then although the new assembly is in place, still the old code …

Member Avatar for silvercats
0
761
Member Avatar for dudegio
Member Avatar for LEAN.HEART.YOU
Member Avatar for LEAN.HEART.YOU
0
243
Member Avatar for LEAN.HEART.YOU

That's rather vague. Looking for something specific? Tutorials are all over the web.

Member Avatar for LEAN.HEART.YOU
-1
161
Member Avatar for kliss.aemecrespin
Member Avatar for tossot92

Although adding the Javascript will work, I suggest you also add a check in the backend. It's easy to disable Javascript and submit invalid data anyway (or post directly with a bot).

Member Avatar for noahwilson
0
326
Member Avatar for Papa_Don

> 2) What do the other "View" properties of ListView do (i.e. Large Icon, Small Icon, List, Tile)? The same as what it shows in Windows Explorer.

Member Avatar for pritaeas
0
109
Member Avatar for yy886

You could just have enclosed delete in backticks, instead of renaming the column.

Member Avatar for pritaeas
0
288
Member Avatar for kamil.metkowski

What error do you get? Perhaps because your select can return multiple results? Try LIMIT 1.

Member Avatar for IIM
0
214
Member Avatar for StvFerri
Member Avatar for Akki16
Member Avatar for ak47carbon

Something like this: RewriteRule ^(.*)/(.*?\.html)$ http://example.com/$2 [R=301,L]

Member Avatar for pritaeas
0
172
Member Avatar for mathewmoozh
Member Avatar for cmps
Member Avatar for pritaeas
0
365
Member Avatar for taekiewzz

First get the last dutyid record. That holds the last used staffid. You can then use that to retrieve the next staffid.

Member Avatar for pritaeas
0
252
Member Avatar for hachemal
Member Avatar for JasonPS
Member Avatar for achinthaadd
Member Avatar for achinthaadd
0
186
Member Avatar for pritaeas

I am in the process of updating a website, which uses Highslide and a thumbnail strip on the bottom. The old website works ilke a charm but the new one fails. On my test website (newer layout) the thumbnail strip shows the last picture five times. [Page on original website](http://www.onderwaterwereld.org/library/nl-zout/anthozoa/alcyonium%20digitatum) …

Member Avatar for pritaeas
0
109
Member Avatar for ultramel
Member Avatar for kamil.metkowski

I suggest you add error checking: $result = mysql_query($query) or die(mysql_error() . "<br/>$query");

Member Avatar for kamil.metkowski
0
190
Member Avatar for marifard

Debugging a query without table structures and sample data is next to impossible.

Member Avatar for pritaeas
0
360
Member Avatar for ferdinandmucos

> such that after submitting one it proceeds to the next one You will have to keep track of the last index used, whichever method you use. What's the reason for using a string like that?

Member Avatar for ferdinandmucos
0
210
Member Avatar for mallows.yum

If the query returns no results, the variables are never given a value. You should initialize them with an empty string.

Member Avatar for pzuurveen
0
305
Member Avatar for Lethugs

Just CDC won't help you here. It runs on the server only. The only way to notify your app from SQL Server would be to create an UDF that does that, which is not simple. A polling mechanism is much easier.

Member Avatar for Lethugs
0
281
Member Avatar for MasterHacker110
Member Avatar for bfitzgerald

echo "<td> <a href='http://www.emuas.co.uk/members/sign_up_sheets/" . $row['PageName'] . ".html'>" . $row["EventName"] . "</a> </td>"; Too many quotes.

Member Avatar for Webville312
0
272

The End.