Search:

Type: Posts; User: Deabelos

Page 1 of 6 1 2 3 4

Search: Search took 0.18 seconds.

  1. Replies
    3
    Views
    1,077

    Kepler BIOS Tweaker Tool question

    I was searching for a tool to flash the Geforce 680 video card that I have and I came across one which was called Kepler BIOS Tweaker. I dont know whether it is a genuine tool that can be used to...
  2. Replies
    10
    Views
    1,034

    Re: Information about the Devil May Cry 4

    A nice game, some will like some not, but I especially want to emphasize the technical aspect: the 3D engine is the miraculous; a poor 7300GT arrives to compete with a console last generation. The...
  3. Replies
    9
    Views
    1,312

    Re: How can I implement an Active Directory?

    After reading the above post, I would like to add something. So that in case of fall of a domain controller, the other can supply it must meet certain conditions:

    Have at least two domain...
  4. Replies
    10
    Views
    3,170

    Re: Difference between LAN and WAN

    Both hub switches are used for the same purpose: to enable communication between devices connected to the network, the difference is that the hub (now obsolete) simply retransmit what it receives...
  5. Re: Google Web Toolkit - an ideal framework for Web applications?

    Critical to the distinction the state is the application. Will include the State in Javascript really treated, rather than simply to generate links in JSPs that are then triggered and the state, one...
  6. Replies
    6
    Views
    1,293

    Re: Exception Handling in Singleton

    I think if the designation of class, method and exception that it is in the example is rather an example of didactic nature as a "serious" implementation. And the approach that such patterns also...
  7. Replies
    9
    Views
    1,269

    Re: Publish tool for Java JMS load test

    So someone has to use the tool it will build into its own software and also have a library for developing an implementation for the tool to build. So the person must understand the program...
  8. Replies
    8
    Views
    1,288

    Re: The way to operator overloading in Java

    In principle, one could of course be the Java way, all the (not yet existing) operators to overload. I have certain operators (eg the Equals operator), I have deliberately omitted, since these...
  9. Replies
    7
    Views
    1,601

    Re: Serialization and serialVersionUID in Java

    I personally almost never produce an explicit serialVersionUID, so strike just such inconsistencies. The only exception: if the serialized data is not transient (eg, temporarily stored), I forgive a...
  10. Replies
    9
    Views
    1,419

    Re: Generics vs. Reflection in Java

    There are no parameterized class objects. Told you that the compiler already. So I said yes and that possibly is a Factory-registry approach in question, where you fetch your first parameter a...
  11. Replies
    9
    Views
    2,091

    Re: JMS Messaging using activemq and jmeter

    Since taking ActiveMQ Message Broker as a key function in the IT architecture. ActiveMQ is a powerful and stable JMS Message Broker implementation with. JMS5022 A Message Queue broker instance Plugin...
  12. Re: Can WEBDEV easily used in web applications?

    Important step in designing an eCommerce website: the establishment of payment in order to secure the Internet Client and the company that sells online. Secure payment by credit card is used on the...
  13. Replies
    7
    Views
    1,013

    Re: Problems in Socket Applet

    Do you sign your code? Indeed, using sockets is to use a hardware component, the network adapter. Outside, access to a hardware device by an applet is restricted by security java browser plugin. This...
  14. Replies
    7
    Views
    1,104

    Re: Introduction to JAVA language

    It has the distinction of being compact and thus can be compiled (translated into machine language) very quickly, in the course of implementation of the program itself. The p-code is an intermediate...
  15. Replies
    2
    Views
    11,678

    How to use Outlook Express in Windows 7

    I have recently installed Windows 7 beta on my machine and i was wondering if there is anyway to install and use Outlook Express or Windows Mail of Vista on this new operating system. I have searched...
  16. Re: SBS2008 Backup fails - unknown error (0x800423f4) on sbs2008

    Even I was facing similar issue and the solution that I found was to stop the services linked with SBS backup and re-register the dll files. This worked for sometime but the problem occured again...
  17. Replies
    5
    Views
    608

    Re: What is an Output Control in PHP?

    Sometimes you might not want to include a php-file under the specifications defined in the functions include() or require(), but you might want to have in return the string that the script in the...
  18. Replies
    5
    Views
    1,048

    Re: What is an Advanced PHP Debugger?

    You should also know about the Predefined Constants. The predefined constants are defined by this extension, and are only available when the extension has been compiled into PHP or dynamically loaded...
  19. Replies
    5
    Views
    617

    Re: How to use Remote Files in PHP?

    As long as the media handlers URL ( "URL fopen wrappers") is enabled in php.ini with the allow_url_fopen option, you can use URLs like HTTP and FTP with the majority of functions that use a name file...
  20. Re: What is Database Abstraction Layer in PHP?

    Use "dba_optimize" to optimize a database, which usually consists of eliminating gaps between records created by deletes. Whereas the "dba_sync" function will synchronize the view of the database in...
  21. Re: What is the HASH Message Digest Framework in PHP?

    Even I would like to discuss on the hash_init. The hash_init can take the following parameters :

    algo - Name of selected hashing algorithm.
    Options - Optional configurations for generating the...
  22. Replies
    5
    Views
    1,026

    Re: What is the Cracklib in PHP?

    I think that you should clear the concepts first. So, I am trying to explain you about the concepts. These functions allow you to use the CrackLib library to test the strength of a password. This...
  23. Re: Explain me about Calendar Functions in PHP!

    The functions that are required for the calendar are available in the standard PHP module, which is always available. You do not need any external libraries but you have to compile php with it. To...
  24. Re: What is an Authentication Services - RADIUS in PHP?

    I have provided you more predefined constants that can be useful for you. These constants are defined by this extension, and are only available when the extension has been compiled into PHP or...
  25. Re: What are the require_ once and include_ once in PHP?

    When using absolute_path there are fewer stat() system calls. When using relative_path there are more stat() system calls because it has to start from the current directory back up to / and then to...
  26. Replies
    5
    Views
    1,242

    Re: How to use return() in PHP?

    If return () is called from the main script, then script execution stops. If the current script is auto_prepend_file and auto_append_file to php.ini, then the script stops.

    auto_prepend_file...
  27. Replies
    5
    Views
    1,674

    Re: How to use Do-While Loop in PHP?

    You can run the piece of code again and again by using the while loop in PHP. I would like to explain you about the while loop so that you can understand the basic concept very clearly. The while...
  28. Replies
    5
    Views
    733

    Re: How to Switch from HTML to PHP?

    When PHP parses a file, it searches the tags of opening and closing, which define the code that must be interpreted. In this way, it allows PHP to be embedded in all kinds of documents because...
  29. Re: What are the Possible attacks of CGI binary in PHP?

    The step that is explained by the 'Warner' is correct. But I would like to add some more points in that, so that it would be easy for you to understand. The web server first checks if it has access...
  30. Replies
    5
    Views
    2,578

    Re: How to set doc_root or user_dir in PHP?

    The configuration directive cgi.force_redirect avoids a direct call to a PHP script with a URL like http://my.host/cgi-bin/php/secretdir/script.php possible. In this case, PHP analyze the file only...
  31. Replies
    5
    Views
    972

    Re: How to Inject SQL Statements in PHP?

    One way to gain passwords is to circumvent the search page. What the attacker needs to do is to see if a form variable is used in the application, and if it is mismanaged. These filters can be...
  32. Replies
    5
    Views
    1,092

    Re: Creating a Database in PHP?

    I would like to tell you some basic things about creating the database, since I think that you don't have much knowledge about it. After creating the Database, only the owner and the superuser can do...
  33. Replies
    5
    Views
    796

    Re: How to examine your code in PHP?

    It is strongly recommended to carefully examine your code to make sure that no variables sent by the browser, and not sufficiently tested before use. You can ask yourself the following questions :
    ...
  34. Re: What is the Phar manifest file entry in PHP?

    There are some important things that you should know. All access in writing require phar.readonly is disabled in php.ini or directly via the command line. Only the tar or zip archive without. Phar in...
  35. Replies
    5
    Views
    1,513

    Re: How to Create Phar Archives in PHP?

    In a phar archive based on tar or zip, the container is stored in the file .phar / stub.php. The default container Phar archive based on phar contains approximately 7kb of code to extract the...
  36. Replies
    5
    Views
    1,568

    Re: Why we use PHAR in PHP?

    The phar extension provides a way to put a complete PHP application in a single file called a "phar" (PHP Archive) for installation and configuration easy. In addition to this service, the extension...
  37. Replies
    6
    Views
    2,138

    Re: How to use Zip and BZip2 in PHP?

    I have provided you with the Class ZipArchive. The following are the same :

    ZipArchive: addEmptyDir - Adds a new folder to a Zip archive
    ZipArchive:: addFile - Adds a file to a ZIP archive...
  38. Re: What are the Functions Control Terminal Screen in PHP?

    The following is the coding for writing a string with a specified color to the screen :


    <?php
    ncurses_init ();

    if ( ncurses_has_colors ()) {
    ncurses_start_color ();
    ncurses_init_pair...
  39. Replies
    4
    Views
    623

    Re: What are the Properties of XForms?

    XForms uses properties to define data restrictions, types and behaviors. The following are some examples that can explain you more clearly.

    When you make the required="true()" property, that...
  40. Replies
    5
    Views
    668

    Re: What are the XForms and XPath?

    When you use the XPath in the XForms, it usually contains a context node. Due to which the number of steps needed in the path expression are decreased. For example, if the instance data is a simple...
  41. Replies
    5
    Views
    848

    Re: Errors : While Managing File Uploads in PHP

    The following are some errors that occur when you are uploading the file in PHP :

    UPLOAD_ERR_OK - No error, the download is correct.
    UPLOAD_ERR_INI_SIZE - Value: 1. The downloaded file size...
  42. Replies
    5
    Views
    816

    Re: HTTP authentication with PHP

    I have also given an example of a script that has minimum script to request and check a user-name and password :

    <?php

    if ( !isset($_SERVER['PHP_AUTH_USER']) ) {
    header('WWW-Authenticate:...
  43. Replies
    4
    Views
    683

    Re: What Filters are Available in PHP?

    Flags are optionally used with both validation and sanitization to tweak behaviour according to need. For example, passing in FILTER_FLAG_SCHEME_REQUIRED while filtering an URL will require a scheme...
  44. Replies
    5
    Views
    857

    Re: What Protocols are Supported by PHP?

    Filesystem is the default handler for PHP and represents the local files. When a relative path is specified (a path that does not begin with /, \, \ \, or a Windows drive letter), the path will be...
  45. Replies
    4
    Views
    716

    Re: Why we use OpenAL in PHP?

    The functions of OpenAL are available in the standard PHP module, which is always available. his extension PECL is not bundled with PHP. While talking about the resource types, this extension defines...
  46. Replies
    4
    Views
    860

    Re: What is the KTaglib in PHP?

    KTaglib is an object oriented library taglib KDE Project used in projects such as Amarok, to read and write ID3 tags and Ogg. The library also provides access to audio information. This approach...
  47. Replies
    4
    Views
    853

    Re: How to Install Session in PHP?

    You should also know about the Runtime Configuration. The behavior of these functions is affected by settings in php.ini. I have provided you with a list of some configuration options for sessions....
  48. Replies
    4
    Views
    941

    Re: What are the Reserved Words in PHP?

    The following are some reserved words of PHP, which you cannot use for the class or the function names. Here are list of some reserved words :

    abstract
    and
    array ()
    as
    break
    Box
    ...
  49. Re: How to Register a Variable with $ _SESSION?

    If register_globals is enabled, then each global variable can be registered as session variables, and all session variables will be reconstructed as global variables. Since PHP must know which global...
  50. Re: How to Create and use custom classes in VB 6.0?

    I am telling you the basic things to make you understand more properly. A computer object is similar to an object of everyday life, and we use daily in our VBA code. These objects have...
Results 1 to 50 of 282
Page 1 of 6 1 2 3 4
Page generated in 1,710,828,947.47163 seconds with 33 queries