342 reputation
28
bio website holyrat.com
location Russia
age
visits member for 2 years, 7 months
seen 1 hour ago
stats profile views 14

Mar
8
comment Node.js - check if module is installed without actually requiring it
Sure, what I mean is - if mocha or any other module you include that way will throw an exception on require - your code will decide that module is not installed, that's what I meant =)
Mar
8
comment Node.js - check if module is installed without actually requiring it
At least you can be assured that something in the required library will not throw an exception - resulting in assertion that module is not installed
Mar
8
answered Node.js - check if module is installed without actually requiring it
Mar
6
comment PHP can't find dynamic library but it is on disk
According to this topic: board.phpbuilder.com/… you should provide up-to-date ssleay32.dll to the c:\windows\system32\, maybe it will help
Mar
6
comment PHP can't find dynamic library but it is on disk
Is openSSL enabled? you can try installing libssh2 with PEAR
Mar
6
comment PHP option tag and array
@Matt Kidd Uhm, why was Simon's answer been chosed as correct - you're using my solution, as far as I can see
Mar
6
comment PHP option tag and array
Sure, just change echo "<option value='category.php?id=".$row[0]."'>".$row[1]."</a></option>"; to $selected = ($row[0] == $_GET['id']) ? 'selected="selected"' : ''; echo "<option $selected value='category.php?id=".$row[0]."'>".$row[1]."</a></option>";
Mar
6
comment Looking for a way to use 'Sortable' function with PHP
So there is no files found or globbed. "echo $imagesDir;" to see if the path is correct
Mar
6
comment PHP can't find dynamic library but it is on disk
All of the extension requirements are fulfilled? php.net/manual/en/ssh2.requirements.php
Mar
6
comment Looking for a way to use 'Sortable' function with PHP
@user2126833 Check the $images with var_dump($images); if is is filled with correct names
Mar
6
awarded  Yearling
Mar
6
answered PHP option tag and array
Mar
6
answered Check Element Position Inside Image Map
Mar
6
answered Looking for a way to use 'Sortable' function with PHP
Mar
6
comment Looking for a way to use 'Sortable' function with PHP
Do you really have /uploads/gallery1/ folder? or do you mean relative path, "uploads/gallery1/" ?
Mar
6
answered Add html content to mysql die error?
Mar
6
answered PHP Directory Iterator Constructor Issue
Mar
6
comment Getting data from Soap response stdclass object in PHP
@hakre I totally agree, this is really dirty and very quick solution =)
Mar
5
answered Inserting a value based on another values result into MYSQL using PHP
Mar
5
comment Xdebug and PHP not working on my server
Did you check /usr/lib/php5/20090626+lfs/xdebug.so for existence? Did you restart the server after you installed xdebug?