- Strength to Increase Rep
- +5
- Strength to Decrease Rep
- -1
- Upvotes Received
- 8
- Posts with Upvotes
- 7
- Upvoting Members
- 8
- Downvotes Received
- 2
- Posts with Downvotes
- 2
- Downvoting Members
- 2
Re: to get the PHP style MD5 output you have to use [b]FormsAuthentication.HashPasswordForStoringInConfigFile[/b] from the [B]System.Web.Security[/B] name space. So you will need to add the system.web.dll to your references. Also you have to watch the encoding, to match PHP's i had to use Encoding.UTF8.GetBytes(). Thanks for asking the question, because i … | |
Re: TCPView from sysinternals is a good tool to see if there is a process thats sending data that you not aware of [url]http://technet.microsoft.com/en-us/sysinternals/bb897437.aspx[/url] | |
Re: There is 2 ways you can do this, depending on what you have available to you at the time of saving. If you have the data that was already in the field available in a variable, then best to just use PHP to append the addition to the string. or … | |
| Re: Might be there are some leading 's in your img tags. IE src="\images\image.jpg" = \www\images\image.jpg src="images\image.jpg" = \www\project\images\image.jpg Also, if by deploy you mean make accessable outside your server. Just click on the Wamp icon in the system tray and click "Put Online" by default Wamp only allows access from … |
Re: could just try to request the username your looking into with the profile feed [url]http://gdata.youtube.com/feeds/api/users/username[/url] should get a 404 with [B]User not found[/B] in the body, if the user is not created.or a normal feed if they exist. More info here [url]http://code.google.com/apis/youtube/2.0/developers_guide_php.html#Profiles[/url] | |
Re: If you try to run [B]explorer.exe[/B] from task manager, does the desktop load? | |
Re: looks like you are missing the closing } to your switch statement also, if I'm remembering right, the way your switch is setup, your "show" case is always going to show, because of the missing break in the "process". Might be the way you wanted it, but just in case … | |
Re: mysql_fetch_array() returns an array with indexes, not field names. You can pass the optional paramater MYSQL_ASSOC like so, mysql_fetch_array($result, MYSQL_ASSOC) or you may use mysql_fetch_assoc() and that will return the array with field names. Hope it helps. | |
Re: is the screen you are getting looks like the image attached? if so, choose the option [B]Disable automatic restart on system failure[/B] and see if there is a blue screen causing the restart. On the blue screen it should have and error message on its own line in all caps, … | |
Re: Well i see a few things that seem to be missing, 1) What ddanbe said, but on all of them, to see if its between should be checking for > and < 2) I dont see where you set [B]numGrade[/B] to anything other then 0. at the top of your … | |
Re: Actually I think the FileName and Arguments mixed up because the final command yours is running would look like C:\>lease_query.pl perl lease_query.pl 192.168.0.100 and lease_query.pl is not an executable. so i think it should be. [CODE]p.StartInfo.FileName = "perl"; p.StartInfo.Arguments = "lease_query.pl " + ipAddress;[/CODE] | |
Re: Well you wont be able to stop the upload itself, because it is sent with the POST. But from the looks of your script, Just need to rearrange it so that you can stop from saving script files. Think you should do the ban check first before adding the entry … | |
Re: Well looks like your passing the whole $_FILES array to the billede class in class.billede.php. so your changes would most likely need to be in there. But with out seeing it, cant say where in that file. | |
Re: Access is not the bes Database platform unless your only expecting to use it internally and with very VERY little activity. But none the less it can be done, here is an example that shows you how, using ADODB, you can also use ODBC but I always found ADODB easier … | |
Re: If you are running XP Pro. you can use the net command to activate login restrictions. From an administrator account: 1) Click the Start menu and choose Run. 2) type in [B]cmd[/B] in the dialog that opens. 3) In the command window, type [B]net user SiblingsAccount /time:M-F,00:00-20:00[/B] This will limit … | |
Re: If you doing a full install of Windows 7, none of the preinstalled applications will stay. The only way to use them again is if they came on a separate CD that you can install after installing 7, but manufactures rarely do that anymore now that most use a restore … | |
Re: no idea if this is how, and am just thinking about it in my head but shouldn't the line be dr.BackgroundColor = Color.Blue; since dr is the row you are working on. | |
Re: well it all depends on what the site you are searching is. if it is YouTube they have API available to search and get all the info you need, other sites might have APIs as well. here is youTubes PHP API reference [url]http://code.google.com/apis/youtube/code.html#PHP[/url] If the site doesn't have an API … | |
Hello everyone, I am working on a C# app that uses the YouTube .NET API but have come up with an issue, and I'm not sure if its the .NET Wrapper or just something I'm Doing. Ok heres the problem, I request the list of videos the logged in user … | |
Re: Well its good if you have user controls, VS will auto add your control to the toolbox and will also build the control when you compile your app that uses it. also its nice when working on multiple DLLs or a project that uses DLLs that you have/written source for … | |
Re: there is no native x64 version of Flash player yet. but to install the x86 version just point your browser to [url]http://www.adobe.com/products/flashplayer/[/url] and follow the instructions If you are using Internet Explorer, make sure you are not using the one with (64-bit) in the title, Flash will not install in … | |
Re: might be better posting this in the Java section ;) [url]http://www.daniweb.com/forums/forum9.html[/url] | |
Hello everyone, Im trying to get my server setup for a small web hosting type system (for friends). everything is working except subdomains ive used vhost_alias for ever when i was just hosting my site to do wildcard subdomains. But I can'e seem to get it working on more then … | |
Hello everyone I have an issue here that I couldn't find much info about, I saw a lot about it when people where selecting a lot of data but not on an insert. Heres some background. I have an application that adds items from our in house order/inventory manager to … | |
Re: shouldn't need the LoadFile line My full PHP stuff from mt httpd.conf is LoadModule php5_module "d:/wamp/bin/php/php5.3.0/php5apache2_2.dll" AddType application/x-httpd-php .php AddType application/x-httpd-php .php3 Hope this helps you | |
Hello, Got a question for you all. I have a mass email script that sends emails out in a round robin using 15 unchecked email address (GoDaddy only allows something like 250 emails a day per address). The problem I have is if an email bounces back it goes to … | |
Re: Sounds like you want a CMS (Content Management System) you can find alot of info about them at [url]http://php.opensourcecms.com/[/url] | |
Re: 16 classes... thats all they have? [url]http://www.phpclasses.org/[/url] is way better for classes even if there site is one of the ugliest sites I have ever seen :) | |
Sorry if this is in the wrong section but there really is no category that matches what i need to ask, I only posted here because it seems a lot of Delphi people use DBISAM. Basically, I read the manual and see where I can read the current auto_inc value … | |
Re: Any specific Errors? also I would check the SQL host, if its a shared host, they usually don't use localhost. |