A script engine for the specified language can be not created

TFsoft2008 2008-08-26 09:26:47
大家好:
我重装系统后,运行一个VB编写的程序,就会提示 A script engine for the specified language can be not created。
以前没有这个提示的,不知道我哪个地方没弄好,望大家指教!
...全文
1631 4 打赏 收藏 转发到动态 举报
写回复
用AI写文章
4 条回复
切换为时间正序
请发表友善的回复…
发表回复
极无宪 2011-06-28
  • 打赏
  • 举报
回复
是没有安装Microsoft Script Control,就他妈的我安装了Microsoft Script Control但是装好的时候可以用,重启一下电脑就不行了!!!!
smbsoft 2008-09-19
  • 打赏
  • 举报
回复
是程序里面有这句"ScpFomual.Language = "VBScript"",出错就在这个地方
smbsoft 2008-09-19
  • 打赏
  • 举报
回复
我今天也遇到这个问题,大家帮帮忙吧!我的里面有这句"ScpFomual.Language = "VBScript"",是不是没装什么字体?
bwu851 2008-08-27
  • 打赏
  • 举报
回复
好象是某些setting有错, 帮你顶吧.
Twitter Digg Facebook Del.icio.us Reddit Stumbleupon Newsvine Technorati Mr. Wong Yahoo! Google Windows Live Send as Email Add to your CodeProject bookmarks Discuss this article 85 Print Article Database » Database » Other databasesLicence CPOL First Posted 19 Jan 2012 Views 24,219 Downloads 992 Bookmarked 74 times RaptorDB - The Key Value Store V2 By Mehdi Gholam | 8 Mar 2012 | Unedited contribution C#.NETDBABeginnerIntermediateAdvanceddatabase Even faster Key/Value store nosql embedded database engine utilizing the new MGIndex data structure with MurMur2 Hashing and WAH Bitmap indexes for duplicates. See Also More like this More by this author Article Browse Code Stats Revisions (8) Alternatives 4.95 (56 votes) 1 2 3 4 5 4.95/5 - 56 votes μ 4.95, σa 1.05 [?] Is your email address OK? You are signed up for our newsletters but your email address is either unconfirmed, or has not been reconfirmed in a long time. Please click here to have a confirmation email sent so we can confirm your email address and start sending you newsletters again. Alternatively, you can update your subscriptions. Add your own alternative version Introduction What is RaptorDB? Features Why another data structure? The problem with a b+tree Requirements of a good index structure The MGIndex Page Splits Interesting side effects of MGIndex The road not taken / the road taken and doubled back! Performance Tests Comparing B+tree and MGIndex Really big data sets! Index parameter tuning Performance Tests - v2.3 Using the Code Differences to v1 Using RaptorDBString and RaptorDBGuid Global parameters RaptorDB interface Non-clean shutdowns Removing Keys Unit tests File Formats File Format : *.mgdat File Format : *.mgbmp File Format : *.mgidx File Format : *.mgbmr , *.mgrec History Download RaptorDB_v2.0.zip - 38.7 KB Download RaptorDB_v2.1.zip - 39 KB Download RaptorDB_v2.2.zip - 39 KB Download RaptorDB_v2.3.zip - 39.6 KB D
JSP Simple Examples Index 1. Creating a String In jsp we create a string as we does in a java. In jsp we can declare it inside the declaration directive or a scriptlet directive. String Length In java, Strings are objects that belong to class java.lang.String. A string is a sequence of simple characters. We can get the length of the string by using the method length() of java.lang.String. Declaring string array in java An array is the collection of same data type. Suppose if we have a declare an array of type String, then it will store only the String value not any other data type. When we have a closely related data of the same type and scope, it is better to declare it in an array. Multidimensional array java A two dimensional array can be thought as a grid of rows and columns. The first array will reflect to a row and the second one is column. int array Array is a collection of same data type. Suppose if we have declared an array of type int then the array will take only the int values and not any other data types. We can find find out the length of the variable by using the variable length . JSP string array String array cannot hold numbers or vice- versa. Arrays can only store the type of data specified at the time of declaring the array variable. Custom exceptions Custom Exception inherits the properties from the Exception class. Whenever we have declare our own exceptions then we call it custom exceptions. Throwing an exception All methods use the throw statement to throw an exception. The throw statement requires a single argument a throwable object. Here is an example of a throw statement. Arrayindexoutofboundsexception ArrayIndexOutOfBoundException is thrown when we have to indicate that an array has been accessed with an illegal index. printStackTrace in jsp printStackTrace is a method of the Throwable class. By using this method we can get more information about the error process if we print a stack trace from the exception. Runtime Errors Errors are arised when there is any logic problem with the logic of the program. Try catch in jsp In try block we write those code which can throw exception while code execution and when the exception is thrown it is caught inside the catch block. Multiple try catch We can have more than one try/catch block. The most specific exception which can be thrown is written on the top in the catch block following by the less specific least. Nested try catch We can declare multiple try blocks inside the try block. The most specific exception which can be thrown is written on the top in the catch block following by the less specific least. kilometers per liter to miles per gallon Kilometers per liter : The distance traveled by a vehicle which is running on gasoline or diesel fuel in a kilometer. Miles per Gallon: The distance traveled by a vehicle which is running on gasoline or diesel fuel in a mile. Ascii values table ASCII stands for American Standard Code for Information Interchange. Computers can only understand numbers, so an ASCII code is the numerical representation of a character such as @, #, $, and so on. ASCII was developed when non- printing characters were rarely used. life cycle of a jsp page Life of the the jsp page is just same as the servlet life cycle. After get translated the jsp file is just like a servlet. Page directive attributes A directive is a way to give special instructions to the container at page translation time. The page directive is written on the top of the jsp page. Html tags in jsp In this example we have used the html tag inside the println() method of the out implicit object which is used to write the content on the browser. Password Controls In this program we are going to know how the server determines whether the password entered by the user is correct or not. This whole process is controlled on the server side. Multiple forms in jsp The form tag creates a form for user input. A form can contain checkboxes, textfields, radio- buttons and many more. Forms are used to pass user- data to a specified URL which is specified in the action attribute of the form tag. Interface in jsp In interface none of its methods are implemented. All the methods are abstract. There is no code associated with an interface. In an interface all the instance methods are public and abstract. Interfaces are always implemented in the class. They add extra behaviors to the class. Inheritance in java with example Inheritance is one of the concept of the Object- Oriented programming. It allows you to define a general class, and later more specialized classes by simply adding some new details. Constructor inheritance Constructors are used to create objects from the class. Constructor declaration are just like method declaration, except that they do not have any return type and they use the name of the class. The compiler provides us with a default constructor to the class having no arguments. Abstract classes We does not make a object of the abstract class. This class must be inherited. Unlike interface the abstract class may implement some of the methods defined in the class, but in this class at least one method should be abstract. Using Super class Variables With Sub-classed Objects One of the strong features of java is that it is follows a OOPs concept, and one of the feature of OOP in java is that, we can assign a subclass object or variable to the variable of the superclass type. Log files Log files keeps a records of internet protocol addresses (IP), Http status, date, time, bytes sent, bytes recieved, number of clicks etc. Calculate a factorial by using while loop In this example we are going to find out the factorial of 12 by using the while loop. In while loop the loop will run until the condition we have given gets true. Calculating factorial After going through this example you will be understand how you can calculate the factorial by using recursion in jsp. To make a program on factorial, firstly it must be clear what is recursion. Celsius Fahrenheit Celsius is a unit to measure temperature scale on which water freezes at 0 degree and boiling point is 100 degree. This unit is discovered by Celsius in 1742, a Swedish astronomer and physicist, he has invented the centigrade, or Celsius thermometer divided between the freezing and boiling points of water into 100 parts. comment in jsp In a jsp we should always try to use jsp- style comments unless you want the comments to appear in the HTML. Jsp comments are converted by the jsp engine into java comments in the source code of the servlet that implements the Jsp page. Html tag inside out implicit object In this program we are going to use a html tag inside a out object. out object is used to display the content on the browser. To make this program run use out object inside which define some html code along with the content you want to display on the browser Jsp methods In this example we are going to show you how we can declare a method and how we can used it. In this example we are making a method named as addNum(int i, int b) which will take two numbers as its parameters and return integer value. Multiple methods Jsp is used mainly for presentation logic. In the jsp we can declare methods just like as we declare methods in java classes. Methods can be declared in either declaration directive or we can declare it in scriptlet. If we declare method inside declaration directive, then the method is applicable in the whole page. Passing Array method Array is a collection of similar data type. It is one of the simplest data structures. Arrays holds equally sized data elements generally of the similar data type. Two index In this example we will show how we can use two indexes in a for loop. We can solve this problem by using for loop defined inside the scriptlet directive. Date in JSP To print a Date in JSP firstly we are importing a class named java.util.Date of the package java.util. This package is imported in the jsp page so that the Date class and its properties can accessed in the JSP page. If- Else Ladder A ladder means a vertical set of steps. It is a computer generated list of pairings used in eliminations. Nested If We use the if condition to check if the particular condition is true then it should perform a certain task, and if a particular condition is not true then it should do some other tasks. Quintessential JSP Quintessential means representing the perfect example of a class or quality. It is pure and concentrated essence of a substance. Include File JSP using directive and include action <%@ include file = " "%>: - This is include directive. This directive has only one attribute named as file, which is used to include a file in the jsp page at the translation time. :- This is known as the include standard action. This standard action is used to include a file at run time. This standard action is evaluated at the run time. Snoop in JSP It mostly contains the request information, ServletContext initialization parameters, ServetContext attributes, request headers, response headers etc. sendRedirect In JSP sendRedirect() method is a method of HttpServletResponse interface. In sendRedirect() the object of request will be generated again with the location of page which will perform the request of the client. Request Header in JSP Whenever an http client sends a request, it sends the request in the form of get or post method or any other HttpRequest methhods. It can also sends the headers with it. Specific request headers in JSP Whenever an http client sends a request, it can also sends the headers with it. All the headers are optional except Content-length, which is required only for POST request. Java class in JSP To use the class inside the jsp page we need to create an object of the class by using the new operator. At last use the instance of the class to access the methods of the java file. Setting Colors in JSP In Jsp also we can set the background color which we want, the font color can be changed. The table can be coloured . By using the colors code we can give colors according to our wish. Sine Table in JSP Mathematically, the sine of an angle is the ratio of the length of the opposite side to the length of the hypotenuse of an imaginary right triangle having that angle in it. Applet In Jsp Applets are small programs or applications written in java. These applets are those small programs that runs on web browsers, usually written in java. We can use the applets in jee also. In jee it runs on the context of web application on a client computer. Creating a Local Variable in JSP Consider a situation where we have to declare a variable as local, then we should declare the methods and variables in tag except the declaration directive. Method in Declaration Tag Anything which will be declared inside declaration tag will be applicable within the whole application. We call this tag a Declaration Tag. The syntax of this tag is <%! --------- %>. Forward a JSP Page The request object goes to the controller then the controller decides by which jsp or servlet this request will be processed, then the request object is passed to that jsp or servlet and the output is displayed to the browser by the response object. Random in JSP Random numbers are the numbers that are determined entirely by chance. User does not have any control over the working of random numbers. random() is a method of Math class which extends java.lang package. JSP include directive By using the include tag the file will be included in the jsp page at the translation time. In this example we have created a jsp file which has to be included in the other jsp file by using the tag <%@ include file = " "%>. Literals in JSP Literals are the values, such as a number or a text string, that are written literally as part of a program code. A literal is a expression of a value, including a number or a text string. Passing Parameter using Request parameters can be passed by using . This tag contains two attributes: 1) name 2) value. Tag Handler Custom tags are usually distributed in the form of a tag library, which defines a set of related custom tags and contains the objects that implement the tags. Custom tag libraries allow the java programmer to write code that provides data access and other services, and they make those features available to the jsp author in a simple to use XML- like fashion. UseBean Syntax: [PHP] ;;;;;;;;;;;;;;;;;;; ; About php.ini ; ;;;;;;;;;;;;;;;;;;; ; PHP's initialization file, generally called php.ini, is responsible for ; configuring many of the aspects of PHP's behavior. ; PHP attempts to find and load this configuration from a number of locations. ; The following is a summary of its search order: ; 1. SAPI module specific location. ; 2. The PHPRC environment variable. (As of PHP 5.2.0) ; 3. A number of predefined registry keys on Windows (As of PHP 5.2.0) ; 4. Current working directory (except CLI) ; 5. The web server's directory (for SAPI modules), or directory of PHP ; (otherwise in Windows) ; 6. The directory from the --with-config-file-path compile time option, or the ; Windows directory (C:\windows or C:\winnt) ; See the PHP docs for more specific information. ; http://php.net/configuration.file ; The syntax of the file is extremely simple. Whitespace and lines ; beginning with a semicolon are silently ignored (as you probably guessed). ; Section headers (e.g. [Foo]) are also silently ignored, even though ; they might mean something in the future. ; Directives following the section heading [PATH=/www/mysite] only ; apply to PHP files in the /www/mysite directory. Directives ; following the section heading [HOST=www.example.com] only apply to ; PHP files served from www.example.com. Directives set in these ; special sections cannot be overridden by user-defined INI files or ; at runtime. Currently, [PATH=] and [HOST=] sections only work under ; CGI/FastCGI. ; http://php.net/ini.sections ; Directives are specified using the following syntax: ; directive = value ; Directive names are *case sensitive* - foo=bar is different from FOO=bar. ; Directives are variables used to configure PHP or PHP extensions. ; There is no name validation. If PHP can't find an expected ; directive because it is not set or is mistyped, a default value will be used. ; The value can be a string, a number, a PHP constant (e.g. E_ALL or M_PI), one ; of the INI constants (On, Off, True, False, Yes, No and None) or an expression ; (e.g. E_ALL & ~E_NOTICE), a quoted string ("bar"), or a reference to a ; previously set variable or directive (e.g. ${foo}) ; Expressions in the INI file are limited to bitwise operators and parentheses: ; | bitwise OR ; ^ bitwise XOR ; & bitwise AND ; ~ bitwise NOT ; ! boolean NOT ; Boolean flags can be turned on using the values 1, On, True or Yes. ; They can be turned off using the values 0, Off, False or No. ; An empty string can be denoted by simply not writing anything after the equal ; sign, or by using the None keyword: ; foo = ; sets foo to an empty string ; foo = None ; sets foo to an empty string ; foo = "None" ; sets foo to the string 'None' ; If you use constants in your value, and these constants belong to a ; dynamically loaded extension (either a PHP extension or a Zend extension), ; you may only use these constants *after* the line that loads the extension. ;;;;;;;;;;;;;;;;;;; ; About this file ; ;;;;;;;;;;;;;;;;;;; ; PHP comes packaged with two INI files. One that is recommended to be used ; in production environments and one that is recommended to be used in ; development environments. ; php.ini-production contains settings which hold security, performance and ; best practices at its core. But please be aware, these settings may break ; compatibility with older or less security conscience applications. We ; recommending using the production ini in production and testing environments. ; php.ini-development is very similar to its production variant, except it's ; much more verbose when it comes to errors. We recommending using the ; development version only in development environments as errors shown to ; application users can inadvertently leak otherwise secure information. ; This is php.ini-development INI file. ;;;;;;;;;;;;;;;;;;; ; Quick Reference ; ;;;;;;;;;;;;;;;;;;; ; The following are all the settings which are different in either the production ; or development versions of the INIs with respect to PHP's default behavior. ; Please see the actual settings later in the document for more details as to why ; we recommend these changes in PHP's behavior. ; display_errors ; Default Value: On ; Development Value: On ; Production Value: Off ; display_startup_errors ; Default Value: Off ; Development Value: On ; Production Value: Off ; error_reporting ; Default Value: E_ALL & ~E_NOTICE & ~E_STRICT & ~E_DEPRECATED ; Development Value: E_ALL ; Production Value: E_ALL & ~E_DEPRECATED & ~E_STRICT ; html_errors ; Default Value: On ; Development Value: On ; Production value: On ; log_errors ; Default Value: Off ; Development Value: On ; Production Value: On ; max_input_time ; Default Value: -1 (Unlimited) ; Development Value: 60 (60 seconds) ; Production Value: 60 (60 seconds) ; output_buffering ; Default Value: Off ; Development Value: 4096 ; Production Value: 4096 ; register_argc_argv ; Default Value: On ; Development Value: Off ; Production Value: Off ; request_order ; Default Value: None ; Development Value: "GP" ; Production Value: "GP" ; session.gc_divisor ; Default Value: 100 ; Development Value: 1000 ; Production Value: 1000 ; session.hash_bits_per_character ; Default Value: 4 ; Development Value: 5 ; Production Value: 5 ; short_open_tag ; Default Value: On ; Development Value: Off ; Production Value: Off ; track_errors ; Default Value: Off ; Development Value: On ; Production Value: Off ; url_rewriter.tags ; Default Value: "a=href,area=href,frame=src,form=,fieldset=" ; Development Value: "a=href,area=href,frame=src,input=src,form=fakeentry" ; Production Value: "a=href,area=href,frame=src,input=src,form=fakeentry" ; variables_order ; Default Value: "EGPCS" ; Development Value: "GPCS" ; Production Value: "GPCS" ;;;;;;;;;;;;;;;;;;;; ; php.ini Options ; ;;;;;;;;;;;;;;;;;;;; ; Name for user-defined php.ini (.htaccess) files. Default is ".user.ini" ;user_ini.filename = ".user.ini" ; To disable this feature set this option to empty value ;user_ini.filename = ; TTL for user-defined php.ini files (time-to-live) in seconds. Default is 300 seconds (5 minutes) ;user_ini.cache_ttl = 300 ;;;;;;;;;;;;;;;;;;;; ; Language Options ; ;;;;;;;;;;;;;;;;;;;; ; Enable the PHP scripting language engine under Apache. ; http://php.net/engine engine = On ; This directive determines whether or not PHP will recognize code between ; tags as PHP source which should be processed as such. It is ; generally recommended that should be used and that this feature ; should be disabled, as enabling it may result in issues when generating XML ; documents, however this remains supported for backward compatibility reasons. ; Note that this directive does not control the tags. ; http://php.net/asp-tags asp_tags = Off ; The number of significant digits displayed in floating point numbers. ; http://php.net/precision precision = 14 ; Output buffering is a mechanism for controlling how much output data ; (excluding headers and cookies) PHP should keep internally before pushing that ; data to the client. If your application's output exceeds this setting, PHP ; will send that data in chunks of roughly the size you specify. ; Turning on this setting and managing its maximum buffer size can yield some ; interesting side-effects depending on your application and web server. ; You may be able to send headers and cookies after you've already sent output ; through print or echo. You also may see performance benefits if your server is ; emitting less packets due to buffered output versus PHP streaming the output ; as it gets it. On production servers, 4096 bytes is a good setting for performance ; reasons. ; Note: Output buffering can also be controlled via Output Buffering Control ; functions. ; Possible Values: ; On = Enabled and buffer is unlimited. (Use with caution) ; Off = Disabled ; Integer = Enables the buffer and sets its maximum size in bytes. ; Note: This directive is hardcoded to Off for the CLI SAPI ; Default Value: Off ; Development Value: 4096 ; Production Value: 4096 ; http://php.net/output-buffering output_buffering = 4096 ; You can redirect all of the output of your scripts to a function. For ; example, if you set output_handler to "mb_output_handler", character ; encoding will be transparently converted to the specified encoding. ; Setting any output handler automatically turns on output buffering. ; Note: People who wrote portable scripts should not depend on this ini ; directive. Instead, explicitly set the output handler using ob_start(). ; Using this ini directive may cause problems unless you know what script ; is doing. ; Note: You cannot use both "mb_output_handler" with "ob_iconv_handler" ; and you cannot use both "ob_gzhandler" and "zlib.output_compression". ; Note: output_handler must be empty if this is set 'On' !!!! ; Instead you must use zlib.output_handler. ; http://php.net/output-handler ;output_handler = ; Transparent output compression using the zlib library ; Valid values for this option are 'off', 'on', or a specific buffer size ; to be used for compression (default is 4KB) ; Note: Resulting chunk size may vary due to nature of compression. PHP ; outputs chunks that are few hundreds bytes each as a result of ; compression. If you prefer a larger chunk size for better ; performance, enable output_buffering in addition. ; Note: You need to use zlib.output_handler instead of the standard ; output_handler, or otherwise the output will be corrupted. ; http://php.net/zlib.output-compression zlib.output_compression = Off ; http://php.net/zlib.output-compression-level ;zlib.output_compression_level = -1 ; You cannot specify additional output handlers if zlib.output_compression ; is activated here. This setting does the same as output_handler but in ; a different order. ; http://php.net/zlib.output-handler ;zlib.output_handler = ; Implicit flush tells PHP to tell the output layer to flush itself ; automatically after every output block. This is equivalent to calling the ; PHP function flush() after each and every call to print() or echo() and each ; and every HTML block. Turning this option on has serious performance ; implications and is generally recommended for debugging purposes only. ; http://php.net/implicit-flush ; Note: This directive is hardcoded to On for the CLI SAPI implicit_flush = Off ; The unserialize callback function will be called (with the undefined class' ; name as parameter), if the unserializer finds an undefined class ; which should be instantiated. A warning appears if the specified function is ; not defined, or if the function doesn't include/implement the missing class. ; So only set this entry, if you really want to implement such a ; callback-function. unserialize_callback_func = ; When floats & doubles are serialized store serialize_precision significant ; digits after the floating point. The default value ensures that when floats ; are decoded with unserialize, the data will remain the same. serialize_precision = 17 ; open_basedir, if set, limits all file operations to the defined directory ; and below. This directive makes most sense if used in a per-directory ; or per-virtualhost web server configuration file. This directive is ; *NOT* affected by whether Safe Mode is turned On or Off. ; http://php.net/open-basedir ;open_basedir = ; This directive allows you to disable certain functions for security reasons. ; It receives a comma-delimited list of function names. This directive is ; *NOT* affected by whether Safe Mode is turned On or Off. ; http://php.net/disable-functions disable_functions = ; This directive allows you to disable certain classes for security reasons. ; It receives a comma-delimited list of class names. This directive is ; *NOT* affected by whether Safe Mode is turned On or Off. ; http://php.net/disable-classes disable_classes = ; Colors for Syntax Highlighting mode. Anything that's acceptable in ; would work. ; http://php.net/syntax-highlighting ;highlight.string = #DD0000 ;highlight.comment = #FF9900 ;highlight.keyword = #007700 ;highlight.default = #0000BB ;highlight.html = #000000 ; If enabled, the request will be allowed to complete even if the user aborts ; the request. Consider enabling it if executing long requests, which may end up ; being interrupted by the user or a browser timing out. PHP's default behavior ; is to disable this feature. ; http://php.net/ignore-user-abort ;ignore_user_abort = On ; Determines the size of the realpath cache to be used by PHP. This value should ; be increased on systems where PHP opens many files to reflect the quantity of ; the file operations performed. ; http://php.net/realpath-cache-size ;realpath_cache_size = 16k ; Duration of time, in seconds for which to cache realpath information for a given ; file or directory. For systems with rarely changing files, consider increasing this ; value. ; http://php.net/realpath-cache-ttl ;realpath_cache_ttl = 120 ; Enables or disables the circular reference collector. ; http://php.net/zend.enable-gc zend.enable_gc = On ; If enabled, scripts may be written in encodings that are incompatible with ; the scanner. CP936, Big5, CP949 and Shift_JIS are the examples of such ; encodings. To use this feature, mbstring extension must be enabled. ; Default: Off ;zend.multibyte = Off ; Allows to set the default encoding for the scripts. This value will be used ; unless "declare(encoding=...)" directive appears at the top of the script. ; Only affects if zend.multibyte is set. ; Default: "" ;zend.script_encoding = ;;;;;;;;;;;;;;;;; ; Miscellaneous ; ;;;;;;;;;;;;;;;;; ; Decides whether PHP may expose the fact that it is installed on the server ; (e.g. by adding its signature to the Web server header). It is no security ; threat in any way, but it makes it possible to determine whether you use PHP ; on your server or not. ; http://php.net/expose-php expose_php = On ;;;;;;;;;;;;;;;;;;; ; Resource Limits ; ;;;;;;;;;;;;;;;;;;; ; Maximum execution time of each script, in seconds ; http://php.net/max-execution-time ; Note: This directive is hardcoded to 0 for the CLI SAPI max_execution_time = 30 ; Maximum amount of time each script may spend parsing request data. It's a good ; idea to limit this time on productions servers in order to eliminate unexpectedly ; long running scripts. ; Note: This directive is hardcoded to -1 for the CLI SAPI ; Default Value: -1 (Unlimited) ; Development Value: 60 (60 seconds) ; Production Value: 60 (60 seconds) ; http://php.net/max-input-time max_input_time = 60 ; Maximum input variable nesting level ; http://php.net/max-input-nesting-level ;max_input_nesting_level = 64 ; How many GET/POST/COOKIE input variables may be accepted ; max_input_vars = 1000 ; Maximum amount of memory a script may consume (128MB) ; http://php.net/memory-limit memory_limit = 128M ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ; Error handling and logging ; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ; This directive informs PHP of which errors, warnings and notices you would like ; it to take action for. The recommended way of setting values for this ; directive is through the use of the error level constants and bitwise ; operators. The error level constants are below here for convenience as well as ; some common settings and their meanings. ; By default, PHP is set to take action on all errors, notices and warnings EXCEPT ; those related to E_NOTICE and E_STRICT, which together cover best practices and ; recommended coding standards in PHP. For performance reasons, this is the ; recommend error reporting setting. Your production server shouldn't be wasting ; resources complaining about best practices and coding standards. That's what ; development servers and development settings are for. ; Note: The php.ini-development file has this setting as E_ALL. This ; means it pretty much reports everything which is exactly what you want during ; development and early testing. ; ; Error Level Constants: ; E_ALL - All errors and warnings (includes E_STRICT as of PHP 5.4.0) ; E_ERROR - fatal run-time errors ; E_RECOVERABLE_ERROR - almost fatal run-time errors ; E_WARNING - run-time warnings (non-fatal errors) ; E_PARSE - compile-time parse errors ; E_NOTICE - run-time notices (these are warnings which often result ; from a bug in your code, but it's possible that it was ; intentional (e.g., using an uninitialized variable and ; relying on the fact it's automatically initialized to an ; empty string) ; E_STRICT - run-time notices, enable to have PHP suggest changes ; to your code which will ensure the best interoperability ; and forward compatibility of your code ; E_CORE_ERROR - fatal errors that occur during PHP's initial startup ; E_CORE_WARNING - warnings (non-fatal errors) that occur during PHP's ; initial startup ; E_COMPILE_ERROR - fatal compile-time errors ; E_COMPILE_WARNING - compile-time warnings (non-fatal errors) ; E_USER_ERROR - user-generated error message ; E_USER_WARNING - user-generated warning message ; E_USER_NOTICE - user-generated notice message ; E_DEPRECATED - warn about code that will not work in future versions ; of PHP ; E_USER_DEPRECATED - user-generated deprecation warnings ; ; Common Values: ; E_ALL (Show all errors, warnings and notices including coding standards.) ; E_ALL & ~E_NOTICE (Show all errors, except for notices) ; E_ALL & ~E_NOTICE & ~E_STRICT (Show all errors, except for notices and coding standards warnings.) ; E_COMPILE_ERROR|E_RECOVERABLE_ERROR|E_ERROR|E_CORE_ERROR (Show only errors) ; Default Value: E_ALL & ~E_NOTICE & ~E_STRICT & ~E_DEPRECATED ; Development Value: E_ALL ; Production Value: E_ALL & ~E_DEPRECATED & ~E_STRICT ; http://php.net/error-reporting error_reporting = E_ALL ; This directive controls whether or not and where PHP will output errors, ; notices and warnings too. Error output is very useful during development, but ; it could be very dangerous in production environments. Depending on the code ; which is triggering the error, sensitive information could potentially leak ; out of your application such as database usernames and passwords or worse. ; It's recommended that errors be logged on production servers rather than ; having the errors sent to STDOUT. ; Possible Values: ; Off = Do not display any errors ; stderr = Display errors to STDERR (affects only CGI/CLI binaries!) ; On or stdout = Display errors to STDOUT ; Default Value: On ; Development Value: On ; Production Value: Off ; http://php.net/display-errors display_errors = On ; The display of errors which occur during PHP's startup sequence are handled ; separately from display_errors. PHP's default behavior is to suppress those ; errors from clients. Turning the display of startup errors on can be useful in ; debugging configuration problems. But, it's strongly recommended that you ; leave this setting off on production servers. ; Default Value: Off ; Development Value: On ; Production Value: Off ; http://php.net/display-startup-errors display_startup_errors = On ; Besides displaying errors, PHP can also log errors to locations such as a ; server-specific log, STDERR, or a location specified by the error_log ; directive found below. While errors should not be displayed on productions ; servers they should still be monitored and logging is a great way to do that. ; Default Value: Off ; Development Value: On ; Production Value: On ; http://php.net/log-errors log_errors = On ; Set maximum length of log_errors. In error_log information about the source is ; added. The default is 1024 and 0 allows to not apply any maximum length at all. ; http://php.net/log-errors-max-len log_errors_max_len = 1024 ; Do not log repeated messages. Repeated errors must occur in same file on same ; line unless ignore_repeated_source is set true. ; http://php.net/ignore-repeated-errors ignore_repeated_errors = Off ; Ignore source of message when ignoring repeated messages. When this setting ; is On you will not log errors with repeated messages from different files or ; source lines. ; http://php.net/ignore-repeated-source ignore_repeated_source = Off ; If this parameter is set to Off, then memory leaks will not be shown (on ; stdout or in the log). This has only effect in a debug compile, and if ; error reporting includes E_WARNING in the allowed list ; http://php.net/report-memleaks report_memleaks = On ; This setting is on by default. ;report_zend_debug = 0 ; Store the last error/warning message in $php_errormsg (boolean). Setting this value ; to On can assist in debugging and is appropriate for development servers. It should ; however be disabled on production servers. ; Default Value: Off ; Development Value: On ; Production Value: Off ; http://php.net/track-errors track_errors = On ; Turn off normal error reporting and emit XML-RPC error XML ; http://php.net/xmlrpc-errors ;xmlrpc_errors = 0 ; An XML-RPC faultCode ;xmlrpc_error_number = 0 ; When PHP displays or logs an error, it has the capability of formatting the ; error message as HTML for easier reading. This directive controls whether ; the error message is formatted as HTML or not. ; Note: This directive is hardcoded to Off for the CLI SAPI ; Default Value: On ; Development Value: On ; Production value: On ; http://php.net/html-errors html_errors = On ; If html_errors is set to On *and* docref_root is not empty, then PHP ; produces clickable error messages that direct to a page describing the error ; or function causing the error in detail. ; You can download a copy of the PHP manual from http://php.net/docs ; and change docref_root to the base URL of your local copy including the ; leading '/'. You must also specify the file extension being used including ; the dot. PHP's default behavior is to leave these settings empty, in which ; case no links to documentation are generated. ; Note: Never use this feature for production boxes. ; http://php.net/docref-root ; Examples ;docref_root = "/phpmanual/" ; http://php.net/docref-ext ;docref_ext = .html ; String to output before an error message. PHP's default behavior is to leave ; this setting blank. ; http://php.net/error-prepend-string ; Example: ;error_prepend_string = "" ; String to output after an error message. PHP's default behavior is to leave ; this setting blank. ; http://php.net/error-append-string ; Example: ;error_append_string = "" ; Log errors to specified file. PHP's default behavior is to leave this value ; empty. ; http://php.net/error-log ; Example: ;error_log = php_errors.log ; Log errors to syslog (Event Log on Windows). ;error_log = syslog ;windows.show_crt_warning ; Default value: 0 ; Development value: 0 ; Production value: 0 ;;;;;;;;;;;;;;;;; ; Data Handling ; ;;;;;;;;;;;;;;;;; ; The separator used in PHP generated URLs to separate arguments. ; PHP's default setting is "&". ; http://php.net/arg-separator.output ; Example: ;arg_separator.output = "&" ; List of separator(s) used by PHP to parse input URLs into variables. ; PHP's default setting is "&". ; NOTE: Every character in this directive is considered as separator! ; http://php.net/arg-separator.input ; Example: ;arg_separator.input = ";&" ; This directive determines which super global arrays are registered when PHP ; starts up. G,P,C,E & S are abbreviations for the following respective super ; globals: GET, POST, COOKIE, ENV and SERVER. There is a performance penalty ; paid for the registration of these arrays and because ENV is not as commonly ; used as the others, ENV is not recommended on productions servers. You ; can still get access to the environment variables through getenv() should you ; need to. ; Default Value: "EGPCS" ; Development Value: "GPCS" ; Production Value: "GPCS"; ; http://php.net/variables-order variables_order = "GPCS" ; This directive determines which super global data (G,P,C,E & S) should ; be registered into the super global array REQUEST. If so, it also determines ; the order in which that data is registered. The values for this directive are ; specified in the same manner as the variables_order directive, EXCEPT one. ; Leaving this value empty will cause PHP to use the value set in the ; variables_order directive. It does not mean it will leave the super globals ; array REQUEST empty. ; Default Value: None ; Development Value: "GP" ; Production Value: "GP" ; http://php.net/request-order request_order = "GP" ; This directive determines whether PHP registers $argv & $argc each time it ; runs. $argv contains an array of all the arguments passed to PHP when a script ; is invoked. $argc contains an integer representing the number of arguments ; that were passed when the script was invoked. These arrays are extremely ; useful when running scripts from the command line. When this directive is ; enabled, registering these variables consumes CPU cycles and memory each time ; a script is executed. For performance reasons, this feature should be disabled ; on production servers. ; Note: This directive is hardcoded to On for the CLI SAPI ; Default Value: On ; Development Value: Off ; Production Value: Off ; http://php.net/register-argc-argv register_argc_argv = Off ; When enabled, the ENV, REQUEST and SERVER variables are created when they're ; first used (Just In Time) instead of when the script starts. If these ; variables are not used within a script, having this directive on will result ; in a performance gain. The PHP directive register_argc_argv must be disabled ; for this directive to have any affect. ; http://php.net/auto-globals-jit auto_globals_jit = On ; Whether PHP will read the POST data. ; This option is enabled by default. ; Most likely, you won't want to disable this option globally. It causes $_POST ; and $_FILES to always be empty; the only way you will be able to read the ; POST data will be through the php://input stream wrapper. This can be useful ; to proxy requests or to process the POST data in a memory efficient fashion. ; http://php.net/enable-post-data-reading ;enable_post_data_reading = Off ; Maximum size of POST data that PHP will accept. ; Its value may be 0 to disable the limit. It is ignored if POST data reading ; is disabled through enable_post_data_reading. ; http://php.net/post-max-size post_max_size = 8M ; Automatically add files before PHP document. ; http://php.net/auto-prepend-file auto_prepend_file = ; Automatically add files after PHP document. ; http://php.net/auto-append-file auto_append_file = ; By default, PHP will output a character encoding using ; the Content-type: header. To disable sending of the charset, simply ; set it to be empty. ; ; PHP's built-in default is text/html ; http://php.net/default-mimetype default_mimetype = "text/html" ; PHP's default character set is set to empty. ; http://php.net/default-charset ;default_charset = "UTF-8" ; Always populate the $HTTP_RAW_POST_DATA variable. PHP's default behavior is ; to disable this feature. If post reading is disabled through ; enable_post_data_reading, $HTTP_RAW_POST_DATA is *NOT* populated. ; http://php.net/always-populate-raw-post-data ;always_populate_raw_post_data = On ;;;;;;;;;;;;;;;;;;;;;;;;; ; Paths and Directories ; ;;;;;;;;;;;;;;;;;;;;;;;;; ; UNIX: "/path1:/path2" ;include_path = ".:/php/includes" ; ; Windows: "\path1;\path2" ;include_path = ".;c:\php\includes" ; ; PHP's default setting for include_path is ".;/path/to/php/pear" ; http://php.net/include-path ; The root of the PHP pages, used only if nonempty. ; if PHP was not compiled with FORCE_REDIRECT, you SHOULD set doc_root ; if you are running php as a CGI under any web server (other than IIS) ; see documentation for security issues. The alternate is to use the ; cgi.force_redirect configuration below ; http://php.net/doc-root doc_root = ; The directory under which PHP opens the script using /~username used only ; if nonempty. ; http://php.net/user-dir user_dir = ; Directory in which the loadable extensions (modules) reside. ; http://php.net/extension-dir ; extension_dir = "./" ; On windows: ; extension_dir = "ext" ; Whether or not to enable the dl() function. The dl() function does NOT work ; properly in multithreaded servers, such as IIS or Zeus, and is automatically ; disabled on them. ; http://php.net/enable-dl enable_dl = Off ; cgi.force_redirect is necessary to provide security running PHP as a CGI under ; most web servers. Left undefined, PHP turns this on by default. You can ; turn it off here AT YOUR OWN RISK ; **You CAN safely turn this off for IIS, in fact, you MUST.** ; http://php.net/cgi.force-redirect ;cgi.force_redirect = 1 ; if cgi.nph is enabled it will force cgi to always sent Status: 200 with ; every request. PHP's default behavior is to disable this feature. ;cgi.nph = 1 ; if cgi.force_redirect is turned on, and you are not running under Apache or Netscape ; (iPlanet) web servers, you MAY need to set an environment variable name that PHP ; will look for to know it is OK to continue execution. Setting this variable MAY ; cause security issues, KNOW WHAT YOU ARE DOING FIRST. ; http://php.net/cgi.redirect-status-env ;cgi.redirect_status_env = ; cgi.fix_pathinfo provides *real* PATH_INFO/PATH_TRANSLATED support for CGI. PHP's ; previous behaviour was to set PATH_TRANSLATED to SCRIPT_FILENAME, and to not grok ; what PATH_INFO is. For more information on PATH_INFO, see the cgi specs. Setting ; this to 1 will cause PHP CGI to fix its paths to conform to the spec. A setting ; of zero causes PHP to behave as before. Default is 1. You should fix your scripts ; to use SCRIPT_FILENAME rather than PATH_TRANSLATED. ; http://php.net/cgi.fix-pathinfo ;cgi.fix_pathinfo=1 ; FastCGI under IIS (on WINNT based OS) supports the ability to impersonate ; security tokens of the calling client. This allows IIS to define the ; security context that the request runs under. mod_fastcgi under Apache ; does not currently support this feature (03/17/2002) ; Set to 1 if running under IIS. Default is zero. ; http://php.net/fastcgi.impersonate ;fastcgi.impersonate = 1 ; Disable logging through FastCGI connection. PHP's default behavior is to enable ; this feature. ;fastcgi.logging = 0 ; cgi.rfc2616_headers configuration option tells PHP what type of headers to ; use when sending HTTP response code. If it's set 0 PHP sends Status: header that ; is supported by Apache. When this option is set to 1 PHP will send ; RFC2616 compliant header. ; Default is zero. ; http://php.net/cgi.rfc2616-headers ;cgi.rfc2616_headers = 0 ;;;;;;;;;;;;;;;; ; File Uploads ; ;;;;;;;;;;;;;;;; ; Whether to allow HTTP file uploads. ; http://php.net/file-uploads file_uploads = On ; Temporary directory for HTTP uploaded files (will use system default if not ; specified). ; http://php.net/upload-tmp-dir ;upload_tmp_dir = ; Maximum allowed size for uploaded files. ; http://php.net/upload-max-filesize upload_max_filesize = 2M ; Maximum number of files that can be uploaded via a single request max_file_uploads = 20 ;;;;;;;;;;;;;;;;;; ; Fopen wrappers ; ;;;;;;;;;;;;;;;;;; ; Whether to allow the treatment of URLs (like http:// or ftp://) as files. ; http://php.net/allow-url-fopen allow_url_fopen = On ; Whether to allow include/require to open URLs (like http:// or ftp://) as files. ; http://php.net/allow-url-include allow_url_include = Off ; Define the anonymous ftp password (your email address). PHP's default setting ; for this is empty. ; http://php.net/from ;from="john@doe.com" ; Define the User-Agent string. PHP's default setting for this is empty. ; http://php.net/user-agent ;user_agent="PHP" ; Default timeout for socket based streams (seconds) ; http://php.net/default-socket-timeout default_socket_timeout = 60 ; If your scripts have to deal with files from Macintosh systems, ; or you are running on a Mac and need to deal with files from ; unix or win32 systems, setting this flag will cause PHP to ; automatically detect the EOL character in those files so that ; fgets() and file() will work regardless of the source of the file. ; http://php.net/auto-detect-line-endings ;auto_detect_line_endings = Off ;;;;;;;;;;;;;;;;;;;;;; ; Dynamic Extensions ; ;;;;;;;;;;;;;;;;;;;;;; ; If you wish to have an extension loaded automatically, use the following ; syntax: ; ; extension=modulename.extension ; ; For example, on Windows: ; ; extension=msql.dll ; ; ... or under UNIX: ; ; extension=msql.so ; ; ... or with a path: ; ; extension=/path/to/extension/msql.so ; ; If you only provide the name of the extension, PHP will look for it in its ; default extension directory. ; ; Windows Extensions ; Note that ODBC support is built in, so no dll is needed for it. ; Note that many DLL files are located in the extensions/ (PHP 4) ext/ (PHP 5) ; extension folders as well as the separate PECL DLL download (PHP 5). ; Be sure to appropriately set the extension_dir directive. ; ;extension=php_bz2.dll ;extension=php_curl.dll ;extension=php_fileinfo.dll ;extension=php_gd2.dll ;extension=php_gettext.dll ;extension=php_gmp.dll ;extension=php_intl.dll ;extension=php_imap.dll ;extension=php_interbase.dll ;extension=php_ldap.dll ;extension=php_mbstring.dll ;extension=php_exif.dll ; Must be after mbstring as it depends on it ;extension=php_mysql.dll ;extension=php_mysqli.dll ;extension=php_oci8.dll ; Use with Oracle 10gR2 Instant Client ;extension=php_oci8_11g.dll ; Use with Oracle 11gR2 Instant Client ;extension=php_openssl.dll ;extension=php_pdo_firebird.dll ;extension=php_pdo_mysql.dll ;extension=php_pdo_oci.dll ;extension=php_pdo_odbc.dll ;extension=php_pdo_pgsql.dll ;extension=php_pdo_sqlite.dll ;extension=php_pgsql.dll ;extension=php_pspell.dll ;extension=php_shmop.dll ; The MIBS data available in the PHP distribution must be installed. ; See http://www.php.net/manual/en/snmp.installation.php ;extension=php_snmp.dll ;extension=php_soap.dll ;extension=php_sockets.dll ;extension=php_sqlite3.dll ;extension=php_sybase_ct.dll ;extension=php_tidy.dll ;extension=php_xmlrpc.dll ;extension=php_xsl.dll ;;;;;;;;;;;;;;;;;;; ; Module Settings ; ;;;;;;;;;;;;;;;;;;; [CLI Server] ; Whether the CLI web server uses ANSI color coding in its terminal output. cli_server.color = On [Date] ; Defines the default timezone used by the date functions ; http://php.net/date.timezone ;date.timezone = ; http://php.net/date.default-latitude ;date.default_latitude = 31.7667 ; http://php.net/date.default-longitude ;date.default_longitude = 35.2333 ; http://php.net/date.sunrise-zenith ;date.sunrise_zenith = 90.583333 ; http://php.net/date.sunset-zenith ;date.sunset_zenith = 90.583333 [filter] ; http://php.net/filter.default ;filter.default = unsafe_raw ; http://php.net/filter.default-flags ;filter.default_flags = [iconv] ;iconv.input_encoding = ISO-8859-1 ;iconv.internal_encoding = ISO-8859-1 ;iconv.output_encoding = ISO-8859-1 [intl] ;intl.default_locale = ; This directive allows you to produce PHP errors when some error ; happens within intl functions. The value is the level of the error produced. ; Default is 0, which does not produce any errors. ;intl.error_level = E_WARNING [sqlite] ; http://php.net/sqlite.assoc-case ;sqlite.assoc_case = 0 [sqlite3] ;sqlite3.extension_dir = [Pcre] ;PCRE library backtracking limit. ; http://php.net/pcre.backtrack-limit ;pcre.backtrack_limit=100000 ;PCRE library recursion limit. ;Please note that if you set this value to a high number you may consume all ;the available process stack and eventually crash PHP (due to reaching the ;stack size limit imposed by the Operating System). ; http://php.net/pcre.recursion-limit ;pcre.recursion_limit=100000 [Pdo] ; Whether to pool ODBC connections. Can be one of "strict", "relaxed" or "off" ; http://php.net/pdo-odbc.connection-pooling ;pdo_odbc.connection_pooling=strict ;pdo_odbc.db2_instance_name [Pdo_mysql] ; If mysqlnd is used: Number of cache slots for the internal result set cache ; http://php.net/pdo_mysql.cache_size pdo_mysql.cache_size = 2000 ; Default socket name for local MySQL connects. If empty, uses the built-in ; MySQL defaults. ; http://php.net/pdo_mysql.default-socket pdo_mysql.default_socket= [Phar] ; http://php.net/phar.readonly ;phar.readonly = On ; http://php.net/phar.require-hash ;phar.require_hash = On ;phar.cache_list = [mail function] ; For Win32 only. ; http://php.net/smtp SMTP = localhost ; http://php.net/smtp-port smtp_port = 25 ; For Win32 only. ; http://php.net/sendmail-from ;sendmail_from = me@example.com ; For Unix only. You may supply arguments as well (default: "sendmail -t -i"). ; http://php.net/sendmail-path ;sendmail_path = ; Force the addition of the specified parameters to be passed as extra parameters ; to the sendmail binary. These parameters will always replace the value of ; the 5th parameter to mail(), even in safe mode. ;mail.force_extra_parameters = ; Add X-PHP-Originating-Script: that will include uid of the script followed by the filename mail.add_x_header = On ; The path to a log file that will log all mail() calls. Log entries include ; the full path of the script, line number, To address and headers. ;mail.log = ; Log mail to syslog (Event Log on Windows). ;mail.log = syslog [SQL] ; http://php.net/sql.safe-mode sql.safe_mode = Off [ODBC] ; http://php.net/odbc.default-db ;odbc.default_db = Not yet implemented ; http://php.net/odbc.default-user ;odbc.default_user = Not yet implemented ; http://php.net/odbc.default-pw ;odbc.default_pw = Not yet implemented ; Controls the ODBC cursor model. ; Default: SQL_CURSOR_STATIC (default). ;odbc.default_cursortype ; Allow or prevent persistent links. ; http://php.net/odbc.allow-persistent odbc.allow_persistent = On ; Check that a connection is still valid before reuse. ; http://php.net/odbc.check-persistent odbc.check_persistent = On ; Maximum number of persistent links. -1 means no limit. ; http://php.net/odbc.max-persistent odbc.max_persistent = -1 ; Maximum number of links (persistent + non-persistent). -1 means no limit. ; http://php.net/odbc.max-links odbc.max_links = -1 ; Handling of LONG fields. Returns number of bytes to variables. 0 means ; passthru. ; http://php.net/odbc.defaultlrl odbc.defaultlrl = 4096 ; Handling of binary data. 0 means passthru, 1 return as is, 2 convert to char. ; See the documentation on odbc_binmode and odbc_longreadlen for an explanation ; of odbc.defaultlrl and odbc.defaultbinmode ; http://php.net/odbc.defaultbinmode odbc.defaultbinmode = 1 ;birdstep.max_links = -1 [Interbase] ; Allow or prevent persistent links. ibase.allow_persistent = 1 ; Maximum number of persistent links. -1 means no limit. ibase.max_persistent = -1 ; Maximum number of links (persistent + non-persistent). -1 means no limit. ibase.max_links = -1 ; Default database name for ibase_connect(). ;ibase.default_db = ; Default username for ibase_connect(). ;ibase.default_user = ; Default password for ibase_connect(). ;ibase.default_password = ; Default charset for ibase_connect(). ;ibase.default_charset = ; Default timestamp format. ibase.timestampformat = "%Y-%m-%d %H:%M:%S" ; Default date format. ibase.dateformat = "%Y-%m-%d" ; Default time format. ibase.timeformat = "%H:%M:%S" [MySQL] ; Allow accessing, from PHP's perspective, local files with LOAD DATA statements ; http://php.net/mysql.allow_local_infile mysql.allow_local_infile = On ; Allow or prevent persistent links. ; http://php.net/mysql.allow-persistent mysql.allow_persistent = On ; If mysqlnd is used: Number of cache slots for the internal result set cache ; http://php.net/mysql.cache_size mysql.cache_size = 2000 ; Maximum number of persistent links. -1 means no limit. ; http://php.net/mysql.max-persistent mysql.max_persistent = -1 ; Maximum number of links (persistent + non-persistent). -1 means no limit. ; http://php.net/mysql.max-links mysql.max_links = -1 ; Default port number for mysql_connect(). If unset, mysql_connect() will use ; the $MYSQL_TCP_PORT or the mysql-tcp entry in /etc/services or the ; compile-time value defined MYSQL_PORT (in that order). Win32 will only look ; at MYSQL_PORT. ; http://php.net/mysql.default-port mysql.default_port = ; Default socket name for local MySQL connects. If empty, uses the built-in ; MySQL defaults. ; http://php.net/mysql.default-socket mysql.default_socket = ; Default host for mysql_connect() (doesn't apply in safe mode). ; http://php.net/mysql.default-host mysql.default_host = ; Default user for mysql_connect() (doesn't apply in safe mode). ; http://php.net/mysql.default-user mysql.default_user = ; Default password for mysql_connect() (doesn't apply in safe mode). ; Note that this is generally a *bad* idea to store passwords in this file. ; *Any* user with PHP access can run 'echo get_cfg_var("mysql.default_password") ; and reveal this password! And of course, any users with read access to this ; file will be able to reveal the password as well. ; http://php.net/mysql.default-password mysql.default_password = ; Maximum time (in seconds) for connect timeout. -1 means no limit ; http://php.net/mysql.connect-timeout mysql.connect_timeout = 60 ; Trace mode. When trace_mode is active (=On), warnings for table/index scans and ; SQL-Errors will be displayed. ; http://php.net/mysql.trace-mode mysql.trace_mode = Off [MySQLi] ; Maximum number of persistent links. -1 means no limit. ; http://php.net/mysqli.max-persistent mysqli.max_persistent = -1 ; Allow accessing, from PHP's perspective, local files with LOAD DATA statements ; http://php.net/mysqli.allow_local_infile ;mysqli.allow_local_infile = On ; Allow or prevent persistent links. ; http://php.net/mysqli.allow-persistent mysqli.allow_persistent = On ; Maximum number of links. -1 means no limit. ; http://php.net/mysqli.max-links mysqli.max_links = -1 ; If mysqlnd is used: Number of cache slots for the internal result set cache ; http://php.net/mysqli.cache_size mysqli.cache_size = 2000 ; Default port number for mysqli_connect(). If unset, mysqli_connect() will use ; the $MYSQL_TCP_PORT or the mysql-tcp entry in /etc/services or the ; compile-time value defined MYSQL_PORT (in that order). Win32 will only look ; at MYSQL_PORT. ; http://php.net/mysqli.default-port mysqli.default_port = 3306 ; Default socket name for local MySQL connects. If empty, uses the built-in ; MySQL defaults. ; http://php.net/mysqli.default-socket mysqli.default_socket = ; Default host for mysql_connect() (doesn't apply in safe mode). ; http://php.net/mysqli.default-host mysqli.default_host = ; Default user for mysql_connect() (doesn't apply in safe mode). ; http://php.net/mysqli.default-user mysqli.default_user = ; Default password for mysqli_connect() (doesn't apply in safe mode). ; Note that this is generally a *bad* idea to store passwords in this file. ; *Any* user with PHP access can run 'echo get_cfg_var("mysqli.default_pw") ; and reveal this password! And of course, any users with read access to this ; file will be able to reveal the password as well. ; http://php.net/mysqli.default-pw mysqli.default_pw = ; Allow or prevent reconnect mysqli.reconnect = Off [mysqlnd] ; Enable / Disable collection of general statistics by mysqlnd which can be ; used to tune and monitor MySQL operations. ; http://php.net/mysqlnd.collect_statistics mysqlnd.collect_statistics = On ; Enable / Disable collection of memory usage statistics by mysqlnd which can be ; used to tune and monitor MySQL operations. ; http://php.net/mysqlnd.collect_memory_statistics mysqlnd.collect_memory_statistics = On ; Size of a pre-allocated buffer used when sending commands to MySQL in bytes. ; http://php.net/mysqlnd.net_cmd_buffer_size ;mysqlnd.net_cmd_buffer_size = 2048 ; Size of a pre-allocated buffer used for reading data sent by the server in ; bytes. ; http://php.net/mysqlnd.net_read_buffer_size ;mysqlnd.net_read_buffer_size = 32768 [OCI8] ; Connection: Enables privileged connections using external ; credentials (OCI_SYSOPER, OCI_SYSDBA) ; http://php.net/oci8.privileged-connect ;oci8.privileged_connect = Off ; Connection: The maximum number of persistent OCI8 connections per ; process. Using -1 means no limit. ; http://php.net/oci8.max-persistent ;oci8.max_persistent = -1 ; Connection: The maximum number of seconds a process is allowed to ; maintain an idle persistent connection. Using -1 means idle ; persistent connections will be maintained forever. ; http://php.net/oci8.persistent-timeout ;oci8.persistent_timeout = -1 ; Connection: The number of seconds that must pass before issuing a ; ping during oci_pconnect() to check the connection validity. When ; set to 0, each oci_pconnect() will cause a ping. Using -1 disables ; pings completely. ; http://php.net/oci8.ping-interval ;oci8.ping_interval = 60 ; Connection: Set this to a user chosen connection class to be used ; for all pooled server requests with Oracle 11g Database Resident ; Connection Pooling (DRCP). To use DRCP, this value should be set to ; the same string for all web servers running the same application, ; the database pool must be configured, and the connection string must ; specify to use a pooled server. ;oci8.connection_class = ; High Availability: Using On lets PHP receive Fast Application ; Notification (FAN) events generated when a database node fails. The ; database must also be configured to post FAN events. ;oci8.events = Off ; Tuning: This option enables statement caching, and specifies how ; many statements to cache. Using 0 disables statement caching. ; http://php.net/oci8.statement-cache-size ;oci8.statement_cache_size = 20 ; Tuning: Enables statement prefetching and sets the default number of ; rows that will be fetched automatically after statement execution. ; http://php.net/oci8.default-prefetch ;oci8.default_prefetch = 100 ; Compatibility. Using On means oci_close() will not close ; oci_connect() and oci_new_connect() connections. ; http://php.net/oci8.old-oci-close-semantics ;oci8.old_oci_close_semantics = Off [PostgreSQL] ; Allow or prevent persistent links. ; http://php.net/pgsql.allow-persistent pgsql.allow_persistent = On ; Detect broken persistent links always with pg_pconnect(). ; Auto reset feature requires a little overheads. ; http://php.net/pgsql.auto-reset-persistent pgsql.auto_reset_persistent = Off ; Maximum number of persistent links. -1 means no limit. ; http://php.net/pgsql.max-persistent pgsql.max_persistent = -1 ; Maximum number of links (persistent+non persistent). -1 means no limit. ; http://php.net/pgsql.max-links pgsql.max_links = -1 ; Ignore PostgreSQL backends Notice message or not. ; Notice message logging require a little overheads. ; http://php.net/pgsql.ignore-notice pgsql.ignore_notice = 0 ; Log PostgreSQL backends Notice message or not. ; Unless pgsql.ignore_notice=0, module cannot log notice message. ; http://php.net/pgsql.log-notice pgsql.log_notice = 0 [Sybase-CT] ; Allow or prevent persistent links. ; http://php.net/sybct.allow-persistent sybct.allow_persistent = On ; Maximum number of persistent links. -1 means no limit. ; http://php.net/sybct.max-persistent sybct.max_persistent = -1 ; Maximum number of links (persistent + non-persistent). -1 means no limit. ; http://php.net/sybct.max-links sybct.max_links = -1 ; Minimum server message severity to display. ; http://php.net/sybct.min-server-severity sybct.min_server_severity = 10 ; Minimum client message severity to display. ; http://php.net/sybct.min-client-severity sybct.min_client_severity = 10 ; Set per-context timeout ; http://php.net/sybct.timeout ;sybct.timeout= ;sybct.packet_size ; The maximum time in seconds to wait for a connection attempt to succeed before returning failure. ; Default: one minute ;sybct.login_timeout= ; The name of the host you claim to be connecting from, for display by sp_who. ; Default: none ;sybct.hostname= ; Allows you to define how often deadlocks are to be retried. -1 means "forever". ; Default: 0 ;sybct.deadlock_retry_count= [bcmath] ; Number of decimal digits for all bcmath functions. ; http://php.net/bcmath.scale bcmath.scale = 0 [browscap] ; http://php.net/browscap ;browscap = extra/browscap.ini [Session] ; Handler used to store/retrieve data. ; http://php.net/session.save-handler session.save_handler = files ; Argument passed to save_handler. In the case of files, this is the path ; where data files are stored. Note: Windows users have to change this ; variable in order to use PHP's session functions. ; ; The path can be defined as: ; ; session.save_path = "N;/path" ; ; where N is an integer. Instead of storing all the session files in ; /path, what this will do is use subdirectories N-levels deep, and ; store the session data in those directories. This is useful if you ; or your OS have problems with lots of files in one directory, and is ; a more efficient layout for servers that handle lots of sessions. ; ; NOTE 1: PHP will not create this directory structure automatically. ; You can use the script in the ext/session dir for that purpose. ; NOTE 2: See the section on garbage collection below if you choose to ; use subdirectories for session storage ; ; The file storage module creates files using mode 600 by default. ; You can change that by using ; ; session.save_path = "N;MODE;/path" ; ; where MODE is the octal representation of the mode. Note that this ; does not overwrite the process's umask. ; http://php.net/session.save-path ;session.save_path = "/tmp" ; Whether to use cookies. ; http://php.net/session.use-cookies session.use_cookies = 1 ; http://php.net/session.cookie-secure ;session.cookie_secure = ; This option forces PHP to fetch and use a cookie for storing and maintaining ; the session id. We encourage this operation as it's very helpful in combating ; session hijacking when not specifying and managing your own session id. It is ; not the end all be all of session hijacking defense, but it's a good start. ; http://php.net/session.use-only-cookies session.use_only_cookies = 1 ; Name of the session (used as cookie name). ; http://php.net/session.name session.name = PHPSESSID ; Initialize session on request startup. ; http://php.net/session.auto-start session.auto_start = 0 ; Lifetime in seconds of cookie or, if 0, until browser is restarted. ; http://php.net/session.cookie-lifetime session.cookie_lifetime = 0 ; The path for which the cookie is valid. ; http://php.net/session.cookie-path session.cookie_path = / ; The domain for which the cookie is valid. ; http://php.net/session.cookie-domain session.cookie_domain = ; Whether or not to add the httpOnly flag to the cookie, which makes it inaccessible to browser scripting languages such as JavaScript. ; http://php.net/session.cookie-httponly session.cookie_httponly = ; Handler used to serialize data. php is the standard serializer of PHP. ; http://php.net/session.serialize-handler session.serialize_handler = php ; Defines the probability that the 'garbage collection' process is started ; on every session initialization. The probability is calculated by using ; gc_probability/gc_divisor. Where session.gc_probability is the numerator ; and gc_divisor is the denominator in the equation. Setting this value to 1 ; when the session.gc_divisor value is 100 will give you approximately a 1% chance ; the gc will run on any give request. ; Default Value: 1 ; Development Value: 1 ; Production Value: 1 ; http://php.net/session.gc-probability session.gc_probability = 1 ; Defines the probability that the 'garbage collection' process is started on every ; session initialization. The probability is calculated by using the following equation: ; gc_probability/gc_divisor. Where session.gc_probability is the numerator and ; session.gc_divisor is the denominator in the equation. Setting this value to 1 ; when the session.gc_divisor value is 100 will give you approximately a 1% chance ; the gc will run on any give request. Increasing this value to 1000 will give you ; a 0.1% chance the gc will run on any give request. For high volume production servers, ; this is a more efficient approach. ; Default Value: 100 ; Development Value: 1000 ; Production Value: 1000 ; http://php.net/session.gc-divisor session.gc_divisor = 1000 ; After this number of seconds, stored data will be seen as 'garbage' and ; cleaned up by the garbage collection process. ; http://php.net/session.gc-maxlifetime session.gc_maxlifetime = 1440 ; NOTE: If you are using the subdirectory option for storing session files ; (see session.save_path above), then garbage collection does *not* ; happen automatically. You will need to do your own garbage ; collection through a shell script, cron entry, or some other method. ; For example, the following script would is the equivalent of ; setting session.gc_maxlifetime to 1440 (1440 seconds = 24 minutes): ; find /path/to/sessions -cmin +24 -type f | xargs rm ; Check HTTP Referer to invalidate externally stored URLs containing ids. ; HTTP_REFERER has to contain this substring for the session to be ; considered as valid. ; http://php.net/session.referer-check session.referer_check = ; How many bytes to read from the file. ; http://php.net/session.entropy-length ;session.entropy_length = 32 ; Specified here to create the session id. ; http://php.net/session.entropy-file ; Defaults to /dev/urandom ; On systems that don't have /dev/urandom but do have /dev/arandom, this will default to /dev/arandom ; If neither are found at compile time, the default is no entropy file. ; On windows, setting the entropy_length setting will activate the ; Windows random source (using the CryptoAPI) ;session.entropy_file = /dev/urandom ; Set to {nocache,private,public,} to determine HTTP caching aspects ; or leave this empty to avoid sending anti-caching headers. ; http://php.net/session.cache-limiter session.cache_limiter = nocache ; Document expires after n minutes. ; http://php.net/session.cache-expire session.cache_expire = 180 ; trans sid support is disabled by default. ; Use of trans sid may risk your users security. ; Use this option with caution. ; - User may send URL contains active session ID ; to other person via. email/irc/etc. ; - URL that contains active session ID may be stored ; in publicly accessible computer. ; - User may access your site with the same session ID ; always using URL stored in browser's history or bookmarks. ; http://php.net/session.use-trans-sid session.use_trans_sid = 0 ; Select a hash function for use in generating session ids. ; Possible Values ; 0 (MD5 128 bits) ; 1 (SHA-1 160 bits) ; This option may also be set to the name of any hash function supported by ; the hash extension. A list of available hashes is returned by the hash_algos() ; function. ; http://php.net/session.hash-function session.hash_function = 0 ; Define how many bits are stored in each character when converting ; the binary hash data to something readable. ; Possible values: ; 4 (4 bits: 0-9, a-f) ; 5 (5 bits: 0-9, a-v) ; 6 (6 bits: 0-9, a-z, A-Z, "-", ",") ; Default Value: 4 ; Development Value: 5 ; Production Value: 5 ; http://php.net/session.hash-bits-per-character session.hash_bits_per_character = 5 ; The URL rewriter will look for URLs in a defined set of HTML tags. ; form/fieldset are special; if you include them here, the rewriter will ; add a hidden field with the info which is otherwise appended ; to URLs. If you want XHTML conformity, remove the form entry. ; Note that all valid entries require a "=", even if no value follows. ; Default Value: "a=href,area=href,frame=src,form=,fieldset=" ; Development Value: "a=href,area=href,frame=src,input=src,form=fakeentry" ; Production Value: "a=href,area=href,frame=src,input=src,form=fakeentry" ; http://php.net/url-rewriter.tags url_rewriter.tags = "a=href,area=href,frame=src,input=src,form=fakeentry" ; Enable upload progress tracking in $_SESSION ; Default Value: On ; Development Value: On ; Production Value: On ; http://php.net/session.upload-progress.enabled ;session.upload_progress.enabled = On ; Cleanup the progress information as soon as all POST data has been read ; (i.e. upload completed). ; Default Value: On ; Development Value: On ; Production Value: On ; http://php.net/session.upload-progress.cleanup ;session.upload_progress.cleanup = On ; A prefix used for the upload progress key in $_SESSION ; Default Value: "upload_progress_" ; Development Value: "upload_progress_" ; Production Value: "upload_progress_" ; http://php.net/session.upload-progress.prefix ;session.upload_progress.prefix = "upload_progress_" ; The index name (concatenated with the prefix) in $_SESSION ; containing the upload progress information ; Default Value: "PHP_SESSION_UPLOAD_PROGRESS" ; Development Value: "PHP_SESSION_UPLOAD_PROGRESS" ; Production Value: "PHP_SESSION_UPLOAD_PROGRESS" ; http://php.net/session.upload-progress.name ;session.upload_progress.name = "PHP_SESSION_UPLOAD_PROGRESS" ; How frequently the upload progress should be updated. ; Given either in percentages (per-file), or in bytes ; Default Value: "1%" ; Development Value: "1%" ; Production Value: "1%" ; http://php.net/session.upload-progress.freq ;session.upload_progress.freq = "1%" ; The minimum delay between updates, in seconds ; Default Value: 1 ; Development Value: 1 ; Production Value: 1 ; http://php.net/session.upload-progress.min-freq ;session.upload_progress.min_freq = "1" [MSSQL] ; Allow or prevent persistent links. mssql.allow_persistent = On ; Maximum number of persistent links. -1 means no limit. mssql.max_persistent = -1 ; Maximum number of links (persistent+non persistent). -1 means no limit. mssql.max_links = -1 ; Minimum error severity to display. mssql.min_error_severity = 10 ; Minimum message severity to display. mssql.min_message_severity = 10 ; Compatibility mode with old versions of PHP 3.0. mssql.compatability_mode = Off ; Connect timeout ;mssql.connect_timeout = 5 ; Query timeout ;mssql.timeout = 60 ; Valid range 0 - 2147483647. Default = 4096. ;mssql.textlimit = 4096 ; Valid range 0 - 2147483647. Default = 4096. ;mssql.textsize = 4096 ; Limits the number of records in each batch. 0 = all records in one batch. ;mssql.batchsize = 0 ; Specify how datetime and datetim4 columns are returned ; On => Returns data converted to SQL server settings ; Off => Returns values as YYYY-MM-DD hh:mm:ss ;mssql.datetimeconvert = On ; Use NT authentication when connecting to the server mssql.secure_connection = Off ; Specify max number of processes. -1 = library default ; msdlib defaults to 25 ; FreeTDS defaults to 4096 ;mssql.max_procs = -1 ; Specify client character set. ; If empty or not set the client charset from freetds.conf is used ; This is only used when compiled with FreeTDS ;mssql.charset = "ISO-8859-1" [Assertion] ; Assert(expr); active by default. ; http://php.net/assert.active ;assert.active = On ; Issue a PHP warning for each failed assertion. ; http://php.net/assert.warning ;assert.warning = On ; Don't bail out by default. ; http://php.net/assert.bail ;assert.bail = Off ; User-function to be called if an assertion fails. ; http://php.net/assert.callback ;assert.callback = 0 ; Eval the expression with current error_reporting(). Set to true if you want ; error_reporting(0) around the eval(). ; http://php.net/assert.quiet-eval ;assert.quiet_eval = 0 [COM] ; path to a file containing GUIDs, IIDs or filenames of files with TypeLibs ; http://php.net/com.typelib-file ;com.typelib_file = ; allow Distributed-COM calls ; http://php.net/com.allow-dcom ;com.allow_dcom = true ; autoregister constants of a components typlib on com_load() ; http://php.net/com.autoregister-typelib ;com.autoregister_typelib = true ; register constants casesensitive ; http://php.net/com.autoregister-casesensitive ;com.autoregister_casesensitive = false ; show warnings on duplicate constant registrations ; http://php.net/com.autoregister-verbose ;com.autoregister_verbose = true ; The default character set code-page to use when passing strings to and from COM objects. ; Default: system ANSI code page ;com.code_page= [mbstring] ; language for internal character representation. ; http://php.net/mbstring.language ;mbstring.language = Japanese ; internal/script encoding. ; Some encoding cannot work as internal encoding. ; (e.g. SJIS, BIG5, ISO-2022-*) ; http://php.net/mbstring.internal-encoding ;mbstring.internal_encoding = EUC-JP ; http input encoding. ; http://php.net/mbstring.http-input ;mbstring.http_input = auto ; http output encoding. mb_output_handler must be ; registered as output buffer to function ; http://php.net/mbstring.http-output ;mbstring.http_output = SJIS ; enable automatic encoding translation according to ; mbstring.internal_encoding setting. Input chars are ; converted to internal encoding by setting this to On. ; Note: Do _not_ use automatic encoding translation for ; portable libs/applications. ; http://php.net/mbstring.encoding-translation ;mbstring.encoding_translation = Off ; automatic encoding detection order. ; auto means ; http://php.net/mbstring.detect-order ;mbstring.detect_order = auto ; substitute_character used when character cannot be converted ; one from another ; http://php.net/mbstring.substitute-character ;mbstring.substitute_character = none; ; overload(replace) single byte functions by mbstring functions. ; mail(), ereg(), etc are overloaded by mb_send_mail(), mb_ereg(), ; etc. Possible values are 0,1,2,4 or combination of them. ; For example, 7 for overload everything. ; 0: No overload ; 1: Overload mail() function ; 2: Overload str*() functions ; 4: Overload ereg*() functions ; http://php.net/mbstring.func-overload ;mbstring.func_overload = 0 ; enable strict encoding detection. ;mbstring.strict_detection = Off ; This directive specifies the regex pattern of content types for which mb_output_handler() ; is activated. ; Default: mbstring.http_output_conv_mimetype=^(text/|application/xhtml\+xml) ;mbstring.http_output_conv_mimetype= [gd] ; Tell the jpeg decode to ignore warnings and try to create ; a gd image. The warning will then be displayed as notices ; disabled by default ; http://php.net/gd.jpeg-ignore-warning ;gd.jpeg_ignore_warning = 0 [exif] ; Exif UNICODE user comments are handled as UCS-2BE/UCS-2LE and JIS as JIS. ; With mbstring support this will automatically be converted into the encoding ; given by corresponding encode setting. When empty mbstring.internal_encoding ; is used. For the decode settings you can distinguish between motorola and ; intel byte order. A decode setting cannot be empty. ; http://php.net/exif.encode-unicode ;exif.encode_unicode = ISO-8859-15 ; http://php.net/exif.decode-unicode-motorola ;exif.decode_unicode_motorola = UCS-2BE ; http://php.net/exif.decode-unicode-intel ;exif.decode_unicode_intel = UCS-2LE ; http://php.net/exif.encode-jis ;exif.encode_jis = ; http://php.net/exif.decode-jis-motorola ;exif.decode_jis_motorola = JIS ; http://php.net/exif.decode-jis-intel ;exif.decode_jis_intel = JIS [Tidy] ; The path to a default tidy configuration file to use when using tidy ; http://php.net/tidy.default-config ;tidy.default_config = /usr/local/lib/php/default.tcfg ; Should tidy clean and repair output automatically? ; WARNING: Do not use this option if you are generating non-html content ; such as dynamic images ; http://php.net/tidy.clean-output tidy.clean_output = Off [soap] ; Enables or disables WSDL caching feature. ; http://php.net/soap.wsdl-cache-enabled soap.wsdl_cache_enabled=1 ; Sets the directory name where SOAP extension will put cache files. ; http://php.net/soap.wsdl-cache-dir soap.wsdl_cache_dir="/tmp" ; (time to live) Sets the number of second while cached file will be used ; instead of original one. ; http://php.net/soap.wsdl-cache-ttl soap.wsdl_cache_ttl=86400 ; Sets the size of the cache limit. (Max. number of WSDL files to cache) soap.wsdl_cache_limit = 5 [sysvshm] ; A default size of the shared memory segment ;sysvshm.init_mem = 10000 [ldap] ; Sets the maximum number of open links or -1 for unlimited. ldap.max_links = -1 [mcrypt] ; For more information about mcrypt settings see http://php.net/mcrypt-module-open ; Directory where to load mcrypt algorithms ; Default: Compiled in into libmcrypt (usually /usr/local/lib/libmcrypt) ;mcrypt.algorithms_dir= ; Directory where to load mcrypt modes ; Default: Compiled in into libmcrypt (usually /usr/local/lib/libmcrypt) ;mcrypt.modes_dir= [dba] ;dba.default_handler= [curl] ; A default value for the CURLOPT_CAINFO option. This is required to be an ; absolute path. ;curl.cainfo = ; Local Variables: ; tab-width: 4 ; End:

CuteEditor功能特点
是什么使CuteEditor成为Html在线编辑器的领航者?除了其强大的功能和方便的使用, 这里还有一些顶尖的技术因素是CuteEditor编辑器成为你编辑和发布Web内容的最佳选择:
界面简洁加载速度快

由于才有了很多优化方法,所以CuteEditor非常简单、小巧、装载速度快,但仍然保持功能强大、执行效率高的特点。

跨浏览器,跨平台的所见即所得在线html编辑器

兼容市面上最流行的ie5.5+,firefox1.0+,mozilla1.3+, netscape7+和Safari(1.3+)浏览器,并且包括Mac和Linux操作平台。

CuteEditor遵循Web标准,没有类似 这种标签

你的Html编辑器还在使用类似 这种标签么? CuteEditor会帮助你构建用户最新Web标准的html代码标签,自动生成简洁的HTML/XHTML代码。 为什么要遵循Web标准?

学习应用Web标准有很多益处,下面给几个简单例子:

获得好的搜索引擎排名: The separation of content and presentation makes the content represent a larger part of the total file size. Combined with semantic markup this will improve search engine rankings.
更快的下载和加载网页: Less HTML results in smaller file sizes and quicker downloads. Modern web browsers render pages faster when they are in their standards mode than when they are in their backwards compatible mode.
适应未来网页浏览器: When you use defined standards and valid code you future-proof your documents by reducing the risk of future web browsers not being able to understand the code you have used.
代码编写简单,维护方便: Using more semantic and structured HTML makes it easier and quicker to understand code created by somebody else.
适应其他设备: Semantic HTML, where structure is separated from presentation, makes it easier for screen readers and alternative browsing devices to interpret the content.
非常好的适应性: A semantically marked up document can be easily adapted to print and alternative browsing devices, like handheld computers and cellular phones, just by linking to a different CSS file. You can also make site-wide changes to presentation by editing a single file.
Read more:
我的网页符合Web标准,你的呢?
能自动清理HTML代码中Word标记

When text is pasted from Microsoft Word allot of unnecessary word specific markup is carried across. This can result in web pages that take an unnecessarily long time to download. The Paste from Word button solves this by removing word markup before pasting the text into your page.

支持W3C WAI和section 508的无障碍引导

Cute Editor optional accessibility settings ensure your site complies with Section 508, so people with disabilities can have full access to your content.

输出的HTML或不错的XHTML供你选择 (Demo)

Cute Editor supports output well-formed XHTML. Your choice of XHTML 1.0 or HTML 4.01 output.


无限次的撤销/恢复

Many of the other editors on the market cannot undo or redo certain actions, and certain table operations - such as cell merge or column deletion. Cute Editor 4.0 has a new custom undo/redo implementation to make you can now safely undo those actions.


多语言支持,通过简单设置XML即可完成 (Demo)

All labels, buttons, tooltips and messages are located in external XML files, so that the language of the editor can be switched with a single property. You can also create a new language in a matter of minutes.

完全支持页面编辑(从 到 ) (Demo)

Cute Editor 4.0 allows you to edit a full HTML page, including , <!DOCTYPE...> and some other options. You can also insert Form elements (checkbox, button, textarea, etc.) and modify certain properties of the element.<br/> <br/> 默认换行为软回车 (Demo)<br/><br/>Most other editors insert double line returns which can be annoying for clients who are used to editing in Microsoft Word. CuteEditor can be configured to use <div>, <br> or <p> tags when you press enter. In either mode <br> tags can be <em>create</em>d by using shift+enter.<br/> <br/> 支持代码缩进和小写字母<br/><br/>Cute Editor displays nicely indented code in the HTML mode and the generating HTML tags and Attributes are in lower case. This is very convenient and important for the advanced users. <br/> <br/> 支持全屏编辑 (Demo)<br/><br/>It does not open a new window, instead it will resize to fit the browser screen. Edit in full screen mode, maximizing your available space. <br/><br/> <br/> 没有打开较慢的Java或ActiveX组件<br/><br/>100% DHTML, Java<em>Script</em> ASP.Net code. There are no slow Java or ActiveX components to worry about and everything is handled in the browser! <br/><br/> <br/> 支持相对地址和URL自动关联(Demo)<br/><br/>With Cute Editor, you have the choice of using either a relative or absolute URL. <br/> <br/> 部署简单<br/><br/>The perfect addition to your content management system! Only a couple lines of code , you don't need to be an expert. Allows you to add an online HTML editing functionality that works with standard HTML form.<br/> <br/> 可以简单的通过API隐藏按钮和标签 <br/><br/>Cute Editor allows developers to set the image directory, set the controls width, disable image uploading and deleting, restrict access to the source/preview tabs, hide buttons and lists that you don't want your clients to see or access. <br/> <br/> 支持图片的文字环绕 <br/><br/>Locate the image you want to wrap text around, and click any justify button in the toolbar. The image will float to the desired direction. Text will be positioned around the image. <br/> <br/> 支持文件下载 <br/><br/>You can upload document files, <em>create</em> a link from your HTML content to the document files (zip files, ppt files...). <br/> <br/> CSS型皮肤 (Demo)<br/><br/>Cute Editor provides several built in themes that are ready to use. Developers can completely change the appearance of the toolbar and the dialogs by simply modifying the supplied classes and images. <br/> <br/> 高级的表格管理<br/><br/><em>Create</em> and modify tables and table cells. Set their border color, alignment, cellspacing and more! Once you've <em>create</em>d a table, simply right click inside of it and use the handy popup menu to change its attributes. <caption>,<summary>,<thead>,<tfoot>,<th> tags are supported. <br/><br/> <br/> 图片插入和自动上传<br/><br/>Built-in thumbnail generator. Thumbnail images are dynamically <em>create</em>d; Supports upload new images. Paging - specify how many images. Support auto resize images.<br/> <br/> 具有特殊的对话框<br/><br/>With Style builder dialog box you can apply CSS style attributes directly to any HTML elements on your Web page.<br/> <br/> 支持内容模板 (Demo)<br/><br/>The basic idea behind a Content Management System (CMS) is to separate the management of content from design. Cute Editor allows the site designer to easily <em>create</em> and establish templates to give the site a uniform look. Templates may be modified when desired. <br/> <br/> 通过限制html和文字的长度来保护你的数据库 (Demo)<br/><br/>If you tried to insert a record whose text length is greater than allowed by your table, an error will be reported. To prevent this type of error from occurring, developers can use MaxHTMLLength or MaxTextLength in the Cute Editor to limit the length of the user抯 input. <br/> <br/> Apply security to control user access to resources <br/><br/>Cute Editor allows developers to assign a pre-defined set of permissions by group or individual. This prevents a normal user to access the administration functionality. <br/><br/>The details of permissions are <em>specified</em> by an XML security policy file. Each level maps to a specific file. The default mappings: <br/><br/>admin设置 admin.config <br/>default设置 default.config <br/>guest设置 guest.config <br/>You can customize and extend each policy file by editing the XML security policy file. You can also <em>create</em> your own policy files that define arbitrary permission sets.<br/><br/>Comparison of the sample security policy file <br/><br/> <br/>Permissions/Resource Setting Admin Default Guest <br/>AllowUpload <br/>AllowDelete <br/>AllowCopy <br/>AllowMove <br/>Allow<em>Create</em>Folder <br/>AllowDeleteFolder <br/>RestrictUploadedImageDimension <br/>AutoResizeUploadedImages <br/>MaxImageWidth 6400 640 640 <br/>MaxImageHeight 4800 480 480 <br/>MaxImageSize 10000 100 100 <br/>MaxMediaSize 10000 100 100 <br/>MaxFlashSize 10000 100 100 <br/>MaxDocumentSize 10000 100 100 <br/>ImageGalleryPath ~/uploads ~/uploads/member ~/uploads/guest <br/>MediaGalleryPath ~/uploads ~/uploads/member ~/uploads/guest <br/>FlashGalleryPath ~/uploads ~/uploads/member ~/uploads/guest <br/>FilesGallaryPath ~/uploads ~/uploads/member ~/uploads/guest <br/>ImageFilters .jpg <br/>.jpeg <br/>.gif <br/>.png .jpg <br/>.jpeg <br/>.gif <br/> .jpg <br/>.jpeg <br/>.gif <br/> <br/>MediaFilters .avi <br/>.mpg <br/>.mpeg <br/>.mp3 .avi <br/>.mpg <br/>.mpeg <br/> .avi <br/>.mpg <br/>.mpeg <br/> <br/>DocumentFilters .txt, .doc<br/>.pdf, .zip<br/>.rar, .avi<br/>.mpg, .mpeg<br/>.mp3, .jpg<br/>.jpeg,.gif<br/>.png .pdf, .doc<br/> .txt, .doc<br/>.pdf, .zip<br/> <br/> <br/> 在线图片编辑<br/><br/>People that input content on a website are generally not web designers, so most don't have that design & technical fibre in them. With online image editor, you can now edit image file with no image editing software to download or install! Easy drag and drop familiar interface. Resize, change dimensions, scale, crop, add text, optimize, rotate, flip, mirror and add watermark. <br/> <br/> 控制上传文件夹大小<br/><br/>Max Upload Folder size(Including all subfolders and files. A must have feature for people who have limited hosting space.) Dynamic display of available free space in the Upload Folder.Limits the size of your upload folder. If the max is reached uploads will be disabled. <br/> <br/> 支持图片热点<br/><br/>Image maps are pictures with clickable regions also known as "hotspots." When users click on one of the hotspots, they're directed to the page you designate. CuteEditor 5.0 lets you easily <em>create</em> image maps to add fun and excitement to a page<br/> <br/> <div> 的盒模式<br/><br/><div> boxes offer a much greater ability to control the layout of a page. With CuteEditor, you can put any content between <div> tags and then use CSS to style all sorts of borders, backgrounds, etc. <br/> <br/> 通用虚拟键盘<br/><br/>Virtual Keyboard does not require changes to <em>lan</em><em>guage</em> settings of your system and even speeds up the entire text input process for your customers. It lets your native speaking clients to access your web resources from any location in the world without changing national keyboard layouts and fonts on their machines. <br/> <br/> 把图片存到数据库<br/><br/>With CuteEditor you can easily use a Sql Server database or access database as the file storage. <br/> <br/> RTF和HTML之间互相转换<br/><br/>With CuteEditor you can easily convert an HTML document into an RTF file and RTF file into HTML or XHTML document. <br/> <br/> 生成PDF文件<br/><br/>CuteEditor also allows you dynamically <em>create</em> Adobe PDF documents from ASP.NET.<br/> cuteEditor6.0多语言版(集成lic文件) <br/><br/>目前功能强大,最好的Asp.net编辑器之一 <br/>除了一般html编辑器具有的功能外,还有word过滤、图片在线处理、加水印等实用功能 <br/>使用关键步骤: <br/><br/>1、引用bin下的cuteEditor文件 <br/>2、在aspx页面顶部中添加引用 <br/>3、在aspx页面中加入代码 <br/>4、最后可以在.cs文件中通过来读取Editor1.Text的值来进行任意的扩展和控制了 <br/>具体配置可参照default.aspx和default.aspx.cs <br/><br/>关于cuteEditor6.0的特征及体验请浏览cuteEditor.cn,系统集成了lic授权文件,仅供体验测试使用,请不要用于任何商业用途! <br/><br/> <br/></a></div><div data-report-view="{"mod":"popu_645","index":"5","dest":"https://download.csdn.net/download/ivy1982/6692043","strategy":"2~default~OPENSEARCH~Rate","extra":"{\"utm_medium\":\"distribute.pc_relevant_bbs_down_v2.none-task-download-2~default~OPENSEARCH~Rate-5-6692043-bbs-260035406.264^v3^pc_relevant_bbs_down_v2_default\",\"dist_request_id\":\"1714024095707_94894\"}","spm":"1035.2023.3001.6557"}" class="list-item" data-v-ca2d15ac><div class="recommend-title" data-v-ca2d15ac><img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAAXNSR0IArs4c6QAAAltJREFUWEdjZGBgYGhv/yD45//nEEYGBrX//xj4QWK0AoxMDB//MzDcYmHkXVNZKfCeEWz5v8/1DP8ZuGhlKVZzGRm+sTDxNjI2tz1OZfjHYEpXy2GWMTGcZmxpe9xN62DH5TlQdDA2tzyeNSC+h1o66gCyQyApUdRNSIhNGBSS7979ejtv/utd5EQl2Q7IypT0ExJiFoc44O/LadOfbxp1wPAOAWlpdr5Pn//8/Pzp70+QT3GlAX5+ZnYeHhb2p09/fiImRIhOhBYWvIo21ryWu/Z8PHDp4tdn2BxgoM8l4+IiYH/k6OdjJ058vk91B7g487swMDD8v3Hj+2VJSTYpfn5mEZAlHz/9ffPq5e+Xqqoc2iD+nr0f99DSAQQ9RhMHcHAwsYSGCtvKy7Gr4HPBo0c/b69c/fbwzx///hJ0KQMDA9FpAGaYizO/tpkZjwUTEyMTsgX//v3/d/LUl+N79368RozFMDUkOwCkUUODU8zHW9CFg4OJG8T/8ePf181b3u25efPHK1IsB6nF6gAjY25ZEWFWcNPs169/fw4c+HQD3WBBIRaOsBAhZ5D4qjXv9r5/9+cHuhoHBz4NNjYmFpD4m7e/P547+/UxuhqsDoiPE3WWlWVXgvju/5ee3qfLsfmMiZmBEST+7y/Df2zyJcXSkRwcjDwgucePf95buOj1Xqo6gFBwDw8H/P/P8O/nz//fCPkWmzw7OyMXIyMDOLeQHQXkWIxNz9BygJubgI6kBCu4tUMt8PzF75e7dn24QlQuoJalxJgzCDomA901G/DOKSieBrJ7DgCPdYFAskV/NwAAAABJRU5ErkJggg==" alt data-v-ca2d15ac> <a target="_blank" href="https://download.csdn.net/download/ivy1982/6692043" data-report-click="{"mod":"popu_645","index":"5","dest":"https://download.csdn.net/download/ivy1982/6692043","strategy":"2~default~OPENSEARCH~Rate","extra":"{\"utm_medium\":\"distribute.pc_relevant_bbs_down_v2.none-task-download-2~default~OPENSEARCH~Rate-5-6692043-bbs-260035406.264^v3^pc_relevant_bbs_down_v2_default\",\"dist_request_id\":\"1714024095707_94894\"}","spm":"1035.2023.3001.6557"}" data-report-query="spm=1035.2023.3001.6557&utm_medium=distribute.pc_relevant_bbs_down_v2.none-task-download-2~default~OPENSEARCH~Rate-5-6692043-bbs-260035406.264^v3^pc_relevant_bbs_down_v2_default&depth_1-utm_source=distribute.pc_relevant_bbs_down_v2.none-task-download-2~default~OPENSEARCH~Rate-5-6692043-bbs-260035406.264^v3^pc_relevant_bbs_down_v2_default" class="title" data-v-ca2d15ac>FastReport.v4.15 for.Delphi.BCB.Full.Source企业版含ClientServer中文修正版支持D4-XE5</a></div> <a target="_blank" href="https://download.csdn.net/download/ivy1982/6692043" data-report-click="{"mod":"popu_645","index":"5","dest":"https://download.csdn.net/download/ivy1982/6692043","strategy":"2~default~OPENSEARCH~Rate","extra":"{\"utm_medium\":\"distribute.pc_relevant_bbs_down_v2.none-task-download-2~default~OPENSEARCH~Rate-5-6692043-bbs-260035406.264^v3^pc_relevant_bbs_down_v2_default\",\"dist_request_id\":\"1714024095707_94894\"}","spm":"1035.2023.3001.6557"}" data-report-query="spm=1035.2023.3001.6557&utm_medium=distribute.pc_relevant_bbs_down_v2.none-task-download-2~default~OPENSEARCH~Rate-5-6692043-bbs-260035406.264^v3^pc_relevant_bbs_down_v2_default&depth_1-utm_source=distribute.pc_relevant_bbs_down_v2.none-task-download-2~default~OPENSEARCH~Rate-5-6692043-bbs-260035406.264^v3^pc_relevant_bbs_down_v2_default" class="desc" data-v-ca2d15ac>FastReport.v4.15 for.Delphi.BCB.Full.Source企业版含ClientServer中文修正版支持Delphi 4-XE5 and C++Builder 6-XE5. D2010以上版本(D14_D19)安装必读 delphi2010以上版本(D14_D19)使用者安装时,请将res\frccD14_D19.exe更名名为frcc.exe frccD14_D19.exe是专门的delphi2010以上版本(D14_D19)编码器。其他低delphi版本,请使用frcc.exe FastReport® VCL is an add-on component that allows your application to generate reports quickly and efficiently. FastReport® provides all the tools necessary for developing reports, including a visual report designer, a reporting core, and a preview window. It can be used in Embarcadero (ex Bor<em>lan</em>d and CodeGear) Delphi 4-XE5 and C++Builder 6-XE5. version 4.15 --------------- + Added Embarcadero RAD Studio XE5 support + Added Internal components for FireDac database <em>engine</em> + fixed bug with images in PDF export for OSX viewers + Added ability to set font charset to default in Style Editor - fixed duplex problem when printing several copies of the report - fixed problem with PNG images - fixed problem with TfrxPictureView transparent version 4.14 --------------- + Added Embarcadero RAD Studio XE4 support - [Lazarus] fixed bug with text output - [Lazarus] fixed bug with some visual controls in designer - [Lazarus] improved interface of the report preview and designer - [Lazarus] fixed bug with boolean propertyes in <em>script</em> code and expressions - fixed bug with endless loop in TfrxRichView - fixed bug with Unicode in TfrxMemoView appeared in previous release - improved MAPI interface in TfrxExportMail export - fixed some problems with allpication styles XE2/XE3 - improved compatibility with Fast Report FMX version 4.13 --------------- + Added Lazarus Beta support starts from Fast Report Professionnal edition. Current version allows preview, print and design report template under Windows and Linux platform (qt). + Added Embarcadero RAD Studio XE3 support - fixed compatibility with Fast Report FMX installed in the same IDE. This version can co exist with Fast Report FMX version at the same time. + published "Quality" property of TfrxPDFExport object + published "UseMAPI" property of TfrxExportMail object + published "PictureType" property to ODF export - fixed bug with expressions in RichEdit - fixed bug in multi-column reports - fixed exception in the report designer - fixed bug with URLs in Open Document Text and Open Document Spreadsheet exports - fixed format string in XLS OLE export - fixed format string in XLS BIFF8 export - fixed output of the check boxes on the highlighted lines in PDF export - fixed bug with PDF anchors - fixed bug when using two or more macroses in memo version 4.12 --------------- + added support of Embarcadero Rad Studio EX2 (x32/x64) + added export of Excel formulas in the BIFF export + added export of external URLs in the PDF export + added converter from Rave Reports ConverterRR2FR.pas + added Cross.KeepRowsTogether property + optimised merging cells in the BIFF export + added property DataOnly to exports + pictures format in all exports switched to PNG + improved number formats processing in the BIFF export + added property DataOnly to exports + added property TfrxODFExport.SingleSheet + added property TfrxSimpleTextExport.DeleteEmptyColumns + added property TfrxBIFFExport.DeleteEmptyRows + added progress bar to the BIFF export - fixed bug with frame for some barcode types - fixed wrong metafiles size in the EMF export - fixed processing of negative numbers in the OLE export - fixed bug in handling exceptions in the OLE export - fixed bug in creation of the progress bar (applicable to many exports) - fixed bug in the ODF export in strings processing - fixed bug in the OLE export in numbers formatting - fixed bug in the PDF export in rotating texts 90, 180 and 270 degrees - fixed bug in the ODF export in processing of headers and footers - fixed bug in the Text export in computing object bounds - fixed bug in the ODF export in UTF8 encoding - fixed hiding gridlines around nonempty cells in the BIFF export - fixed images bluring when exporting - fixed word wrapping in the Excel XML export version 4.11 --------------- + added BIFF8 XLS export filter + added to ODF export the <em>Lan</em><em>guage</em> property + [enterprise] added "<em>script</em>s" folder for additional units ("uses" directive in report <em>script</em>) + [enterprise] added logs for scheduler (add info in scheduler.log) + [enterprise] added property "Reports" - "<em>Script</em>s" in server configuration - set the path for "uses" directive in report <em>script</em> + [enterprise] added property "Http" - "MaxSessions" in server configuration - set the limit of maximum session threads, set 0 for unlimit + [enterprise] added property "Reports" - "MaxReports" in server configuration - set the limit of maximum report threads, set 0 for unlimit + [enterprise] added property "Logs" - "SchedulerLog" in server configuration - set the scheduler log file name + [enterprise] added property "Scheduler" - "Active" in server configuration - enable of scheduler + [enterprise] added property "Scheduler" - "Debug" in server configuration - enable writing of debug info in scheduler log + [enterprise] added property "Scheduler" - "StudioPath" in server configuration - set the path to FastReport Studio, leave b<em>lan</em>k for default - [enterprise] fixed bug with MIME types in http header (content-type) - [enterprise] fixed bug with default configuration (with missed config.xml) - [enterprise] fixed bug with error pages - fixed bug in XML export with the ShowProgress property - fixed bug in RTF export with font size in empty cells - fixed bug in ODF export with UTF8 encoding of the Creator field - fixed bug in XML export with processing special characters in strings - fixed bug in ODF export with properties table:number-columns-spanned, table:number-rows-spanned - fixed bug in ODF export with the background clNone color - fixed bug in ODF export with a style of table:covered-table-cell - fixed bug in ODF export with table:covered-table-cell duplicates - fixed bug in ODF export with excessive text:p inside table:covered-table-cell - fixed bug in ODF export with <em>lan</em><em>guage</em> styles - fixed bug in ODF export with spaces and tab symbols - fixed bug in ODF export with styles of number cells - fixed bug in ODF export with the background picture - fixed bug in ODF export with charspacing - fixed bug in ODF export with number formatting - fixed bug in ODF export with table-row tag - fixed bug in XLS(OLE) export with numbers formatting - fixed bug in RTF export with processing RTF fields - fixed bug with processing special symbols in HTML Export - fixed bug with UTF8 encoding in ODF export - fixed bug in PDF export with underlined, struck-out and rotated texts version 4.10 --------------- + added support of Embarcadero Rad Studio XE (Delphi EX/C++Builder EX) + added support of TeeChart 2010 packages (new series type aren't support in this release) + added a property TruncateLongTexts to the XLS OLE export that allows to disable truncating texts longer than a <em>specified</em> limit + added option EmbedProt which allows to disable embedding fonts into an encrypted PDF file + added TfrxDateEditControl.WeekNumbers property - fixed bug in XML and PDF exports with Korean charmap - fixed bug in the XLS XML export about striked-out texts - fixed bug about exporting an empty page via the XLS OLE export - fixed bug in the PDF export about coloring the background of pages - fixed bug in embedded designer when using break point in <em>script</em> - fixed bug with lost of focus in font size combo-box in designer - fixed bug with truncate of font size combo-box in Windows Vista/7 in designer (lost of vertical scroll bar) - fixed bug when lost file name in inherited report - fixed bug in multi-page report with EndlessHeight/EndlessWidth - fixed bug wit TfrxHeader.ReprintOnNewpage and KeepTogether - fixed bug in multi-column report with child bands - improved split mechanism (added TfrxStretcheable.HasNextDataPart for complicated data like RTF tables) - improved crosstab speed when using repeat band with crosstab object version 4.9 --------------- + added outline to PDF export + added anchors to PDF export - fixed bug with embedded TTC fonts in PDF export + added an ability to <em>create</em> multiimage TIFF files + added export headers/footers in ODF export + added ability to print/export transparent pictures (properties TfrxPictureView.Transparent and TfrxPictureView.TransparentColor) (PDF export isn't supported) + added new "split to sheet" modes for TfrxXMLExport + added support of /PAGE tag in TfrxRichView, <em>engine</em> automatically break report pages when find /PAGE tag + added ability to hide Null values in TfrxChartView (TfrxChartView.IgnoreNulls = True) + added ability to set any custom page order for printing (i.e. 3,2,1,5,4 ) + [enterprise] added variables "AUTHLOGIN" and "AUTHGROUP" inside the any report + [enterprise] now any report file can be matched with any (one and more) group, these reports are accessible only in matched groups + [enterprise] now you can set-up cache delays for each report file (reports.xml) + [enterprise] added new properties editor for reports in Configuration utility (see Reports tab) + [enterprise] added property "Xml" - "SplitType" in server configuration - allow to select split on pages type between none/pages/printonprev/rowscount + [enterprise] added property "Xml" - "SplitRowsCount" in server configuration - sets the count of rows for "rowscount" split type + [enterprise] added property "Xml" - "Extension" in server configuration - allow select between ".xml" and ".xls" extension for output file + [enterprise] added property "Html" - "URLTarget" in server configuration - allow select the target attribute for report URLs + [enterprise] added property "ReportsFile" - path to file with reports to groups associations and cache delays + [enterprise] added property "ReportsListRenewTimeout" in server configuration + [enterprise] added property "ConfigRenewTimeout" in server configuration + [enterprise] added property "MimeType" for each output format in server configuration + [enterprise] added property "BrowserPrint" in server configuration - allow printing by browser, added new template nav_print_browser.html + [enterprise] added dynamic file name generation of resulting formats (report_name_date_time) * [enterprise] SERVER_REPORTS_LIST and SERVER_REPORTS_HTML variables (list of available reports) depend from user group (for internal authentification) + added drawing shapes in PDF export (not bitmap) + added rotated text in PDF export (not bitmap) + added <em>Engine</em>Options.IgnoreDevByZero property allow to ignore division by zero exception in expressions + added properties TfrxDBLookupComboBox.DropDownWidth, TfrxDBLookupComboBox.DropDownRows + added event TfrxCustomExportFilter.OnBeginExport + added ability to decrease font size in barcode object + added ability to inseret FNC1 to "code 128" barcode + added event TfrxPreview.OnMouseDown + added support of new unicode-PDF export in D4-D6 and BCB4-BCB6 * improved AddFrom method - anchor coping - fixed bug with WordWrap in PDF export - fixed bug with underlines in PDF export - fixed bug with rounded rectangles in PDF export - fixed CSV export to fit to the RFC 4180 specification - fixed bug with strikeout text in PDF export - fixed bug with incorrect export of TfrxRichView object in RTF format (wrong line spacing) - [enterprise] added critical section in TfrxServerLog.Write - fixed bug with setting up of the Protection Flags in the PDF export dialog window - fixed bug in PDF export (file structure) - fixed bug with pictures in Open Office Writer (odt) export - [enterprise] fixed bug with TfrxReportServer component in Delphi 2010 - fixed minor errors in Embarcedero RAD Studio 2010 - fixed bug with endless loop with using vertical bands together with page header and header with ReprintOnNewPage - fixed bug when using "Keeping" and Cross tables (incorrect cross transfer) - fixed bug with [CopyName#] macros when use "Join small pages" print mode - fixed bug when try to split page with endless height to several pages (NewPage, StartNewPage) - fixed bug with empty line TfrxRichView when adding text via expression - fixed bug when Footer prints even if main band is invisible (FooterAfterEach = True) - fixed resetting of Page variable in double-pass report with TfrxCrossView - fixed bug with loosing of aligning when split TfrxRichView - fixed buzz in reports with TfrxRichView when using RTF 4.1 version 4.8 --------------- + added support of Embarcadero Rad Studio 2010 (Delphi/C++Builder) + added TfrxDBDataset.BCDToCurrency property + added TfrxReportOptions.HiddenPassword property to set password silently from code + added TfrxADOConnection.OnAfterDisconnect event + added TfrxDesigner.MemoParentFont property + added new TfrxDesignerRestriction: drDontEditReport<em>Script</em> and drDontEditInternalDatasets + adedd checksum calculating for 2 5 interleaved barcode + added TfrxGroupHeader.ShowChildIfDrillDown property + added TfrxMailExport.OnSendMail event + added RTF 4.1 support for TfrxRichText object + [enterprise] added Windows Authentification mode + added confirmation reading for TfrxMailExport + added TimeOut field to TfrxMailExport form + added ability to use keeping(KeepTogether/KeepChild/KeepHeader) in multi-column report + added ability to split big bands(biggest than page height) by default * [enterprise] improved CGI for IIS/Apache server * changed PDF export (D7 and upper): added full unicode support, improved performance, decreased memory requirements old PDF export <em>engine</em> saved in file frxExportPDF_old.pas - changed inheritance mechanism, correct inherits of linked objects (fixups) - fixed bug with Mirror Mrgins in RTF, HTML, XLS, XML, OpenOffice exports - fixed bug when cross tab cut the text in corner, when corner height greater than column height - [fs] improved <em>script</em> compilation - improved WatchForm TListBox changet to TCheckListBox - improved AddFrom method - copy outline - Improved functional of vertical bands, shows memos placed on H-band which doesn't across VBand, also calculate expression inside it and call events (like in FR2) - Improved unsorted mode in crosstab(join same columns correctly) - Improved converter from Report Builder - Improved TfrxDesigner.OnInsertObject, should call when drag&drop field from data tree - improved DrillDownd mechanism, should work correct with master-detail-subtetail nesting - fixed bug with DownThenAcross in Cross Tab - fixed several bugs under CodeGear RAD Studio (Delphi/C++Builder) 2009 - fixed bug with emf in ODT export - fixed bug with outline when build several composite reports in double pass mode - fixed bug when group doesn't fit on the whole page - fixed "Page" and "Line" variables inside vertical bands - fixed bug with using KeepHeader in some cases - fixed bug with displacement of subreport when use PrintOnParent property in some cases - fixed small memory leak in subreports - fixed problem with PageFooter and ReportSymmary when use PrintOnPreviousPage property - fixed bug when designer shows commented functions in object inspector - fixed bug when designer place function in commented text block - fixed bug when <em>Engine</em> try to split non-stretcheable view and gone to endless loop - fixed bug with HTML tags in memo when use shot text and WordWrap - [enterprise] fixed bug with variables lost on refresh/export - fixed bug whih PDF,ODT export in Delphi4 and CBuilder4 - fixed bug with some codepage which use two bytes for special symbols (Japanese ans Chinese codepages) - fixed bug when <em>engine</em> delete first space from text in split Memo - fixed bug in multi-column page when band overlap stretched PageHeader - fixed bug with using ReprintOnNewPage version 4.7 --------------- + CodeGear RAD Studio (Delphi/C++Builder) 2009 support + [enterprise] enchanced error de<em>script</em>ion in logs + added properties TfrxHTMLExport.HTMLDocumentBegin: TStrings, TfrxHTMLExport.HTMLDocumentBody: TStrings, TfrxHTMLExport.HTMLDocumentEnd: TStrings + improved RTF export (with line spacing, vertical gap etc) + added support of Enhanced Metafile (EMF) images in Rich Text (RTF), Open Office (ODS), Excel (XLS) exports + added OnAfter<em>Script</em>Compile event + added onLoadRecentFile Event + added C++ Builder demos + added hot-key Ctrl + mouseWheel - Change scale in designer + added TfrxMemoView.AnsiText property - fixed bug in RTF export with EMF pictures in OpenOffice Writer - fixed some multi-thread isuues in <em>engine</em>, PDF, ODF exports - [enterprise] fixed integrated template of report navigator - [enterprise] fixed bug with export in Internet Explorer browser - fixed bug with font size of dot-matix reports in Excel and XML exports - fixed bug in e-mail export with many addresses - fixed bug in XLS export (with fast export unchecked and image object is null) - [enterprise] fixed bug in TfrxReportServer.OnGetVariables event - fixed bug in Calcl function - fixed memory leak in Cross editor - fixed progress bar and find dialog bug in DualView - fixed bug in PostNET and ean13 barcodes - fixed bug with TruncOutboundText in Dot Matrix report - fixed bugs with break points in syntaxis memo - improved BeforeConnect event in ADO - fixed bug in inhehited report with internal dataset - fixed bug in TfrxPanelControl with background color(Delphi 2005 and above) version 4.6 --------------- + added & , < , > to XML reader + added <nowrap> tag, the text concluded in tag is not broken by WordWrap, it move entirely + added ability to move band without objects (Alt + Move) + added ability to output pages in the preview from right to left ("many pages" mode), for RTL <em>lan</em><em>guage</em>s(PreviewOptions.RTLPreview) + added ability to storing picture cache in "temp" file (PreviewOptions.PictureCacheInFile) + added <em>Engine</em>Options.UseGlobalDataSetList (added for multi-thread applications) - set it to False if you don't want use Global DataSet list(use Report.EnabledDataSet.Add() to add dataset in local list) + added new property Hint for all printed objects, hints at the dialog objects now shows in StatusBar + added new property TfrxDBLookupComboBox.AutoOpenDataSet (automatically opens the attached dataset after onActivate event) + added new property TfrxReportPage.PageCount like TfrxDataBand.RowCount + added new property WordWrap for dialog buttons (Delphi 7 and above). + added sort by name to data tree + added TfrxDesigner.TemplatesExt property + added TfrxStyles class in <em>script</em> rtti + changes in the Chart editor: ability to change the name of the series, ability to move <em>create</em>d series, other small changes + [enterprise] added configurations values refresh in run-time + [enterprise] added new demo \Demos\ClientServer\ISAPI + [enterprise] added output to server printers from user browser (see config.xml "AllowPrint", set to "no" by default), note: experimental feature + [enterprise] added reports list refresh in run-time + [enterprise] added templates feature + [enterprise] improved speed and stability + [fs] added Tfs<em>Script</em>.IncludePath property + [fs] added Tfs<em>Script</em>.UseClassLateBinding property + [fs] fixed type casting from variant(string) to integer/float - changes in report inherit: FR get relative path from current loaded report(old reports based on application path works too) - corrected module for converting reports from Report Builder - fixed bug in CrossTab when set charset different from DEFAULT_CHARSET - fixed bug in RTF export with some TfrxRichView objects - fixed bug when print on <em>lan</em>dscape orientation with custom paper size - fixed bug when use network path for parent report - fixed bug with Band.Allowslit = True and ColumnFooter - fixed bug with drawing subreport on stretched band - fixed bug with embedded fonts in PDF export - fixed bug with long ReportTitle + Header + MaterData.KeepHeader = true - fixed bug with minimizing of Modal designer in BDS2005 and above - fixed bug with paths in HTML export - fixed bug with RTL in PDF export - fixed bug with SubReport in multi column page - fixed bug with Subreport.PrintOnParent = true in inherited report - fixed bug with SYMBOL_CHARSET in PDF export - fixed bug with the addition of datasets by inheritance report - fixed bug with width calculation when use HTML tags in memo - fixed compatibility with WideStrings module in BDS2006/2007 - fixed flicking in preview when use OnClickObject event - fixed free space calculation when use PrintOnPreviousPage - fixed preview bug with winXP themes and in last update - fixed subreports inherit - Thumbnail and Outline shows at right side for RTL <em>lan</em><em>guage</em>s - [fs] fixed bug with late binding version 4.5 --------------- + added ConverterRB2FR.pas unit for converting reports from Report Builder to Fast Report + added ConverterQR2FR.pas unit for converting reports from QuickReport to FastReport + added support of multiple attachments in e-mail export (html with images as example) + added support of unicode (UTF-8) in e-mail export + added ability to change templates path in designer + added OnReportPrint <em>script</em> event + added PNG support in all version (start from Basic) + added TfrxDMPMemoView.TruncOutboundText property - truncate outbound text in matrix report when WordWrap=false + added new frames styles fsAltDot and fsSquare + added new event OnPreviewDblClick in all TfrxView components + added ability to call dialogs event after report run when set DestroyForms = false + added ability to change AllowExpressions and HideZeros properties in cross Cells (default=false) + added IgnoreDupParams property to DB components + added auto open dataset in TfrxDBLookupComboBox + added new property TfrxADOQuery.LockType + added define DB_CAT (frx.inc) for grouping DB components + added TfrxPictureView.HightQuality property(draw picture in preview with hight quality, but slow down drawing procedure) + [FRViewer] added comandline options "/print filename" and "/silent_print filename" + added unicode input support in RichEditor + added new define HOOK_WNDPROC_FOR_UNICODE (frx.inc) - set hook on GetMessage function for unicode input support in D4-D7/BCB4-BCB6 + added ability chose path to FIB packages in "Recompile Wizard" + added new function TfrxPreview.GetTopPosition, return a position on current preview page + added new hot-keys to Code Editor - Ctrl+Del delete the word before cursor, Ctrl+BackSpace delete the word after cursor(as in Delhi IDE) + added "MDI Designer" example - all <em>lan</em><em>guage</em> resources moved to UTF8, XML - fixed bug with html tags [sup] and [sub] - fixed width calculation in TfrxMemoView when use HTML tags - fixed bug with suppressRepeated in Vertical bands - fixed bug when designer not restore scrollbars position after undo/redo - fixed visual bug in toolbars when use Windows Vista + XPManifest + Delphi 2006 - fixed bug in CalcHeight when use negative LineSpace - fixed bug in frx2xto30 when import query/table components, added import for TfrDBLookupControl component - fixed bug with Cross and TfrxHeader.ReprintOnNewPage = true - fixed converting from unicode in TfrxMemoView when use non default charset - [fs] fixed bug with "in" operator - fixed bug with aggregate function SUM - fixed bug when use unicode string with [TotalPages#] in TfrxMemoView - fixed bug with TSQLTimeStampField field type - fixed designer dock-panels("Object Inspector", "Report Tree", "Data Tree") when use designer as MDI or use several non-modal designer windows - fixed bug with hide/show dock-panels("Object Inspector", "Report Tree", "Data Tree"), now it restore size after hiding - fixed bug in XML/XLS export - wrong encode numbers in memo after CR/LF - fiexd bug in RTF export - fixed bug with undo/redo commands in previewPages designer - fixed bug with SuppressRepeated when use KeepTogether in group - fixed bug with SuppressRepeated on new page all events fired twice(use <em>Engine</em>.Second<em>Script</em>call to determinate it) version 4.4 --------------- + added support for CodeGear RAD Studio 2007 + improved speed of PDF, HTML, RTF, XML, ODS, ODT exports + added TfrxReportPage.BackPictureVisible, BackPicturePrintable properties + added rtti for the TfrxCrossView.CellFunctions property + added properties TfrxPDFExport.Keywords, TfrxPDFExport.Producer, TfrxPDFExport.HideToolbar, TfrxPDFExport.HideMenubar, TfrxPDFExport.HideWindowUI, TfrxPDFExport.FitWindow, TfrxPDFExport.CenterWindow, TfrxPDFExport.PrintScaling + added ability recompile frxFIB packages in "recompile wizard" + added ability to set color property for all teechart series which support it + added, setting frame style for each frame line in style editor + added TfrxPreview.Locked property and TfrxPreview.DblClick event + added 'invalid password' exception when load report without crypt + added new parameter to InheritFromTemplate (by default = imDefault) imDefault - show Error dialog, imDelete - delete duplicates, imRename - rename duplicates + added property TfrxRTFExport.AutoSize (default is "False") for set vertical autosize in table cells * redesigned dialog window of PDF export * improved WYSIWYG in PDF export - fixed bug, the PageFooter band overlap the ReportSummary band when use EndlessHeight - fixed bug with lage paper height in preview - fixed bug with outline and encryption in PDF export - fixed bug with solid arrows in PDF export - fixed bug when print TfrxHeader on a new page if ReprintOnNewPage = true and KeepFooter = True - fixed bug when used AllowSplit and TfrxGroupHeader.KeepTogether - fixed page numbers when print dotMatrix report without dialog - fixed bug with EndlessHeight in multi-columns report - fixed font dialog in rich editor - [fs] fixed bug when <em>create</em> TWideStrings in <em>script</em> code - fixed bug with dialog form when set TfrxButtonControl.Default property to True - fixed twice duplicate name error in PreviewPages designer when copy - past object - fixed bug with Preview.Clear and ZmWholePage mode - fixed bug with using "outline" together "embedded fonts" options in PDF export - fixed multi-thread bug in PDF export - fixed bug with solid fill of transparent rectangle shape in PDF export - fixed bug with export OEM_CODEPAGE in RTF, Excel exports - fixed bug with vertical size of single page in RTF export - fixed bug with vertical arrows in PDF export - fixed memory leak with inherited reports version 4.3 --------------- + added support for C++Builder 2007 + added encryption in PDF export + added TeeChart Pro 8 support + added support of OEM code page in PDF export + added TfrxReport.CaseSensitiveExpressions property + added "OverwritePrompt" property in all export components + improved RTF export (WYSIWYG) + added support of thai and vietnamese charsets in PDF export + added support of arrows in PDF export * at inheritance of the report the <em>script</em> from the report of an ancestor is added to the current report (as comments) * some changes in PDF export core - fixed bug with number formats in Open Document Spreadsheet export - fixed bug when input text in number property(Object Inspector) and close Designer(without apply changes) - fixed bug in TfrxDBDataset with reCurrent - fixed bug with memory leak in export of empty outline in PDF format - line# fix (bug with subreports) - fixed bug with edit prepared report with rich object - fixed bug with shadows in PDF export - fixed bug with arrows in designer - fixed bug with margins in HTML, RTF, XLS, XML exports - fixed bug with arrows in exports - fixed bug with printers enumeration in designer (list index of bound) - fixed papersize bug in inherited reports version 4.2 --------------- + added support for CodeGear Delphi 2007 + added export of html tags in RTF format + improved split of the rich object + improved split of the memo object + added TfrxReportPage.ResetPageNumbers property + added support of underlines property in PDF export * export of the memos formatted as fkNumeric to float in ODS export - fixed bug keeptogether with aggregates - fixed bug with double-line draw in RTF export - fix multi-thread problem in PDF export - fixed bug with the shading of the paragraph in RTF export when external rich-text was inserted - fixed bug with unicode in xml/xls export - fixed bug in the crop of page in BMP, TIFF, Jpeg, Gif - "scale" printmode fixed - group & userdataset bugfix - fixed cross-tab pagination error - fixed bug with round brackets in PDF export - fixed bug with gray to black colors in RTF export - fixed outline with page.endlessheight - fixed SuppressRepeated & new page - fixed bug with long time export in text format - fixed bug with page range and outline in PDF export - fixed undo in code window - fixed error when call DesignReport twice - fixed unicode in the cross object - fixed designreportinpanel with dialog forms - fixed paste of DMPCommand object - fixed bug with the export of null images - fixed code completion bug - fixed column footer & report summary problem version 4.1 --------------- + added ability to show designer inside panel (TfrxReport.DesignReportInPanel method). See new demo Demos\EmbedDesigner + added TeeChart7 Std support + [server] added "User" parameter in TfrxReportServer.OnGetReport, TfrxReportServer.OnGetVariables and TfrxReportServer.OnAfterBuildReport events + added Cross.KeepTogether property + added TfrxReport.PreviewOptions.PagesInCache property - barcode fix (export w/o preview bug) - fixed bug in preview (AV with zoommode = zmWholePage) - fixed bug with outline + drilldown - fixed datasets in inherited report - [install] fixed bug with library path set up in BDS/Turbo C++ Builder installation - fixed pagefooter position if page.EndlessWidth is true - fixed shift bug - fixed design-time inheritance (folder issues) - fixed chm help file path - fixed embedded fonts in PDF - fixed preview buttons - fixed bug with syntax highlight - fixed bug with print scale mode - fixed bug with control.Hint - fixed edit preview page - fixed memory leak in cross-tab version 4.0 initial release --------------------- Report Designer: - new XP-style interface - the "Data" tab with all report datasets - ability to draw diagrams in the "Data" tab - code completion (Ctrl+Space) - breakpoints - watches - report templates - local guidelines (appears when you move or resize an object) - ability to work in non-modal mode, mdi child mode Report Preview: - thumbnails Print: - split a big page to several small pages - print several small pages on one big - print a page on a <em>specified</em> sheet (with scale) - duplex handling from print dialogue - print copy name on each printed copy (for example, "First copy", "Second copy") Report Core: - "endless page" mode - images handling, increased speed - the "Reset page numbers" mode for groups - reports crypting (Rijndael algorithm) - report inheritance (both file-based and dfm-based) - drill-down groups - frxGlobalVariables object - "cross-tab" object enhancements: - improved cells appearance - cross elements visible in the designer - fill corner (ShowCorner property) - side-by-side crosstabs (NextCross property) - join cells with the same value (JoinEqualCells property) - join the same string values in a cell (AllowDuplicates property) - ability to put an external object inside cross-tab - AddWidth, AddHeight properties to increase width&height of the cell - AutoSize property, ability to resize cells manually - line object can have arrows - added TfrxPictureView.FileLink property (can contain variable or a file name) - separate settings for each frame line (properties Frame.LeftLine, TopLine, RightLine, BottomLine can be set in the object inspector) - PNG images support (uncomment {$DEFINE PNG} in the frx.inc file) - Open Document Format for Office Applications (OASIS) exports, spreadsheet (ods) and text (odt) Enterprise components: - Users/Groups security support (see a demo application Demos\ClientServer\UserManager) - Templates support - Dynamically refresh of configuration, users/groups D2010以上版本(D14_D19)安装必读 delphi2010以上版本(D14_D19)使用者安装时,请将res\frccD14_D19.exe更名名为frcc.exe frccD14_D19.exe是专门的delphi2010以上版本(D14_D19)编码器。其他低delphi版本,请使用frcc.exe</a></div></div></div></div> <div class="public_pc_right_footer2020" style="display:none;" data-v-4a5a7f56></div></div> <div id="right-floor-user-content_562" data-editor="{"type":"floor","pageId":143,"floorId":562}" class="user-right-floor right-box main-box detail-user-right" data-v-229a00b0><div class="__vuescroll" style="height:100%;width:100%;padding:0;position:relative;overflow:hidden;"><div class="__panel __hidebar" style="position:relative;box-sizing:border-box;height:100%;overflow-y:hidden;overflow-x:hidden;transform-origin:;transform:;"><div class="__view" style="position:relative;box-sizing:border-box;min-width:100%;min-height:100%;"><!----><div comp-data="[object Object]" baseInfo="[object Object]" community="[object Object]" class="introduce" data-v-4722a3ae><div class="introduce-title" data-v-4722a3ae><div class="img-info" data-v-4722a3ae><a href="https://bbs.csdn.net/forums/MSSQL_Basic" class="community-img" data-v-4722a3ae><img src="https://img-community.csdnimg.cn/avatar/db13a8bbc42a48ce93c67e94237e250c.png?x-oss-process=image/resize,m_fixed,h_88,w_88" alt data-v-4722a3ae> <div title="MS-SQL Server" class="community-name" data-v-4722a3ae> MS-SQL Server </div></a></div></div> <div class="content" data-v-4722a3ae><div class="detail" data-v-4722a3ae><div title="34589" class="item" data-v-4722a3ae><p class="num" data-v-4722a3ae> 34,589 </p> <p class="desc" data-v-4722a3ae> 社区成员 </p></div> <div title="254589" class="item" data-v-4722a3ae><a href="https://bbs.csdn.net/forums/MSSQL_Basic" target="_blank" data-v-4722a3ae><p class="num" data-v-4722a3ae> 254,589 </p> <p class="desc" data-v-4722a3ae> 社区内容 </p></a></div></div> <div class="detail-btns" data-v-4722a3ae><div class="community-ctrl-btns_wrapper" data-v-0ebf603c data-v-4722a3ae><div class="community-ctrl-btns" data-v-0ebf603c><div class="community-ctrl-btns_item" data-v-0ebf603c><div data-v-160be461 data-v-0ebf603c><div data-report-click="{"spm":"3001.5975"}" data-v-160be461><img src="https://csdnimg.cn/release/cmsfe/public/img/topic.427195d5.png" alt="" class="img sendTopic" data-v-160be461 data-v-0ebf603c> <span data-v-160be461 data-v-0ebf603c>发帖</span></div> <!----> <!----></div></div><div class="community-ctrl-btns_item" data-v-0ebf603c><div data-v-0ebf603c><img src="https://csdnimg.cn/release/cmsfe/public/img/me.40a70ab0.png" alt="" class="img me" data-v-0ebf603c> <span data-v-0ebf603c>与我相关</span></div></div><div class="community-ctrl-btns_item" data-v-0ebf603c><div data-v-0ebf603c><img src="https://csdnimg.cn/release/cmsfe/public/img/task.87b52881.png" alt="" class="img task" data-v-0ebf603c> <span data-v-0ebf603c>我的任务</span></div></div><div class="community-ctrl-btns_item" data-v-0ebf603c><div class="community-share" data-v-4ca34db9 data-v-0ebf603c><div class="handle-item share" data-v-ca030a68 data-v-4ca34db9><span height="384" data-v-ca030a68><div role="tooltip" id="el-popover-4934" aria-hidden="true" class="el-popover el-popper popo share-popover" style="width:265px;display:none;"><!----><div id="tool-QRcode" class="QRcode" data-v-ca030a68><img src="https://csdnimg.cn/release/cmsfe/public/img/shareBg4.515d57f6.png" alt="" class="share-bg" data-v-ca030a68> <div class="share-bg-box" data-v-ca030a68><div class="share-content" data-v-ca030a68><img src="https://img-community.csdnimg.cn/avatar/db13a8bbc42a48ce93c67e94237e250c.png?x-oss-process=image/resize,m_fixed,h_88,w_88" alt="" class="share-avatar" data-v-ca030a68> <div class="share-tit" data-v-ca030a68>MS-SQL Server</div> <div class="share-dec" data-v-ca030a68>MS-SQL Server相关内容讨论专区</div> <span class="copy-share-url" data-v-ca030a68>复制链接</span> <div class="shareText" data-v-ca030a68> </div></div> <div class="share-code" data-v-ca030a68><div class="qrcode" data-v-ca030a68></div> <div class="share-code-text" data-v-ca030a68>扫一扫</div></div></div></div> </div><span class="el-popover__reference-wrapper"><div data-v-0ebf603c><img src="https://csdnimg.cn/release/cmsfe/public/img/share-circle.3e0b7822.png" alt="" class="img share" data-v-0ebf603c> <span data-v-0ebf603c>分享</span></div></span></span></div> <!----></div></div></div> <!----> <div data-v-4fb59baf data-v-0ebf603c><div class="el-dialog__wrapper ccloud-pop-outer2" style="display:none;" data-v-4fb59baf><div role="dialog" aria-modal="true" aria-label="dialog" class="el-dialog el-dialog--center" style="margin-top:15vh;width:70%;"><div class="el-dialog__header"><span class="el-dialog__title"></span><!----></div><!----><div class="el-dialog__footer"><span class="dialog-footer clearfix" data-v-4fb59baf><div class="confirm-btm fr" data-v-4fb59baf>确定</div></span></div></div></div></div></div></div></div> <div style="display:none;" data-v-4722a3ae data-v-4722a3ae><!----> <div class="introduce-desc" data-v-4722a3ae><div class="introduce-desc-title" data-v-4722a3ae>社区描述</div> <span data-v-4722a3ae> MS-SQL Server相关内容讨论专区 </span></div></div> <div class="introduce-text" data-v-4722a3ae><div class="label-box" data-v-4722a3ae><!----> <!----> <!----></div></div> <!----> <div class="manage" data-v-4722a3ae><div class="manage-inner" data-v-4722a3ae><span data-v-4722a3ae>社区管理员</span> <ul data-v-4722a3ae><li data-v-4722a3ae><a href="https://blog.csdn.net/community_187" target="_blank" class="start-img" data-v-4722a3ae><img src="https://profile-avatar.csdnimg.cn/default.jpg!1" alt="基础类社区" class="el-tooltip item" data-v-4722a3ae data-v-4722a3ae></a></li><li data-v-4722a3ae><a href="https://blog.csdn.net/sinat_28984567" target="_blank" class="start-img" data-v-4722a3ae><img src="https://profile-avatar.csdnimg.cn/e4154da1658b49ca87b443a68b0fac47_sinat_28984567.jpg!1" alt="二月十六" class="el-tooltip item" data-v-4722a3ae data-v-4722a3ae></a></li><li data-v-4722a3ae><a href="https://blog.csdn.net/wmxcn2000" target="_blank" class="start-img" data-v-4722a3ae><img src="https://profile-avatar.csdnimg.cn/5591b292aa3a4c7db7b6c521d7086c16_wmxcn2000.jpg!1" alt="卖水果的net" class="el-tooltip item" data-v-4722a3ae data-v-4722a3ae></a></li></ul></div></div> <div class="actions" data-v-4722a3ae><!----> <div style="flex:1;" data-v-4722a3ae><div class="join-btn" data-v-4722a3ae> 加入社区 </div></div> <!----> <!----></div> <div class="el-dialog__wrapper" style="display:none;" data-v-38c57799 data-v-4722a3ae><div role="dialog" aria-modal="true" aria-label="获取链接或二维码" class="el-dialog join-qrcode-dialog" style="margin-top:15vh;width:600px;"><div class="el-dialog__header"><span class="el-dialog__title">获取链接或二维码</span><button type="button" aria-label="Close" class="el-dialog__headerbtn"><i class="el-dialog__close el-icon el-icon-close"></i></button></div><!----><div class="el-dialog__footer"><span class="dialog-footer" data-v-38c57799></span></div></div></div> <div class="collapse-btn" data-v-4722a3ae><img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAFAAAAAgCAYAAACFM/9sAAAAAXNSR0IArs4c6QAAAi1JREFUaEPtl01u01AUhc+N8wMSO4AxzJAqwQpKQsdtbMOICmKnwCKQ2ACDIgotrYKiduIiVZ10B0CBAjtAbICfooomJr3IcUoTiVLb15GNuG/67nm65/M5AxP0iAiQSK1iKEBhCBSgAhQSEMo1gQpQSEAo1wQqQCEBoVwT+K8CnLnWvER8cOHMaf95q9Xaj+vDtp3LPeD83u6p9a2t+U5cfVrzmSTQNOfOgg4+ATDAeNHp/Jza3Fz5HtWUZbl3GXjYn2e+53lL96Nq057LBOD0dOOcUSx8BFAcGHpZLlWmVlfnd08yaJrubRAe/Z77HwEG5kdS1E8StgFc9bzFb8dBrNtukxgLwOAXNEF6T/pAce8zSeDhknXbuUNMQRUHe/BrMNX+BNGyHIdBT45m6VVn36/FqX5cOFHmMwUYJrE5x+CgkuEujLe+361ubLS+HhowzeYtEC8NzWyXy5ValMpHgSCZyRxgsLxpui4Ij4/ShZ1S0aiurS18sSznJoOeDt29AaP6t6pLgMTV5gJgsHTddhvEWBwC9Y6AZww8AFA4Lp1xDac9nxuAYZ37aQuqGgIbPTt+t3tluNppw0jyXq4AhnV2ZkG0PAKR8b5UMiaDSicxOU5N7gCGSXRvMLAygPgB3Jv0vOXP4wSR9O1cAgzMzFxvXDR6hYlK5cd6u93eS2pw3LrcAhy38bTeV4BCkgpQAQoJCOWaQAUoJCCUawIVoJCAUK4JVIBCAkL5L1yapyGdIBwvAAAAAElFTkSuQmCC" alt data-v-4722a3ae></div></div><!----><!----><div comp-data="[object Object]" baseInfo="[object Object]" typePage="detail" community="[object Object]" class="floor-user-right-rank" data-v-3d3affee><div class="el-tabs el-tabs--top" data-v-3d3affee><div class="el-tabs__header is-top"><div class="el-tabs__nav-wrap is-top"><div class="el-tabs__nav-scroll"><div role="tablist" class="el-tabs__nav is-top" style="transform:translateX(-0px);"><div class="el-tabs__active-bar is-top" style="width:0px;transform:translateX(0px);ms-transform:translateX(0px);webkit-transform:translateX(0px);"></div></div></div></div></div><div class="el-tabs__content"><div role="tabpanel" id="pane-integral" aria-labelledby="tab-integral" class="el-tab-pane" data-v-3d3affee></div><div role="tabpanel" aria-hidden="true" id="pane-3" aria-labelledby="tab-3" class="el-tab-pane" style="display:none;" data-v-3d3affee></div><div role="tabpanel" aria-hidden="true" id="pane-5" aria-labelledby="tab-5" class="el-tab-pane" style="display:none;" data-v-3d3affee></div><div role="tabpanel" aria-hidden="true" id="pane-6" aria-labelledby="tab-6" class="el-tab-pane" style="display:none;" data-v-3d3affee></div></div></div> <div class="floor-user-right-rank-score" data-v-608528ce data-v-3d3affee><div class="floor-user-right-rank-score-tabs" data-v-608528ce><ul data-v-608528ce><li data-v-608528ce> 近7日 </li><li data-v-608528ce> 近30日 </li><li class="active" data-v-608528ce> 至今 </li></ul></div> <div class="floor-user-right-rank-common" data-v-46cf600d data-v-608528ce><div class="rank-list" data-v-46cf600d><!----> <div class="no-data loading" data-v-46cf600d><i class="el-icon-loading" data-v-46cf600d></i> <p data-v-46cf600d>加载中</p></div> <!----> <a href="https:///MSSQL_Basic/rank/list/total" target="_blank" class="show-more" data-v-46cf600d> 查看更多榜单 </a></div></div></div></div><div comp-data="[object Object]" baseInfo="[object Object]" typePage="detail" community="[object Object]" class="floor comunity-rule" data-v-3cfa4dbd><div class="title" data-v-3cfa4dbd> 社区公告 </div> <div class="contain" data-v-3cfa4dbd><div class="inner-content" data-v-3cfa4dbd>暂无公告</div></div></div><div comp-data="[object Object]" baseInfo="[object Object]" typePage="detail" community="[object Object]" class="user-right-adimg empty-arr" data-v-15c6aa4f><div class="adImgs" data-v-2a6389b9 data-v-15c6aa4f><!----> <div data-v-2a6389b9><div data-v-2a6389b9></div></div></div></div><div comp-data="[object Object]" baseInfo="[object Object]" community="[object Object]" class="content-right-recommend" data-v-0f781e88><div data-v-3798762e data-v-0f781e88><!----> <!----></div></div><div comp-data="[object Object]" baseInfo="[object Object]" typePage="detail" community="[object Object]" class="ai-entrance" data-v-eb1c454c><p data-v-eb1c454c>试试用AI创作助手写篇文章吧</p> <div class="entrance-btn-line" data-v-eb1c454c><a href="https://mp.csdn.net/edit?guide=1" target="_blank" data-report-click="{"spm":"3001.9712"}" data-report-query="spm=3001.9712" class="entrance-btn" data-v-eb1c454c>+ 用AI写文章</a></div></div></div></div></div></div></div></div></div></div></div></div></div> <div> <script type="text/javascript" src="https://g.csdnimg.cn/common/csdn-footer/csdn-footer.js" data-isfootertrack="false" defer></script> </div></div></div><script> window.__INITIAL_STATE__= {"csrf":"Le7EayEi-G56uL3o-0MOVTT4rZt8s-m0dYgQ","origin":"http:\u002F\u002Fbbs.csdn.net","isMobile":false,"cookie":"uuid_tt_dd=10_3097263090-1714024095671-941386;","ip":"18.118.12.101","pageData":{"page":{"pageId":143,"title":"社区详情","keywords":"社区详情","description":"社区详情","ext":{"isMd":"true","armsfe1":"{pid:\"dyiaei5ihw@1a348e4d05c2c78\",appType:\"web\",imgUrl:\"https:\u002F\u002Farms-retcode.aliyuncs.com\u002Fr.png?\",sendResource:true,enableLinkTrace:true,behavior:true}","redPacketCfg":"{\"presetTitle\":[\"成就一亿技术人!\",\"大吉大利\",\"节日快乐\",\"Bug Free\",\"Hello World\",\"Be Greater Than Average!!\"],\"defaultTitle\":\"成就一亿技术人!\",\"preOpenSty\":{},\"redCardSty\":{}}","blogStar":"[{\"year\":\"2021\",\"enable\":true,\"communityIds\":[3859],\"url\":\"https:\u002F\u002Fbbs.csdn.net\u002Fsummary2021\"},{\"year\":\"2022\",\"enable\":true,\"communityIds\":[3860],\"url\":\"https:\u002F\u002Fbbs.csdn.net\u002Fsummary2022\"}]","mdVersion":"https:\u002F\u002Fcsdnimg.cn\u002Frelease\u002Fmarkdown-editor\u002F1.1.0\u002Fmarkdown-editor.js","componentSortCfg":"{ \"right\":[\"ratesInfo\",\"cty-profile\",\"pub-comp\",\"user-right-introduce\",\"post-event\",\"my-mission\",\"user-recommend\",\"user-right-rank\",\"user-right-rule\",\"user-right-adimg\"] }","show_1024":"{\"enable\":false,\"useWhitelist\":false,\"whitelist\":[76215],\"home\":\"https:\u002F\u002F1111.csdn.net\u002F\",\"logo\":\"https:\u002F\u002Fimg-home.csdnimg.cn\u002Fimages\u002F20221104102741.png\",\"hideLive\":true}","iframes":"[\"3859\"]","pageCfg":"{\"disableDownloadPDF\": false,\"hideSponsor\":false}"}},"template":{"templateId":71,"templateComponentName":"ccloud-detail","title":"ccloud-detail","floorList":[{"floorId":562,"floorComponentName":"floor-user-content","title":"社区详情页","description":"社区详情页","indexOrder":3,"componentList":[{"componentName":"baseInfo","componentDataId":"cloud-detail1","componentConfigData":{},"relationType":3},{"componentName":"user-right-introduce","componentDataId":"","componentConfigData":{},"relationType":2},{"componentName":"user-recommend","componentDataId":"","componentConfigData":{},"relationType":2},{"componentName":"user-right-rank","componentDataId":"","componentConfigData":{},"relationType":2},{"componentName":"user-right-rule","componentDataId":"","componentConfigData":{},"relationType":2},{"componentName":"user-right-adimg","componentDataId":"","componentConfigData":{},"relationType":2},{"componentName":"default2014LiveRoom","componentDataId":"20221024DefaultLiveRoom","componentConfigData":{},"relationType":3}]}]},"data":{"baseInfo":{"customDomain":"","uriName":"MSSQL_Basic","communityHomePage":"https:\u002F\u002Fbbs.csdn.net\u002Fforums\u002FMSSQL_Basic","owner":{"userName":"community_187","nickName":"基础类社区","avatarUrl":"https:\u002F\u002Fprofile-avatar.csdnimg.cn\u002Fdefault.jpg!1","position":"","companyName":""},"user":{"userRole":3,"userName":null,"nickName":null,"avatarUrl":null,"rank":null,"follow":2,"communityBase":null,"joinCollege":null,"isVIP":null},"community":{"name":"MS-SQL Server","description":"MS-SQL Server相关内容讨论专区","avatarUrl":"https:\u002F\u002Fimg-community.csdnimg.cn\u002Favatar\u002Fdb13a8bbc42a48ce93c67e94237e250c.png?x-oss-process=image\u002Fresize,m_fixed,h_88,w_88","qrCode":"","createTime":"2007-09-28","communityAvatarUrl":"https:\u002F\u002Fprofile-avatar.csdnimg.cn\u002Fdefault.jpg!1","communityNotice":null,"userCount":34589,"contentCount":254589,"followersCount":15150,"communityRule":"","communityId":302,"bgImage":"","hashId":"mgwm8lnl","domain":"","uriName":"MSSQL_Basic","externalDisplay":1,"adBanner":{"img":"","url":"","adType":0,"adCon":null},"rightBanner":{"img":"","url":"","adType":0,"adCon":null},"tagId":null,"tagName":null,"communityType":1,"communityApplyUrl":"https:\u002F\u002Fmarketing.csdn.net\u002Fquestions\u002FQ2106040308026533763","joinType":0,"visibleType":0,"collapse":0,"topicMoveAble":0,"allowActions":{},"communityOwner":"community_187","tagNameInfo":{"provinceTag":null,"areaTag":null,"technologyTags":null,"customTags":null}},"tabList":[{"tabId":1461,"tabName":"全部","tabUrl":"","tabSwitch":1,"tabType":4,"tabContribute":0,"cardType":0,"indexOrder":-1,"url":"https:\u002F\u002Fbbs.csdn.net\u002Fforums\u002FMSSQL_Basic?typeId=1461","iframe":false,"sortType":1},{"tabId":739,"tabName":"基础类","tabUrl":"","tabSwitch":1,"tabType":1,"tabContribute":1,"cardType":0,"indexOrder":0,"url":"https:\u002F\u002Fbbs.csdn.net\u002Fforums\u002FMSSQL_Basic?typeId=739","iframe":false,"sortType":1},{"tabId":740,"tabName":"应用实例","tabUrl":"","tabSwitch":1,"tabType":1,"tabContribute":1,"cardType":0,"indexOrder":0,"url":"https:\u002F\u002Fbbs.csdn.net\u002Fforums\u002FMSSQL_Basic?typeId=740","iframe":false,"sortType":1},{"tabId":741,"tabName":"新技术前沿","tabUrl":"","tabSwitch":1,"tabType":1,"tabContribute":1,"cardType":0,"indexOrder":0,"url":"https:\u002F\u002Fbbs.csdn.net\u002Fforums\u002FMSSQL_Basic?typeId=741","iframe":false,"sortType":1},{"tabId":4055703,"tabName":"博文收录","tabUrl":"","tabSwitch":1,"tabType":2,"tabContribute":0,"cardType":0,"indexOrder":19,"url":"https:\u002F\u002Fbbs.csdn.net\u002Fforums\u002FMSSQL_Basic?typeId=4055703","iframe":false,"sortType":1}],"dataResource":{"mediaType":"c_cloud","subResourceType":"8_c_cloud_long_text","showType":"long_text","tabId":0,"communityName":"MS-SQL Server","communityHomePageUrl":"https:\u002F\u002Fbbs.csdn.net\u002Fforums\u002FMSSQL_Basic","communityType":1,"content":{"id":"260035406","contentId":260035406,"cateId":0,"cateName":null,"url":"https:\u002F\u002Fbbs.csdn.net\u002Ftopics\u002F260035406","shareUrl":"https:\u002F\u002Fbbs.csdn.net\u002Ftopics\u002F260035406","createTime":"2008-08-26 09:26:47","updateTime":"2021-05-28 16:57:12","resourceUsername":"TFsoft2008","best":0,"top":0,"text":null,"publishDate":"2008-08-26","lastReplyDate":"2011-06-28","type":"13","nickname":"TFsoft2008","avatar":"https:\u002F\u002Fprofile-avatar.csdnimg.cn\u002Fdefault.jpg!1","username":"tfsoft2008","commentCount":4,"diggNum":0,"digg":false,"viewCount":1631,"hit":false,"resourceSource":6,"status":10,"taskStatus":null,"expired":false,"taskCate":0,"taskAward":0,"taskExpired":null,"checkRedPacket":null,"avgScore":0,"totalScore":0,"topicTitle":"A script engine for the specified language can be not created","insertFirst":false,"likeInfo":null,"description":"大家好: 我重装系统后,运行一个VB编写的程序,就会提示 A script engine for the specified language can be not created。 以前没有这个提示的,不知道我哪个地方没弄好,望大家指教!","coverImg":"https:\u002F\u002Fimg-home.csdnimg.cn\u002Fimages\u002F20221027062446.png","content":"大家好:\u003Cbr \u002F\u003E\n 我重装系统后,运行一个VB编写的程序,就会提示 A script engine for the specified language can be not created。\u003Cbr \u002F\u003E\n 以前没有这个提示的,不知道我哪个地方没弄好,望大家指教!","mdContent":null,"pictures":null,"videoInfo":null,"linkInfo":null,"student":{"isCertification":false,"org":"","bala":""},"employee":{"isCertification":false,"org":"","bala":""},"userCertification":[],"dependId":"0","dependSubType":null,"videoUrl":null,"favoriteCount":0,"favoriteStatus":false,"taskType":null,"defaultScore":null,"syncAsk":false,"videoPlayLength":null},"communityUser":null,"allowPost":false,"submitHistory":[{"user":{"registerurl":"https:\u002F\u002Fg.csdnimg.cn\u002Fstatic\u002Fuser-reg-year\u002F1x\u002F16.png","avatarurl":"https:\u002F\u002Fprofile-avatar.csdnimg.cn\u002Fdefault.jpg!1","nickname":"TFsoft2008","selfdesc":"","createdate":"2008-01-04 16:18:00","days":"5956","years":"16","username":"TFsoft2008","school":null,"company":null,"job":null},"userName":"TFsoft2008","event":"创建了帖子","body":"2008-08-26 09:26","editId":null}],"resourceExt":{}},"contentReply":{"pageNo":1,"pageSize":20,"totalPages":1,"totalCount":4,"total":0,"list":[{"hit":null,"hitMsg":null,"content":"是没有安装Microsoft Script Control,就他妈的我安装了Microsoft Script Control但是装好的时候可以用,重启一下电脑就不行了!!!!","topicTitle":null,"description":"是没有安装Microsoft Script Control,就他妈的我安装了Microsoft Script Control但是装好的时候可以用,重启一下电脑就不行了!!!!","id":290263438,"contentResourceId":260035406,"bindContentResourceId":0,"communityId":302,"username":"superbryant","userNickName":"极无宪","userAvatar":"https:\u002F\u002Fprofile-avatar.csdnimg.cn\u002F23e1eacacbd2449fa38c520f742bf343_superbryant.jpg!1","mdContent":null,"parentId":0,"replyName":"","replyNickName":"","bizNo":"bbs","ip":989664042,"status":10,"childCount":0,"topStatus":0,"recommendStatus":0,"userLike":false,"diggCount":0,"childIds":"","createTime":"2011-06-28 09:30:11","updateTime":"2011-06-28 09:31:19","formatTime":"2011-06-28","userRoleHonorary":{"userName":null,"roleId":null,"roleType":null,"roleStatus":null,"honoraryId":null,"roleName":null,"honoraryName":null,"communityNickname":null,"communitySignature":null},"child":null,"communityNickname":null,"communityReplyNickname":null,"rewardInfo":null,"checkRedPacketVO":null,"noDiggCount":null},{"hit":null,"hitMsg":null,"content":"是程序里面有这句"ScpFomual.Language = "VBScript"",出错就在这个地方","topicTitle":null,"description":"是程序里面有这句\"ScpFomual.Language = \"VBScript\"\",出错就在这个地方","id":240215433,"contentResourceId":260035406,"bindContentResourceId":0,"communityId":302,"username":"smbsoft","userNickName":"smbsoft","userAvatar":"https:\u002F\u002Fprofile-avatar.csdnimg.cn\u002Fdefault.jpg!1","mdContent":null,"parentId":0,"replyName":"","replyNickName":"","bizNo":"bbs","ip":977042584,"status":10,"childCount":0,"topStatus":0,"recommendStatus":0,"userLike":false,"diggCount":0,"childIds":"","createTime":"2008-09-19 11:01:06","updateTime":"2008-09-19 11:01:08","formatTime":"2008-09-19","userRoleHonorary":{"userName":null,"roleId":null,"roleType":null,"roleStatus":null,"honoraryId":null,"roleName":null,"honoraryName":null,"communityNickname":null,"communitySignature":null},"child":null,"communityNickname":null,"communityReplyNickname":null,"rewardInfo":null,"checkRedPacketVO":null,"noDiggCount":null},{"hit":null,"hitMsg":null,"content":"我今天也遇到这个问题,大家帮帮忙吧!我的里面有这句"ScpFomual.Language = "VBScript"",是不是没装什么字体?","topicTitle":null,"description":"我今天也遇到这个问题,大家帮帮忙吧!我的里面有这句\"ScpFomual.Language = \"VBScript\"\",是不是没装什么字体?","id":240215383,"contentResourceId":260035406,"bindContentResourceId":0,"communityId":302,"username":"smbsoft","userNickName":"smbsoft","userAvatar":"https:\u002F\u002Fprofile-avatar.csdnimg.cn\u002Fdefault.jpg!1","mdContent":null,"parentId":0,"replyName":"","replyNickName":"","bizNo":"bbs","ip":977125311,"status":10,"childCount":0,"topStatus":0,"recommendStatus":0,"userLike":false,"diggCount":0,"childIds":"","createTime":"2008-09-19 10:59:53","updateTime":"2008-09-19 10:59:54","formatTime":"2008-09-19","userRoleHonorary":{"userName":null,"roleId":null,"roleType":null,"roleStatus":null,"honoraryId":null,"roleName":null,"honoraryName":null,"communityNickname":null,"communitySignature":null},"child":null,"communityNickname":null,"communityReplyNickname":null,"rewardInfo":null,"checkRedPacketVO":null,"noDiggCount":null},{"hit":null,"hitMsg":null,"content":"好象是某些setting有错, 帮你顶吧.","topicTitle":null,"description":"好象是某些setting有错, 帮你顶吧.","id":231048397,"contentResourceId":260035406,"bindContentResourceId":0,"communityId":302,"username":"bwu851","userNickName":"bwu851","userAvatar":"https:\u002F\u002Fprofile-avatar.csdnimg.cn\u002Fdefault.jpg!1","mdContent":null,"parentId":0,"replyName":"","replyNickName":"","bizNo":"bbs","ip":1625512937,"status":10,"childCount":0,"topStatus":0,"recommendStatus":0,"userLike":false,"diggCount":0,"childIds":"","createTime":"2008-08-27 07:47:11","updateTime":"2008-08-27 07:47:15","formatTime":"2008-08-27","userRoleHonorary":{"userName":null,"roleId":null,"roleType":null,"roleStatus":null,"honoraryId":null,"roleName":null,"honoraryName":null,"communityNickname":null,"communitySignature":null},"child":null,"communityNickname":null,"communityReplyNickname":null,"rewardInfo":null,"checkRedPacketVO":null,"noDiggCount":null}],"maxPageSize":3000},"defaultActiveTab":1461,"recommends":[{"url":"https:\u002F\u002Fdownload.csdn.net\u002Fdownload\u002Fyanjin050518\u002F4126629","title":"BobBuilder_app","desc":"Twitter \n Digg \n Facebook \n Del.icio.us \n Reddit \n Stumbleupon \n Newsvine \n Technorati \n Mr. Wong \n Yahoo! \n Google \n Windows Live \n Send as Email \nAdd to your CodeProject bookmarks\n \nDiscuss this article\n85 \nPrint Article\nDatabase » Database » Other databasesLicence CPOL \nFirst Posted 19 Jan 2012 \nViews 24,219 \nDownloads 992 \nBookmarked 74 times \nRaptorDB - The Key Value Store V2\nBy Mehdi Gholam | 8 Mar 2012 | Unedited contribution \nC#.NETDBABeginnerIntermediateAdvanceddatabase \nEven faster Key\u002FValue store nosql embedded database \u003Cem\u003Eengine\u003C\u002Fem\u003E utilizing the new MGIndex data structure with MurMur2 Hashing and WAH Bitmap indexes for duplicates. \n \nSee Also\nMore like this \nMore by this author \nArticle Browse Code Stats Revisions (8) Alternatives \n 4.95 (56 votes) \n\n\n1 \n2 \n3 \n4 \n5 \n\n4.95\u002F5 - 56 votes\nμ 4.95, σa 1.05 [?] \nIs your email address OK? You are signed up for our newsletters but your email address is either unconfirmed, or has not been reconfirmed in a long time. Please click here to have a confirmation email sent so we can confirm your email address and start sending you newsletters again. Alternatively, you can update your sub\u003Cem\u003Escript\u003C\u002Fem\u003Eions.\n \n \nAdd your own\nalternative version \n\nIntroduction\nWhat is RaptorDB?\nFeatures\nWhy another data structure?\nThe problem with a b+tree\nRequirements of a good index structure\nThe MGIndex\nPage Splits\nInteresting side effects of MGIndex \nThe road not taken \u002F the road taken and doubled back!\nPerformance Tests\nComparing B+tree and MGIndex\nReally big data sets!\nIndex parameter tuning\nPerformance Tests - v2.3\nUsing the Code\nDifferences to v1\nUsing RaptorDBString and RaptorDBGuid\nGlobal parameters\nRaptorDB interface\nNon-clean shutdowns \nRemoving Keys\nUnit tests\nFile Formats\nFile Format : *.mgdat\nFile Format : *.mgbmp \nFile Format : *.mgidx\nFile Format : *.mgbmr , *.mgrec\nHistory\n Download RaptorDB_v2.0.zip - 38.7 KB \nDownload RaptorDB_v2.1.zip - 39 KB \nDownload RaptorDB_v2.2.zip - 39 KB \nDownload RaptorDB_v2.3.zip - 39.6 KB \nD","createTime":"2012-03-09 15:39:33","dataReportQuery":"spm=1035.2023.3001.6557&utm_medium=distribute.pc_relevant_bbs_down_v2.none-task-download-2~default~OPENSEARCH~Paid-1-4126629-bbs-260035406.264^v3^pc_relevant_bbs_down_v2_default&depth_1-utm_source=distribute.pc_relevant_bbs_down_v2.none-task-download-2~default~OPENSEARCH~Paid-1-4126629-bbs-260035406.264^v3^pc_relevant_bbs_down_v2_default","dataReportClick":"{\"mod\":\"popu_645\",\"index\":\"1\",\"dest\":\"https:\u002F\u002Fdownload.csdn.net\u002Fdownload\u002Fyanjin050518\u002F4126629\",\"strategy\":\"2~default~OPENSEARCH~Paid\",\"extra\":\"{\\\"utm_medium\\\":\\\"distribute.pc_relevant_bbs_down_v2.none-task-download-2~default~OPENSEARCH~Paid-1-4126629-bbs-260035406.264^v3^pc_relevant_bbs_down_v2_default\\\",\\\"dist_request_id\\\":\\\"1714024095707_94894\\\"}\",\"spm\":\"1035.2023.3001.6557\"}","dataReportView":"{\"mod\":\"popu_645\",\"index\":\"1\",\"dest\":\"https:\u002F\u002Fdownload.csdn.net\u002Fdownload\u002Fyanjin050518\u002F4126629\",\"strategy\":\"2~default~OPENSEARCH~Paid\",\"extra\":\"{\\\"utm_medium\\\":\\\"distribute.pc_relevant_bbs_down_v2.none-task-download-2~default~OPENSEARCH~Paid-1-4126629-bbs-260035406.264^v3^pc_relevant_bbs_down_v2_default\\\",\\\"dist_request_id\\\":\\\"1714024095707_94894\\\"}\",\"spm\":\"1035.2023.3001.6557\"}","type":"download"},{"url":"https:\u002F\u002Fdownload.csdn.net\u002Fdownload\u002Flcszhzs\u002F4621444","title":"JSP Simple Examples","desc":"JSP Simple Examples\nIndex 1.\n\nCreating a String\nIn jsp we \u003Cem\u003Ecreate\u003C\u002Fem\u003E a string as we does in a java. In jsp we can declare it inside the declaration directive or a \u003Cem\u003Escript\u003C\u002Fem\u003Elet directive.\n\nString Length\nIn java, Strings are objects that belong to class java.\u003Cem\u003Elan\u003C\u002Fem\u003Eg.String. A string is a sequence of simple characters. We can get the length of the string by using the method length() of java.\u003Cem\u003Elan\u003C\u002Fem\u003Eg.String.\n\nDeclaring string array in java\nAn array is the collection of same data type. Suppose if we have a declare an array of type String, then it will store only the String value not any other data type. When we have a closely related data of the same type and scope, it is better to declare it in an array.\n\n\nMultidimensional array java\nA two dimensional array can be thought as a grid of rows and columns. The first array will reflect to a row and the second one is column.\n\n\nint array\nArray is a collection of same data type. Suppose if we have declared an array of type int then the array will take only the int values and not any other data types. We can find find out the length of the variable by using the variable length\n.\n\nJSP string array\nString array cannot hold numbers or vice- versa. Arrays can only store the type of data \u003Cem\u003Especified\u003C\u002Fem\u003E at the time of declaring the array variable. \n\n\nCustom exceptions\nCustom Exception inherits the properties from the Exception class. Whenever we have declare our own exceptions then we call it custom exceptions.\n\n\nThrowing an exception\nAll methods use the throw statement to throw an exception. The throw statement requires a single argument a throwable object. Here is an example of a throw statement.\n\n\nArrayindexoutofboundsexception\nArrayIndexOutOfBoundException is thrown when we have to indicate that an array has been accessed with an illegal index.\n\n\nprintStackTrace in jsp\nprintStackTrace is a method of the Throwable class. By using this method we can get more information about the error process if we print a stack trace from the exception.\n\n\nRuntime Errors\nErrors are arised when there is any logic problem with the logic of the program.\n\n\nTry catch in jsp\nIn try block we write those code which can throw exception while code execution and when the exception is thrown it is caught inside the catch block.\n\nMultiple try catch\nWe can have more than one try\u002Fcatch block. The most specific exception which can be thrown is written on the top in the catch block following by the less specific least.\n\n\nNested try catch\nWe can declare multiple try blocks inside the try block. The most specific exception which can be thrown is written on the top in the catch block following by the less specific least.\n\n\nkilometers per liter to miles per gallon\nKilometers per liter : The distance traveled by a vehicle which is running on gasoline or diesel fuel in a kilometer.\nMiles per Gallon: The distance traveled by a vehicle which is running on gasoline or diesel fuel in a mile.\n\n\nAscii values table\nASCII stands for American Standard Code for Information Interchange. Computers can only understand numbers, so an ASCII code is the numerical representation of a character such as @, #, $, and so on. ASCII was developed when non- printing characters were rarely used.\n\n\nlife cycle of a jsp page\nLife of the the jsp page is just same as the servlet life cycle. After get translated the jsp file is just like a servlet.\n\n\n\nPage directive attributes\nA directive is a way to give special instructions to the container at page translation time. The page directive is written on the top of the jsp page.\n\n\nHtml tags in jsp\nIn this example we have used the html tag inside the println() method of the out implicit object which is used to write the content on the browser.\n\n\nPassword Controls\nIn this program we are going to know how the server determines whether the password entered by the user is correct or not. This whole process is controlled on the server side.\n\n\nMultiple forms in jsp\nThe form tag \u003Cem\u003Ecreate\u003C\u002Fem\u003Es a form for user input. A form can contain checkboxes, textfields, radio- buttons and many more. Forms are used to pass user- data to a \u003Cem\u003Especified\u003C\u002Fem\u003E URL which is \u003Cem\u003Especified\u003C\u002Fem\u003E in the action attribute of the form tag.\n\n\nInterface in jsp\nIn interface none of its methods are implemented. All the methods are abstract. There is no code associated with an interface. In an interface all the instance methods are public and abstract. Interfaces are always implemented in the class. They add extra behaviors to the class.\n\n\nInheritance in java with example\nInheritance is one of the concept of the Object- Oriented programming. It allows you to define a general class, and later more specialized classes by simply adding some new details.\n\n\nConstructor inheritance\nConstructors are used to \u003Cem\u003Ecreate\u003C\u002Fem\u003E objects from the class. Constructor declaration are just like method declaration, except that they do not have any return type and they use the name of the class. The compiler provides us with a default constructor to the class having no arguments.\n\n\nAbstract classes\nWe does not make a object of the abstract class. This class must be inherited. Unlike interface the abstract class may implement some of the methods defined in the class, but in this class at least one method should be abstract.\n\n\nUsing Super class Variables With Sub-classed Objects \nOne of the strong features of java is that it is follows a OOPs concept, and one of the feature of OOP in java is that, we can assign a subclass object or variable to the variable of the superclass type.\n\n\nLog files\nLog files keeps a records of internet protocol addresses (IP), Http status, date, time, bytes sent, bytes recieved, number of clicks etc.\n\n\nCalculate a factorial by using while loop\nIn this example we are going to find out the factorial of 12 by using the while loop. In while loop the loop will run until the condition we have given gets true.\n\n\nCalculating factorial\nAfter going through this example you will be understand how you can calculate the factorial by using recursion in jsp. To make a program on factorial, firstly it must be clear what is recursion.\n\n\nCelsius Fahrenheit\nCelsius is a unit to measure temperature scale on which water freezes at 0 degree and boiling point is 100 degree. This unit is discovered by Celsius in 1742, a Swedish astronomer and physicist, he has invented the centigrade, or Celsius thermometer divided between the freezing and boiling points of water into 100 parts.\n\n\ncomment in jsp\nIn a jsp we should always try to use jsp- style comments unless you want the comments to appear in the HTML. Jsp comments are converted by the jsp \u003Cem\u003Eengine\u003C\u002Fem\u003E into java comments in the source code of the servlet that implements the Jsp page.\n\n\nHtml tag inside out implicit object\nIn this program we are going to use a html tag inside a out object. out object is used to display the content on the browser. To make this program run use out object inside which define some html code along with the content you want to display on the browser\n\n\nJsp methods\nIn this example we are going to show you how we can declare a method and how we can used it. In this example we are making a method named as addNum(int i, int b) which will take two numbers as its parameters and return integer value.\n\n\nMultiple methods\nJsp is used mainly for presentation logic. In the jsp we can declare methods just like as we declare methods in java classes. Methods can be declared in either declaration directive or we can declare it in \u003Cem\u003Escript\u003C\u002Fem\u003Elet. If we declare method inside declaration directive, then the method is applicable in the whole page.\n\n\nPassing Array method\nArray is a collection of similar data type. It is one of the simplest data structures. Arrays holds equally sized data elements generally of the similar data type.\n\n\nTwo index\nIn this example we will show how we can use two indexes in a for loop. We can solve this problem by using for loop defined inside the \u003Cem\u003Escript\u003C\u002Fem\u003Elet directive.\n\n\nDate in JSP\nTo print a Date in JSP firstly we are importing a class named java.util.Date of the package java.util. This package is imported in the jsp page so that the Date class and its properties can accessed in the JSP page.\n\n\nIf- Else Ladder\nA ladder means a vertical set of steps. It is a computer generated list of pairings used in eliminations.\n\n\nNested If\nWe use the if condition to check if the particular condition is true then it should perform a certain task, and if a particular condition is not true then it should do some other tasks.\n\n\nQuintessential JSP\nQuintessential means representing the perfect example of a class or quality. It is pure and concentrated essence of a substance.\n\n\nInclude File JSP using directive and include action\n\u003C%@ include file = \" \"%\u003E: - This is include directive. This directive has only one attribute named as file, which is used to include a file in the jsp page at the translation time. \n\u003Cjsp:include page = \" \"\u003E:- This is known as the include standard action. This standard action is used to include a file at run time. This standard action is evaluated at the run time.\n\n\nSnoop in JSP\nIt mostly contains the request information, ServletContext initialization parameters, ServetContext attributes, request headers, response headers etc.\n\nsendRedirect In JSP\nsendRedirect() method is a method of HttpServletResponse interface. In sendRedirect() the object of request will be generated again with the location of page which will perform the request of the client.\n\n\nRequest Header in JSP\nWhenever an http client sends a request, it sends the request in the form of get or post method or any other HttpRequest methhods. It can also sends the headers with it.\n\n\nSpecific request headers in JSP\nWhenever an http client sends a request, it can also sends the headers with it. All the headers are optional except Content-length, which is required only for POST request.\n\n\nJava class in JSP\nTo use the class inside the jsp page we need to \u003Cem\u003Ecreate\u003C\u002Fem\u003E an object of the class by using the new operator. At last use the instance of the class to access the methods of the java file.\n\n\nSetting Colors in JSP\nIn Jsp also we can set the background color which we want, the font color can be changed. The table can be coloured . By using the colors code we can give colors according to our wish.\n\n\nSine Table in JSP\nMathematically, the sine of an angle is the ratio of the length of the opposite side to the length of the hypotenuse of an imaginary right triangle having that angle in it.\n\n\nApplet In Jsp\nApplets are small programs or applications written in java. These applets are those small programs that runs on web browsers, usually written in java. We can use the applets in jee also. In jee it runs on the context of web application on a client computer. \n\n\nCreating a Local Variable in JSP\nConsider a situation where we have to declare a variable as local, then we should declare the methods and variables in tag except the declaration directive.\n\n\nMethod in Declaration Tag\nAnything which will be declared inside declaration tag will be applicable within the whole application. We call this tag a Declaration Tag. The syntax of this tag is \u003C%! --------- %\u003E.\n \n\nForward a JSP Page\nThe request object goes to the controller then the controller decides by which jsp or servlet this request will be processed, then the request object is passed to that jsp or servlet and the output is displayed to the browser by the response object.\n\n\nRandom in JSP\nRandom numbers are the numbers that are determined entirely by chance. User does not have any control over the working of random numbers. random() is a method of Math class which extends java.\u003Cem\u003Elan\u003C\u002Fem\u003Eg package.\n\n\nJSP include directive\nBy using the include tag the file will be included in the jsp page at the translation time. In this example we have \u003Cem\u003Ecreate\u003C\u002Fem\u003Ed a jsp file which has to be included in the other jsp file by using the tag \u003C%@ include file = \" \"%\u003E.\n\n\nLiterals in JSP\nLiterals are the values, such as a number or a text string, that are written literally as part of a program code. A literal is a expression of a value, including a number or a text string.\n\n\nPassing Parameter using \u003Cjsp: param\u003E\nRequest parameters can be passed by using \u003Cjsp: param\u003E. This tag contains two attributes: 1) name 2) value.\n\n\nTag Handler\nCustom tags are usually distributed in the form of a tag library, which defines a set of related custom tags and contains the objects that implement the tags. Custom tag libraries allow the java programmer to write code that provides data access and other services, and they make those features available to the jsp author in a simple to use XML- like fashion.\n\n\nUseBean\nSyntax: \u003Cjsp:useBean id= \"nameOfInstance\" scope= \"page | request | session | application\" class= \"package.class\" type= \"package.class \u003E \u003C\u002Fjsp:useBean\u003E.\n\n\nExpression \u003Cem\u003ELan\u003C\u002Fem\u003E\u003Cem\u003Eguage\u003C\u002Fem\u003E In JSP\nEL means the expression \u003Cem\u003Elan\u003C\u002Fem\u003E\u003Cem\u003Eguage\u003C\u002Fem\u003E , it is a simple \u003Cem\u003Elan\u003C\u002Fem\u003E\u003Cem\u003Eguage\u003C\u002Fem\u003E for accessing data, it makes it possible to easily access application data stored in JavaBeans components.\n\n\nEL Basic Arithmetic\nAddition (+), subtraction (-), multiplication (*), division (\u002F or div), and modulus (% or mod) are all supported in Expression \u003Cem\u003ELan\u003C\u002Fem\u003E\u003Cem\u003Eguage\u003C\u002Fem\u003E. Error conditions, like division by zero are handled easily by the expression \u003Cem\u003Elan\u003C\u002Fem\u003E\u003Cem\u003Eguage\u003C\u002Fem\u003E.","createTime":"2012-10-07 08:45:02","dataReportQuery":"spm=1035.2023.3001.6557&utm_medium=distribute.pc_relevant_bbs_down_v2.none-task-download-2~default~OPENSEARCH~Rate-2-4621444-bbs-260035406.264^v3^pc_relevant_bbs_down_v2_default&depth_1-utm_source=distribute.pc_relevant_bbs_down_v2.none-task-download-2~default~OPENSEARCH~Rate-2-4621444-bbs-260035406.264^v3^pc_relevant_bbs_down_v2_default","dataReportClick":"{\"mod\":\"popu_645\",\"index\":\"2\",\"dest\":\"https:\u002F\u002Fdownload.csdn.net\u002Fdownload\u002Flcszhzs\u002F4621444\",\"strategy\":\"2~default~OPENSEARCH~Rate\",\"extra\":\"{\\\"utm_medium\\\":\\\"distribute.pc_relevant_bbs_down_v2.none-task-download-2~default~OPENSEARCH~Rate-2-4621444-bbs-260035406.264^v3^pc_relevant_bbs_down_v2_default\\\",\\\"dist_request_id\\\":\\\"1714024095707_94894\\\"}\",\"spm\":\"1035.2023.3001.6557\"}","dataReportView":"{\"mod\":\"popu_645\",\"index\":\"2\",\"dest\":\"https:\u002F\u002Fdownload.csdn.net\u002Fdownload\u002Flcszhzs\u002F4621444\",\"strategy\":\"2~default~OPENSEARCH~Rate\",\"extra\":\"{\\\"utm_medium\\\":\\\"distribute.pc_relevant_bbs_down_v2.none-task-download-2~default~OPENSEARCH~Rate-2-4621444-bbs-260035406.264^v3^pc_relevant_bbs_down_v2_default\\\",\\\"dist_request_id\\\":\\\"1714024095707_94894\\\"}\",\"spm\":\"1035.2023.3001.6557\"}","type":"download"},{"url":"https:\u002F\u002Fdownload.csdn.net\u002Fdownload\u002Fu012204837\u002F8676379","title":"php.ini-development","desc":"[PHP]\n\n;;;;;;;;;;;;;;;;;;;\n; About php.ini ;\n;;;;;;;;;;;;;;;;;;;\n; PHP's initialization file, generally called php.ini, is responsible for\n; configuring many of the aspects of PHP's behavior.\n\n; PHP attempts to find and load this configuration from a number of locations.\n; The following is a summary of its search order:\n; 1. SAPI module specific location.\n; 2. The PHPRC environment variable. (As of PHP 5.2.0)\n; 3. A number of predefined registry keys on Windows (As of PHP 5.2.0)\n; 4. Current working directory (except CLI)\n; 5. The web server's directory (for SAPI modules), or directory of PHP\n; (otherwise in Windows)\n; 6. The directory from the --with-config-file-path compile time option, or the\n; Windows directory (C:\\windows or C:\\winnt)\n; See the PHP docs for more specific information.\n; http:\u002F\u002Fphp.net\u002Fconfiguration.file\n\n; The syntax of the file is extremely simple. Whitespace and lines\n; beginning with a semicolon are silently ignored (as you probably guessed).\n; Section headers (e.g. [Foo]) are also silently ignored, even though\n; they might mean something in the future.\n\n; Directives following the section heading [PATH=\u002Fwww\u002Fmysite] only\n; apply to PHP files in the \u002Fwww\u002Fmysite directory. Directives\n; following the section heading [HOST=www.example.com] only apply to\n; PHP files served from www.example.com. Directives set in these\n; special sections cannot be overridden by user-defined INI files or\n; at runtime. Currently, [PATH=] and [HOST=] sections only work under\n; CGI\u002FFastCGI.\n; http:\u002F\u002Fphp.net\u002Fini.sections\n\n; Directives are \u003Cem\u003Especified\u003C\u002Fem\u003E using the following syntax:\n; directive = value\n; Directive names are *case sensitive* - foo=bar is different from FOO=bar.\n; Directives are variables used to configure PHP or PHP extensions.\n; There is no name validation. If PHP can't find an expected\n; directive because it is not set or is mistyped, a default value will be used.\n\n; The value can be a string, a number, a PHP constant (e.g. E_ALL or M_PI), one\n; of the INI constants (On, Off, True, False, Yes, No and None) or an expression\n; (e.g. E_ALL & ~E_NOTICE), a quoted string (\"bar\"), or a reference to a\n; previously set variable or directive (e.g. ${foo})\n\n; Expressions in the INI file are limited to bitwise operators and parentheses:\n; | bitwise OR\n; ^ bitwise XOR\n; & bitwise AND\n; ~ bitwise NOT\n; ! boolean NOT\n\n; Boolean flags can be turned on using the values 1, On, True or Yes.\n; They can be turned off using the values 0, Off, False or No.\n\n; An empty string can be denoted by simply not writing anything after the equal\n; sign, or by using the None keyword:\n\n; foo = ; sets foo to an empty string\n; foo = None ; sets foo to an empty string\n; foo = \"None\" ; sets foo to the string 'None'\n\n; If you use constants in your value, and these constants belong to a\n; dynamically loaded extension (either a PHP extension or a Zend extension),\n; you may only use these constants *after* the line that loads the extension.\n\n;;;;;;;;;;;;;;;;;;;\n; About this file ;\n;;;;;;;;;;;;;;;;;;;\n; PHP comes packaged with two INI files. One that is recommended to be used\n; in production environments and one that is recommended to be used in\n; development environments.\n\n; php.ini-production contains settings which hold security, performance and\n; best practices at its core. But please be aware, these settings may break\n; compatibility with older or less security conscience applications. We\n; recommending using the production ini in production and testing environments.\n\n; php.ini-development is very similar to its production variant, except it's\n; much more verbose when it comes to errors. We recommending using the\n; development version only in development environments as errors shown to\n; application users can inadvertently leak otherwise secure information.\n\n; This is php.ini-development INI file.\n\n;;;;;;;;;;;;;;;;;;;\n; Quick Reference ;\n;;;;;;;;;;;;;;;;;;;\n; The following are all the settings which are different in either the production\n; or development versions of the INIs with respect to PHP's default behavior.\n; Please see the actual settings later in the document for more details as to why\n; we recommend these changes in PHP's behavior.\n\n; display_errors\n; Default Value: On\n; Development Value: On\n; Production Value: Off\n\n; display_startup_errors\n; Default Value: Off\n; Development Value: On\n; Production Value: Off\n\n; error_reporting\n; Default Value: E_ALL & ~E_NOTICE & ~E_STRICT & ~E_DEPRECATED\n; Development Value: E_ALL\n; Production Value: E_ALL & ~E_DEPRECATED & ~E_STRICT\n\n; html_errors\n; Default Value: On\n; Development Value: On\n; Production value: On\n\n; log_errors\n; Default Value: Off\n; Development Value: On\n; Production Value: On\n\n; max_input_time\n; Default Value: -1 (Unlimited)\n; Development Value: 60 (60 seconds)\n; Production Value: 60 (60 seconds)\n\n; output_buffering\n; Default Value: Off\n; Development Value: 4096\n; Production Value: 4096\n\n; register_argc_argv\n; Default Value: On\n; Development Value: Off\n; Production Value: Off\n\n; request_order\n; Default Value: None\n; Development Value: \"GP\"\n; Production Value: \"GP\"\n\n; session.gc_divisor\n; Default Value: 100\n; Development Value: 1000\n; Production Value: 1000\n\n; session.hash_bits_per_character\n; Default Value: 4\n; Development Value: 5\n; Production Value: 5\n\n; short_open_tag\n; Default Value: On\n; Development Value: Off\n; Production Value: Off\n\n; track_errors\n; Default Value: Off\n; Development Value: On\n; Production Value: Off\n\n; url_rewriter.tags\n; Default Value: \"a=href,area=href,frame=src,form=,fieldset=\"\n; Development Value: \"a=href,area=href,frame=src,input=src,form=fakeentry\"\n; Production Value: \"a=href,area=href,frame=src,input=src,form=fakeentry\"\n\n; variables_order\n; Default Value: \"EGPCS\"\n; Development Value: \"GPCS\"\n; Production Value: \"GPCS\"\n\n;;;;;;;;;;;;;;;;;;;;\n; php.ini Options ;\n;;;;;;;;;;;;;;;;;;;;\n; Name for user-defined php.ini (.htaccess) files. Default is \".user.ini\"\n;user_ini.filename = \".user.ini\"\n\n; To disable this feature set this option to empty value\n;user_ini.filename =\n\n; TTL for user-defined php.ini files (time-to-live) in seconds. Default is 300 seconds (5 minutes)\n;user_ini.cache_ttl = 300\n\n;;;;;;;;;;;;;;;;;;;;\n; \u003Cem\u003ELan\u003C\u002Fem\u003E\u003Cem\u003Eguage\u003C\u002Fem\u003E Options ;\n;;;;;;;;;;;;;;;;;;;;\n\n; Enable the PHP \u003Cem\u003Escript\u003C\u002Fem\u003Eing \u003Cem\u003Elan\u003C\u002Fem\u003E\u003Cem\u003Eguage\u003C\u002Fem\u003E \u003Cem\u003Eengine\u003C\u002Fem\u003E under Apache.\n; http:\u002F\u002Fphp.net\u002F\u003Cem\u003Eengine\u003C\u002Fem\u003E\n\u003Cem\u003Eengine\u003C\u002Fem\u003E = On\n\n; This directive determines whether or not PHP will recognize code between\n; \u003C? and ?\u003E tags as PHP source which should be processed as such. It is\n; generally recommended that \u003C?php and ?\u003E should be used and that this feature\n; should be disabled, as enabling it may result in issues when generating XML\n; documents, however this remains supported for backward compatibility reasons.\n; Note that this directive does not control the \u003C?= shorthand tag, which can be\n; used regardless of this directive.\n; Default Value: On\n; Development Value: Off\n; Production Value: Off\n; http:\u002F\u002Fphp.net\u002Fshort-open-tag\nshort_open_tag = Off\n\n; Allow ASP-style \u003C% %\u003E tags.\n; http:\u002F\u002Fphp.net\u002Fasp-tags\nasp_tags = Off\n\n; The number of significant digits displayed in floating point numbers.\n; http:\u002F\u002Fphp.net\u002Fprecision\nprecision = 14\n\n; Output buffering is a mechanism for controlling how much output data\n; (excluding headers and cookies) PHP should keep internally before pushing that\n; data to the client. If your application's output exceeds this setting, PHP\n; will send that data in chunks of roughly the size you specify.\n; Turning on this setting and managing its maximum buffer size can yield some\n; interesting side-effects depending on your application and web server.\n; You may be able to send headers and cookies after you've already sent output\n; through print or echo. You also may see performance benefits if your server is\n; emitting less packets due to buffered output versus PHP streaming the output\n; as it gets it. On production servers, 4096 bytes is a good setting for performance\n; reasons.\n; Note: Output buffering can also be controlled via Output Buffering Control\n; functions.\n; Possible Values:\n; On = Enabled and buffer is unlimited. (Use with caution)\n; Off = Disabled\n; Integer = Enables the buffer and sets its maximum size in bytes.\n; Note: This directive is hardcoded to Off for the CLI SAPI\n; Default Value: Off\n; Development Value: 4096\n; Production Value: 4096\n; http:\u002F\u002Fphp.net\u002Foutput-buffering\noutput_buffering = 4096\n\n; You can redirect all of the output of your \u003Cem\u003Escript\u003C\u002Fem\u003Es to a function. For\n; example, if you set output_handler to \"mb_output_handler\", character\n; encoding will be transparently converted to the \u003Cem\u003Especified\u003C\u002Fem\u003E encoding.\n; Setting any output handler automatically turns on output buffering.\n; Note: People who wrote portable \u003Cem\u003Escript\u003C\u002Fem\u003Es should not depend on this ini\n; directive. Instead, explicitly set the output handler using ob_start().\n; Using this ini directive may cause problems unless you know what \u003Cem\u003Escript\u003C\u002Fem\u003E\n; is doing.\n; Note: You cannot use both \"mb_output_handler\" with \"ob_iconv_handler\"\n; and you cannot use both \"ob_gzhandler\" and \"zlib.output_compression\".\n; Note: output_handler must be empty if this is set 'On' !!!!\n; Instead you must use zlib.output_handler.\n; http:\u002F\u002Fphp.net\u002Foutput-handler\n;output_handler =\n\n; Transparent output compression using the zlib library\n; Valid values for this option are 'off', 'on', or a specific buffer size\n; to be used for compression (default is 4KB)\n; Note: Resulting chunk size may vary due to nature of compression. PHP\n; outputs chunks that are few hundreds bytes each as a result of\n; compression. If you prefer a larger chunk size for better\n; performance, enable output_buffering in addition.\n; Note: You need to use zlib.output_handler instead of the standard\n; output_handler, or otherwise the output will be corrupted.\n; http:\u002F\u002Fphp.net\u002Fzlib.output-compression\nzlib.output_compression = Off\n\n; http:\u002F\u002Fphp.net\u002Fzlib.output-compression-level\n;zlib.output_compression_level = -1\n\n; You cannot specify additional output handlers if zlib.output_compression\n; is activated here. This setting does the same as output_handler but in\n; a different order.\n; http:\u002F\u002Fphp.net\u002Fzlib.output-handler\n;zlib.output_handler =\n\n; Implicit flush tells PHP to tell the output layer to flush itself\n; automatically after every output block. This is equivalent to calling the\n; PHP function flush() after each and every call to print() or echo() and each\n; and every HTML block. Turning this option on has serious performance\n; implications and is generally recommended for debugging purposes only.\n; http:\u002F\u002Fphp.net\u002Fimplicit-flush\n; Note: This directive is hardcoded to On for the CLI SAPI\nimplicit_flush = Off\n\n; The unserialize callback function will be called (with the undefined class'\n; name as parameter), if the unserializer finds an undefined class\n; which should be instantiated. A warning appears if the \u003Cem\u003Especified\u003C\u002Fem\u003E function is\n; not defined, or if the function doesn't include\u002Fimplement the missing class.\n; So only set this entry, if you really want to implement such a\n; callback-function.\nunserialize_callback_func =\n\n; When floats & doubles are serialized store serialize_precision significant\n; digits after the floating point. The default value ensures that when floats\n; are decoded with unserialize, the data will remain the same.\nserialize_precision = 17\n\n; open_basedir, if set, limits all file operations to the defined directory\n; and below. This directive makes most sense if used in a per-directory\n; or per-virtualhost web server configuration file. This directive is\n; *NOT* affected by whether Safe Mode is turned On or Off.\n; http:\u002F\u002Fphp.net\u002Fopen-basedir\n;open_basedir =\n\n; This directive allows you to disable certain functions for security reasons.\n; It receives a comma-delimited list of function names. This directive is\n; *NOT* affected by whether Safe Mode is turned On or Off.\n; http:\u002F\u002Fphp.net\u002Fdisable-functions\ndisable_functions =\n\n; This directive allows you to disable certain classes for security reasons.\n; It receives a comma-delimited list of class names. This directive is\n; *NOT* affected by whether Safe Mode is turned On or Off.\n; http:\u002F\u002Fphp.net\u002Fdisable-classes\ndisable_classes =\n\n; Colors for Syntax Highlighting mode. Anything that's acceptable in\n; \u003Cspan style=\"color: ???????\"\u003E would work.\n; http:\u002F\u002Fphp.net\u002Fsyntax-highlighting\n;highlight.string = #DD0000\n;highlight.comment = #FF9900\n;highlight.keyword = #007700\n;highlight.default = #0000BB\n;highlight.html = #000000\n\n; If enabled, the request will be allowed to complete even if the user aborts\n; the request. Consider enabling it if executing long requests, which may end up\n; being interrupted by the user or a browser timing out. PHP's default behavior\n; is to disable this feature.\n; http:\u002F\u002Fphp.net\u002Fignore-user-abort\n;ignore_user_abort = On\n\n; Determines the size of the realpath cache to be used by PHP. This value should\n; be increased on systems where PHP opens many files to reflect the quantity of\n; the file operations performed.\n; http:\u002F\u002Fphp.net\u002Frealpath-cache-size\n;realpath_cache_size = 16k\n\n; Duration of time, in seconds for which to cache realpath information for a given\n; file or directory. For systems with rarely changing files, consider increasing this\n; value.\n; http:\u002F\u002Fphp.net\u002Frealpath-cache-ttl\n;realpath_cache_ttl = 120\n\n; Enables or disables the circular reference collector.\n; http:\u002F\u002Fphp.net\u002Fzend.enable-gc\nzend.enable_gc = On\n\n; If enabled, \u003Cem\u003Escript\u003C\u002Fem\u003Es may be written in encodings that are incompatible with\n; the scanner. CP936, Big5, CP949 and Shift_JIS are the examples of such\n; encodings. To use this feature, mbstring extension must be enabled.\n; Default: Off\n;zend.multibyte = Off\n\n; Allows to set the default encoding for the \u003Cem\u003Escript\u003C\u002Fem\u003Es. This value will be used\n; unless \"declare(encoding=...)\" directive appears at the top of the \u003Cem\u003Escript\u003C\u002Fem\u003E.\n; Only affects if zend.multibyte is set.\n; Default: \"\"\n;zend.\u003Cem\u003Escript\u003C\u002Fem\u003E_encoding =\n\n;;;;;;;;;;;;;;;;;\n; Miscel\u003Cem\u003Elan\u003C\u002Fem\u003Eeous ;\n;;;;;;;;;;;;;;;;;\n\n; Decides whether PHP may expose the fact that it is installed on the server\n; (e.g. by adding its signature to the Web server header). It is no security\n; threat in any way, but it makes it possible to determine whether you use PHP\n; on your server or not.\n; http:\u002F\u002Fphp.net\u002Fexpose-php\nexpose_php = On\n\n;;;;;;;;;;;;;;;;;;;\n; Resource Limits ;\n;;;;;;;;;;;;;;;;;;;\n\n; Maximum execution time of each \u003Cem\u003Escript\u003C\u002Fem\u003E, in seconds\n; http:\u002F\u002Fphp.net\u002Fmax-execution-time\n; Note: This directive is hardcoded to 0 for the CLI SAPI\nmax_execution_time = 30\n\n; Maximum amount of time each \u003Cem\u003Escript\u003C\u002Fem\u003E may spend parsing request data. It's a good\n; idea to limit this time on productions servers in order to eliminate unexpectedly\n; long running \u003Cem\u003Escript\u003C\u002Fem\u003Es.\n; Note: This directive is hardcoded to -1 for the CLI SAPI\n; Default Value: -1 (Unlimited)\n; Development Value: 60 (60 seconds)\n; Production Value: 60 (60 seconds)\n; http:\u002F\u002Fphp.net\u002Fmax-input-time\nmax_input_time = 60\n\n; Maximum input variable nesting level\n; http:\u002F\u002Fphp.net\u002Fmax-input-nesting-level\n;max_input_nesting_level = 64\n\n; How many GET\u002FPOST\u002FCOOKIE input variables may be accepted\n; max_input_vars = 1000\n\n; Maximum amount of memory a \u003Cem\u003Escript\u003C\u002Fem\u003E may consume (128MB)\n; http:\u002F\u002Fphp.net\u002Fmemory-limit\nmemory_limit = 128M\n\n;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;\n; Error handling and logging ;\n;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;\n\n; This directive informs PHP of which errors, warnings and notices you would like\n; it to take action for. The recommended way of setting values for this\n; directive is through the use of the error level constants and bitwise\n; operators. The error level constants are below here for convenience as well as\n; some common settings and their meanings.\n; By default, PHP is set to take action on all errors, notices and warnings EXCEPT\n; those related to E_NOTICE and E_STRICT, which together cover best practices and\n; recommended coding standards in PHP. For performance reasons, this is the\n; recommend error reporting setting. Your production server shouldn't be wasting\n; resources complaining about best practices and coding standards. That's what\n; development servers and development settings are for.\n; Note: The php.ini-development file has this setting as E_ALL. This\n; means it pretty much reports everything which is exactly what you want during\n; development and early testing.\n;\n; Error Level Constants:\n; E_ALL - All errors and warnings (includes E_STRICT as of PHP 5.4.0)\n; E_ERROR - fatal run-time errors\n; E_RECOVERABLE_ERROR - almost fatal run-time errors\n; E_WARNING - run-time warnings (non-fatal errors)\n; E_PARSE - compile-time parse errors\n; E_NOTICE - run-time notices (these are warnings which often result\n; from a bug in your code, but it's possible that it was\n; intentional (e.g., using an uninitialized variable and\n; relying on the fact it's automatically initialized to an\n; empty string)\n; E_STRICT - run-time notices, enable to have PHP suggest changes\n; to your code which will ensure the best interoperability\n; and forward compatibility of your code\n; E_CORE_ERROR - fatal errors that occur during PHP's initial startup\n; E_CORE_WARNING - warnings (non-fatal errors) that occur during PHP's\n; initial startup\n; E_COMPILE_ERROR - fatal compile-time errors\n; E_COMPILE_WARNING - compile-time warnings (non-fatal errors)\n; E_USER_ERROR - user-generated error message\n; E_USER_WARNING - user-generated warning message\n; E_USER_NOTICE - user-generated notice message\n; E_DEPRECATED - warn about code that will not work in future versions\n; of PHP\n; E_USER_DEPRECATED - user-generated deprecation warnings\n;\n; Common Values:\n; E_ALL (Show all errors, warnings and notices including coding standards.)\n; E_ALL & ~E_NOTICE (Show all errors, except for notices)\n; E_ALL & ~E_NOTICE & ~E_STRICT (Show all errors, except for notices and coding standards warnings.)\n; E_COMPILE_ERROR|E_RECOVERABLE_ERROR|E_ERROR|E_CORE_ERROR (Show only errors)\n; Default Value: E_ALL & ~E_NOTICE & ~E_STRICT & ~E_DEPRECATED\n; Development Value: E_ALL\n; Production Value: E_ALL & ~E_DEPRECATED & ~E_STRICT\n; http:\u002F\u002Fphp.net\u002Ferror-reporting\nerror_reporting = E_ALL\n\n; This directive controls whether or not and where PHP will output errors,\n; notices and warnings too. Error output is very useful during development, but\n; it could be very dangerous in production environments. Depending on the code\n; which is triggering the error, sensitive information could potentially leak\n; out of your application such as database usernames and passwords or worse.\n; It's recommended that errors be logged on production servers rather than\n; having the errors sent to STDOUT.\n; Possible Values:\n; Off = Do not display any errors\n; stderr = Display errors to STDERR (affects only CGI\u002FCLI binaries!)\n; On or stdout = Display errors to STDOUT\n; Default Value: On\n; Development Value: On\n; Production Value: Off\n; http:\u002F\u002Fphp.net\u002Fdisplay-errors\ndisplay_errors = On\n\n; The display of errors which occur during PHP's startup sequence are handled\n; separately from display_errors. PHP's default behavior is to suppress those\n; errors from clients. Turning the display of startup errors on can be useful in\n; debugging configuration problems. But, it's strongly recommended that you\n; leave this setting off on production servers.\n; Default Value: Off\n; Development Value: On\n; Production Value: Off\n; http:\u002F\u002Fphp.net\u002Fdisplay-startup-errors\ndisplay_startup_errors = On\n\n; Besides displaying errors, PHP can also log errors to locations such as a\n; server-specific log, STDERR, or a location \u003Cem\u003Especified\u003C\u002Fem\u003E by the error_log\n; directive found below. While errors should not be displayed on productions\n; servers they should still be monitored and logging is a great way to do that.\n; Default Value: Off\n; Development Value: On\n; Production Value: On\n; http:\u002F\u002Fphp.net\u002Flog-errors\nlog_errors = On\n\n; Set maximum length of log_errors. In error_log information about the source is\n; added. The default is 1024 and 0 allows to not apply any maximum length at all.\n; http:\u002F\u002Fphp.net\u002Flog-errors-max-len\nlog_errors_max_len = 1024\n\n; Do not log repeated messages. Repeated errors must occur in same file on same\n; line unless ignore_repeated_source is set true.\n; http:\u002F\u002Fphp.net\u002Fignore-repeated-errors\nignore_repeated_errors = Off\n\n; Ignore source of message when ignoring repeated messages. When this setting\n; is On you will not log errors with repeated messages from different files or\n; source lines.\n; http:\u002F\u002Fphp.net\u002Fignore-repeated-source\nignore_repeated_source = Off\n\n; If this parameter is set to Off, then memory leaks will not be shown (on\n; stdout or in the log). This has only effect in a debug compile, and if\n; error reporting includes E_WARNING in the allowed list\n; http:\u002F\u002Fphp.net\u002Freport-memleaks\nreport_memleaks = On\n\n; This setting is on by default.\n;report_zend_debug = 0\n\n; Store the last error\u002Fwarning message in $php_errormsg (boolean). Setting this value\n; to On can assist in debugging and is appropriate for development servers. It should\n; however be disabled on production servers.\n; Default Value: Off\n; Development Value: On\n; Production Value: Off\n; http:\u002F\u002Fphp.net\u002Ftrack-errors\ntrack_errors = On\n\n; Turn off normal error reporting and emit XML-RPC error XML\n; http:\u002F\u002Fphp.net\u002Fxmlrpc-errors\n;xmlrpc_errors = 0\n\n; An XML-RPC faultCode\n;xmlrpc_error_number = 0\n\n; When PHP displays or logs an error, it has the capability of formatting the\n; error message as HTML for easier reading. This directive controls whether\n; the error message is formatted as HTML or not.\n; Note: This directive is hardcoded to Off for the CLI SAPI\n; Default Value: On\n; Development Value: On\n; Production value: On\n; http:\u002F\u002Fphp.net\u002Fhtml-errors\nhtml_errors = On\n\n; If html_errors is set to On *and* docref_root is not empty, then PHP\n; produces clickable error messages that direct to a page describing the error\n; or function causing the error in detail.\n; You can download a copy of the PHP manual from http:\u002F\u002Fphp.net\u002Fdocs\n; and change docref_root to the base URL of your local copy including the\n; leading '\u002F'. You must also specify the file extension being used including\n; the dot. PHP's default behavior is to leave these settings empty, in which\n; case no links to documentation are generated.\n; Note: Never use this feature for production boxes.\n; http:\u002F\u002Fphp.net\u002Fdocref-root\n; Examples\n;docref_root = \"\u002Fphpmanual\u002F\"\n\n; http:\u002F\u002Fphp.net\u002Fdocref-ext\n;docref_ext = .html\n\n; String to output before an error message. PHP's default behavior is to leave\n; this setting b\u003Cem\u003Elan\u003C\u002Fem\u003Ek.\n; http:\u002F\u002Fphp.net\u002Ferror-prepend-string\n; Example:\n;error_prepend_string = \"\u003Cspan style='color: #ff0000'\u003E\"\n\n; String to output after an error message. PHP's default behavior is to leave\n; this setting b\u003Cem\u003Elan\u003C\u002Fem\u003Ek.\n; http:\u002F\u002Fphp.net\u002Ferror-append-string\n; Example:\n;error_append_string = \"\u003C\u002Fspan\u003E\"\n\n; Log errors to \u003Cem\u003Especified\u003C\u002Fem\u003E file. PHP's default behavior is to leave this value\n; empty.\n; http:\u002F\u002Fphp.net\u002Ferror-log\n; Example:\n;error_log = php_errors.log\n; Log errors to syslog (Event Log on Windows).\n;error_log = syslog\n\n;windows.show_crt_warning\n; Default value: 0\n; Development value: 0\n; Production value: 0\n\n;;;;;;;;;;;;;;;;;\n; Data Handling ;\n;;;;;;;;;;;;;;;;;\n\n; The separator used in PHP generated URLs to separate arguments.\n; PHP's default setting is \"&\".\n; http:\u002F\u002Fphp.net\u002Farg-separator.output\n; Example:\n;arg_separator.output = \"&\"\n\n; List of separator(s) used by PHP to parse input URLs into variables.\n; PHP's default setting is \"&\".\n; NOTE: Every character in this directive is considered as separator!\n; http:\u002F\u002Fphp.net\u002Farg-separator.input\n; Example:\n;arg_separator.input = \";&\"\n\n; This directive determines which super global arrays are registered when PHP\n; starts up. G,P,C,E & S are abbreviations for the following respective super\n; globals: GET, POST, COOKIE, ENV and SERVER. There is a performance penalty\n; paid for the registration of these arrays and because ENV is not as commonly\n; used as the others, ENV is not recommended on productions servers. You\n; can still get access to the environment variables through getenv() should you\n; need to.\n; Default Value: \"EGPCS\"\n; Development Value: \"GPCS\"\n; Production Value: \"GPCS\";\n; http:\u002F\u002Fphp.net\u002Fvariables-order\nvariables_order = \"GPCS\"\n\n; This directive determines which super global data (G,P,C,E & S) should\n; be registered into the super global array REQUEST. If so, it also determines\n; the order in which that data is registered. The values for this directive are\n; \u003Cem\u003Especified\u003C\u002Fem\u003E in the same manner as the variables_order directive, EXCEPT one.\n; Leaving this value empty will cause PHP to use the value set in the\n; variables_order directive. It does not mean it will leave the super globals\n; array REQUEST empty.\n; Default Value: None\n; Development Value: \"GP\"\n; Production Value: \"GP\"\n; http:\u002F\u002Fphp.net\u002Frequest-order\nrequest_order = \"GP\"\n\n; This directive determines whether PHP registers $argv & $argc each time it\n; runs. $argv contains an array of all the arguments passed to PHP when a \u003Cem\u003Escript\u003C\u002Fem\u003E\n; is invoked. $argc contains an integer representing the number of arguments\n; that were passed when the \u003Cem\u003Escript\u003C\u002Fem\u003E was invoked. These arrays are extremely\n; useful when running \u003Cem\u003Escript\u003C\u002Fem\u003Es from the command line. When this directive is\n; enabled, registering these variables consumes CPU cycles and memory each time\n; a \u003Cem\u003Escript\u003C\u002Fem\u003E is executed. For performance reasons, this feature should be disabled\n; on production servers.\n; Note: This directive is hardcoded to On for the CLI SAPI\n; Default Value: On\n; Development Value: Off\n; Production Value: Off\n; http:\u002F\u002Fphp.net\u002Fregister-argc-argv\nregister_argc_argv = Off\n\n; When enabled, the ENV, REQUEST and SERVER variables are \u003Cem\u003Ecreate\u003C\u002Fem\u003Ed when they're\n; first used (Just In Time) instead of when the \u003Cem\u003Escript\u003C\u002Fem\u003E starts. If these\n; variables are not used within a \u003Cem\u003Escript\u003C\u002Fem\u003E, having this directive on will result\n; in a performance gain. The PHP directive register_argc_argv must be disabled\n; for this directive to have any affect.\n; http:\u002F\u002Fphp.net\u002Fauto-globals-jit\nauto_globals_jit = On\n\n; Whether PHP will read the POST data.\n; This option is enabled by default.\n; Most likely, you won't want to disable this option globally. It causes $_POST\n; and $_FILES to always be empty; the only way you will be able to read the\n; POST data will be through the php:\u002F\u002Finput stream wrapper. This can be useful\n; to proxy requests or to process the POST data in a memory efficient fashion.\n; http:\u002F\u002Fphp.net\u002Fenable-post-data-reading\n;enable_post_data_reading = Off\n\n; Maximum size of POST data that PHP will accept.\n; Its value may be 0 to disable the limit. It is ignored if POST data reading\n; is disabled through enable_post_data_reading.\n; http:\u002F\u002Fphp.net\u002Fpost-max-size\npost_max_size = 8M\n\n; Automatically add files before PHP document.\n; http:\u002F\u002Fphp.net\u002Fauto-prepend-file\nauto_prepend_file =\n\n; Automatically add files after PHP document.\n; http:\u002F\u002Fphp.net\u002Fauto-append-file\nauto_append_file =\n\n; By default, PHP will output a character encoding using\n; the Content-type: header. To disable sending of the charset, simply\n; set it to be empty.\n;\n; PHP's built-in default is text\u002Fhtml\n; http:\u002F\u002Fphp.net\u002Fdefault-mimetype\ndefault_mimetype = \"text\u002Fhtml\"\n\n; PHP's default character set is set to empty.\n; http:\u002F\u002Fphp.net\u002Fdefault-charset\n;default_charset = \"UTF-8\"\n\n; Always populate the $HTTP_RAW_POST_DATA variable. PHP's default behavior is\n; to disable this feature. If post reading is disabled through\n; enable_post_data_reading, $HTTP_RAW_POST_DATA is *NOT* populated.\n; http:\u002F\u002Fphp.net\u002Falways-populate-raw-post-data\n;always_populate_raw_post_data = On\n\n;;;;;;;;;;;;;;;;;;;;;;;;;\n; Paths and Directories ;\n;;;;;;;;;;;;;;;;;;;;;;;;;\n\n; UNIX: \"\u002Fpath1:\u002Fpath2\"\n;include_path = \".:\u002Fphp\u002Fincludes\"\n;\n; Windows: \"\\path1;\\path2\"\n;include_path = \".;c:\\php\\includes\"\n;\n; PHP's default setting for include_path is \".;\u002Fpath\u002Fto\u002Fphp\u002Fpear\"\n; http:\u002F\u002Fphp.net\u002Finclude-path\n\n; The root of the PHP pages, used only if nonempty.\n; if PHP was not compiled with FORCE_REDIRECT, you SHOULD set doc_root\n; if you are running php as a CGI under any web server (other than IIS)\n; see documentation for security issues. The alternate is to use the\n; cgi.force_redirect configuration below\n; http:\u002F\u002Fphp.net\u002Fdoc-root\ndoc_root =\n\n; The directory under which PHP opens the \u003Cem\u003Escript\u003C\u002Fem\u003E using \u002F~username used only\n; if nonempty.\n; http:\u002F\u002Fphp.net\u002Fuser-dir\nuser_dir =\n\n; Directory in which the loadable extensions (modules) reside.\n; http:\u002F\u002Fphp.net\u002Fextension-dir\n; extension_dir = \".\u002F\"\n; On windows:\n; extension_dir = \"ext\"\n\n; Whether or not to enable the dl() function. The dl() function does NOT work\n; properly in multithreaded servers, such as IIS or Zeus, and is automatically\n; disabled on them.\n; http:\u002F\u002Fphp.net\u002Fenable-dl\nenable_dl = Off\n\n; cgi.force_redirect is necessary to provide security running PHP as a CGI under\n; most web servers. Left undefined, PHP turns this on by default. You can\n; turn it off here AT YOUR OWN RISK\n; **You CAN safely turn this off for IIS, in fact, you MUST.**\n; http:\u002F\u002Fphp.net\u002Fcgi.force-redirect\n;cgi.force_redirect = 1\n\n; if cgi.nph is enabled it will force cgi to always sent Status: 200 with\n; every request. PHP's default behavior is to disable this feature.\n;cgi.nph = 1\n\n; if cgi.force_redirect is turned on, and you are not running under Apache or Netscape\n; (iP\u003Cem\u003Elan\u003C\u002Fem\u003Eet) web servers, you MAY need to set an environment variable name that PHP\n; will look for to know it is OK to continue execution. Setting this variable MAY\n; cause security issues, KNOW WHAT YOU ARE DOING FIRST.\n; http:\u002F\u002Fphp.net\u002Fcgi.redirect-status-env\n;cgi.redirect_status_env = \n\n; cgi.fix_pathinfo provides *real* PATH_INFO\u002FPATH_TRANSLATED support for CGI. PHP's\n; previous behaviour was to set PATH_TRANSLATED to \u003Cem\u003ESCRIPT\u003C\u002Fem\u003E_FILENAME, and to not grok\n; what PATH_INFO is. For more information on PATH_INFO, see the cgi specs. Setting\n; this to 1 will cause PHP CGI to fix its paths to conform to the spec. A setting\n; of zero causes PHP to behave as before. Default is 1. You should fix your \u003Cem\u003Escript\u003C\u002Fem\u003Es\n; to use \u003Cem\u003ESCRIPT\u003C\u002Fem\u003E_FILENAME rather than PATH_TRANSLATED.\n; http:\u002F\u002Fphp.net\u002Fcgi.fix-pathinfo\n;cgi.fix_pathinfo=1\n\n; FastCGI under IIS (on WINNT based OS) supports the ability to impersonate\n; security tokens of the calling client. This allows IIS to define the\n; security context that the request runs under. mod_fastcgi under Apache\n; does not currently support this feature (03\u002F17\u002F2002)\n; Set to 1 if running under IIS. Default is zero.\n; http:\u002F\u002Fphp.net\u002Ffastcgi.impersonate\n;fastcgi.impersonate = 1\n\n; Disable logging through FastCGI connection. PHP's default behavior is to enable\n; this feature.\n;fastcgi.logging = 0\n\n; cgi.rfc2616_headers configuration option tells PHP what type of headers to\n; use when sending HTTP response code. If it's set 0 PHP sends Status: header that\n; is supported by Apache. When this option is set to 1 PHP will send\n; RFC2616 compliant header.\n; Default is zero.\n; http:\u002F\u002Fphp.net\u002Fcgi.rfc2616-headers\n;cgi.rfc2616_headers = 0\n\n;;;;;;;;;;;;;;;;\n; File Uploads ;\n;;;;;;;;;;;;;;;;\n\n; Whether to allow HTTP file uploads.\n; http:\u002F\u002Fphp.net\u002Ffile-uploads\nfile_uploads = On\n\n; Temporary directory for HTTP uploaded files (will use system default if not\n; \u003Cem\u003Especified\u003C\u002Fem\u003E).\n; http:\u002F\u002Fphp.net\u002Fupload-tmp-dir\n;upload_tmp_dir =\n\n; Maximum allowed size for uploaded files.\n; http:\u002F\u002Fphp.net\u002Fupload-max-filesize\nupload_max_filesize = 2M\n\n; Maximum number of files that can be uploaded via a single request\nmax_file_uploads = 20\n\n;;;;;;;;;;;;;;;;;;\n; Fopen wrappers ;\n;;;;;;;;;;;;;;;;;;\n\n; Whether to allow the treatment of URLs (like http:\u002F\u002F or ftp:\u002F\u002F) as files.\n; http:\u002F\u002Fphp.net\u002Fallow-url-fopen\nallow_url_fopen = On\n\n; Whether to allow include\u002Frequire to open URLs (like http:\u002F\u002F or ftp:\u002F\u002F) as files.\n; http:\u002F\u002Fphp.net\u002Fallow-url-include\nallow_url_include = Off\n\n; Define the anonymous ftp password (your email address). PHP's default setting\n; for this is empty.\n; http:\u002F\u002Fphp.net\u002Ffrom\n;from=\"john@doe.com\"\n\n; Define the User-Agent string. PHP's default setting for this is empty.\n; http:\u002F\u002Fphp.net\u002Fuser-agent\n;user_agent=\"PHP\"\n\n; Default timeout for socket based streams (seconds)\n; http:\u002F\u002Fphp.net\u002Fdefault-socket-timeout\ndefault_socket_timeout = 60\n\n; If your \u003Cem\u003Escript\u003C\u002Fem\u003Es have to deal with files from Macintosh systems,\n; or you are running on a Mac and need to deal with files from\n; unix or win32 systems, setting this flag will cause PHP to\n; automatically detect the EOL character in those files so that\n; fgets() and file() will work regardless of the source of the file.\n; http:\u002F\u002Fphp.net\u002Fauto-detect-line-endings\n;auto_detect_line_endings = Off\n\n;;;;;;;;;;;;;;;;;;;;;;\n; Dynamic Extensions ;\n;;;;;;;;;;;;;;;;;;;;;;\n\n; If you wish to have an extension loaded automatically, use the following\n; syntax:\n;\n; extension=modulename.extension\n;\n; For example, on Windows:\n;\n; extension=msql.dll\n;\n; ... or under UNIX:\n;\n; extension=msql.so\n;\n; ... or with a path:\n;\n; extension=\u002Fpath\u002Fto\u002Fextension\u002Fmsql.so\n;\n; If you only provide the name of the extension, PHP will look for it in its\n; default extension directory.\n;\n; Windows Extensions\n; Note that ODBC support is built in, so no dll is needed for it.\n; Note that many DLL files are located in the extensions\u002F (PHP 4) ext\u002F (PHP 5)\n; extension folders as well as the separate PECL DLL download (PHP 5).\n; Be sure to appropriately set the extension_dir directive.\n;\n;extension=php_bz2.dll\n;extension=php_curl.dll\n;extension=php_fileinfo.dll\n;extension=php_gd2.dll\n;extension=php_gettext.dll\n;extension=php_gmp.dll\n;extension=php_intl.dll\n;extension=php_imap.dll\n;extension=php_interbase.dll\n;extension=php_ldap.dll\n;extension=php_mbstring.dll\n;extension=php_exif.dll ; Must be after mbstring as it depends on it\n;extension=php_mysql.dll\n;extension=php_mysqli.dll\n;extension=php_oci8.dll ; Use with Oracle 10gR2 Instant Client\n;extension=php_oci8_11g.dll ; Use with Oracle 11gR2 Instant Client\n;extension=php_openssl.dll\n;extension=php_pdo_firebird.dll\n;extension=php_pdo_mysql.dll\n;extension=php_pdo_oci.dll\n;extension=php_pdo_odbc.dll\n;extension=php_pdo_pgsql.dll\n;extension=php_pdo_sqlite.dll\n;extension=php_pgsql.dll\n;extension=php_pspell.dll\n;extension=php_shmop.dll\n\n; The MIBS data available in the PHP distribution must be installed. \n; See http:\u002F\u002Fwww.php.net\u002Fmanual\u002Fen\u002Fsnmp.installation.php \n;extension=php_snmp.dll\n\n;extension=php_soap.dll\n;extension=php_sockets.dll\n;extension=php_sqlite3.dll\n;extension=php_sybase_ct.dll\n;extension=php_tidy.dll\n;extension=php_xmlrpc.dll\n;extension=php_xsl.dll\n\n;;;;;;;;;;;;;;;;;;;\n; Module Settings ;\n;;;;;;;;;;;;;;;;;;;\n\n[CLI Server]\n; Whether the CLI web server uses ANSI color coding in its terminal output.\ncli_server.color = On\n\n[Date]\n; Defines the default timezone used by the date functions\n; http:\u002F\u002Fphp.net\u002Fdate.timezone\n;date.timezone =\n\n; http:\u002F\u002Fphp.net\u002Fdate.default-latitude\n;date.default_latitude = 31.7667\n\n; http:\u002F\u002Fphp.net\u002Fdate.default-longitude\n;date.default_longitude = 35.2333\n\n; http:\u002F\u002Fphp.net\u002Fdate.sunrise-zenith\n;date.sunrise_zenith = 90.583333\n\n; http:\u002F\u002Fphp.net\u002Fdate.sunset-zenith\n;date.sunset_zenith = 90.583333\n\n[filter]\n; http:\u002F\u002Fphp.net\u002Ffilter.default\n;filter.default = unsafe_raw\n\n; http:\u002F\u002Fphp.net\u002Ffilter.default-flags\n;filter.default_flags =\n\n[iconv]\n;iconv.input_encoding = ISO-8859-1\n;iconv.internal_encoding = ISO-8859-1\n;iconv.output_encoding = ISO-8859-1\n\n[intl]\n;intl.default_locale =\n; This directive allows you to produce PHP errors when some error\n; happens within intl functions. The value is the level of the error produced.\n; Default is 0, which does not produce any errors.\n;intl.error_level = E_WARNING\n\n[sqlite]\n; http:\u002F\u002Fphp.net\u002Fsqlite.assoc-case\n;sqlite.assoc_case = 0\n\n[sqlite3]\n;sqlite3.extension_dir =\n\n[Pcre]\n;PCRE library backtracking limit.\n; http:\u002F\u002Fphp.net\u002Fpcre.backtrack-limit\n;pcre.backtrack_limit=100000\n\n;PCRE library recursion limit.\n;Please note that if you set this value to a high number you may consume all\n;the available process stack and eventually crash PHP (due to reaching the\n;stack size limit imposed by the Operating System).\n; http:\u002F\u002Fphp.net\u002Fpcre.recursion-limit\n;pcre.recursion_limit=100000\n\n[Pdo]\n; Whether to pool ODBC connections. Can be one of \"strict\", \"relaxed\" or \"off\"\n; http:\u002F\u002Fphp.net\u002Fpdo-odbc.connection-pooling\n;pdo_odbc.connection_pooling=strict\n\n;pdo_odbc.db2_instance_name\n\n[Pdo_mysql]\n; If mysqlnd is used: Number of cache slots for the internal result set cache\n; http:\u002F\u002Fphp.net\u002Fpdo_mysql.cache_size\npdo_mysql.cache_size = 2000\n\n; Default socket name for local MySQL connects. If empty, uses the built-in\n; MySQL defaults.\n; http:\u002F\u002Fphp.net\u002Fpdo_mysql.default-socket\npdo_mysql.default_socket=\n\n[Phar]\n; http:\u002F\u002Fphp.net\u002Fphar.readonly\n;phar.readonly = On\n\n; http:\u002F\u002Fphp.net\u002Fphar.require-hash\n;phar.require_hash = On\n\n;phar.cache_list =\n\n[mail function]\n; For Win32 only.\n; http:\u002F\u002Fphp.net\u002Fsmtp\nSMTP = localhost\n; http:\u002F\u002Fphp.net\u002Fsmtp-port\nsmtp_port = 25\n\n; For Win32 only.\n; http:\u002F\u002Fphp.net\u002Fsendmail-from\n;sendmail_from = me@example.com\n\n; For Unix only. You may supply arguments as well (default: \"sendmail -t -i\").\n; http:\u002F\u002Fphp.net\u002Fsendmail-path\n;sendmail_path =\n\n; Force the addition of the \u003Cem\u003Especified\u003C\u002Fem\u003E parameters to be passed as extra parameters\n; to the sendmail binary. These parameters will always replace the value of\n; the 5th parameter to mail(), even in safe mode.\n;mail.force_extra_parameters =\n\n; Add X-PHP-Originating-\u003Cem\u003EScript\u003C\u002Fem\u003E: that will include uid of the \u003Cem\u003Escript\u003C\u002Fem\u003E followed by the filename\nmail.add_x_header = On\n\n; The path to a log file that will log all mail() calls. Log entries include\n; the full path of the \u003Cem\u003Escript\u003C\u002Fem\u003E, line number, To address and headers.\n;mail.log =\n; Log mail to syslog (Event Log on Windows).\n;mail.log = syslog\n\n[SQL]\n; http:\u002F\u002Fphp.net\u002Fsql.safe-mode\nsql.safe_mode = Off\n\n[ODBC]\n; http:\u002F\u002Fphp.net\u002Fodbc.default-db\n;odbc.default_db = Not yet implemented\n\n; http:\u002F\u002Fphp.net\u002Fodbc.default-user\n;odbc.default_user = Not yet implemented\n\n; http:\u002F\u002Fphp.net\u002Fodbc.default-pw\n;odbc.default_pw = Not yet implemented\n\n; Controls the ODBC cursor model.\n; Default: SQL_CURSOR_STATIC (default).\n;odbc.default_cursortype\n\n; Allow or prevent persistent links.\n; http:\u002F\u002Fphp.net\u002Fodbc.allow-persistent\nodbc.allow_persistent = On\n\n; Check that a connection is still valid before reuse.\n; http:\u002F\u002Fphp.net\u002Fodbc.check-persistent\nodbc.check_persistent = On\n\n; Maximum number of persistent links. -1 means no limit.\n; http:\u002F\u002Fphp.net\u002Fodbc.max-persistent\nodbc.max_persistent = -1\n\n; Maximum number of links (persistent + non-persistent). -1 means no limit.\n; http:\u002F\u002Fphp.net\u002Fodbc.max-links\nodbc.max_links = -1\n\n; Handling of LONG fields. Returns number of bytes to variables. 0 means\n; passthru.\n; http:\u002F\u002Fphp.net\u002Fodbc.defaultlrl\nodbc.defaultlrl = 4096\n\n; Handling of binary data. 0 means passthru, 1 return as is, 2 convert to char.\n; See the documentation on odbc_binmode and odbc_longreadlen for an exp\u003Cem\u003Elan\u003C\u002Fem\u003Eation\n; of odbc.defaultlrl and odbc.defaultbinmode\n; http:\u002F\u002Fphp.net\u002Fodbc.defaultbinmode\nodbc.defaultbinmode = 1\n\n;birdstep.max_links = -1\n\n[Interbase]\n; Allow or prevent persistent links.\nibase.allow_persistent = 1\n\n; Maximum number of persistent links. -1 means no limit.\nibase.max_persistent = -1\n\n; Maximum number of links (persistent + non-persistent). -1 means no limit.\nibase.max_links = -1\n\n; Default database name for ibase_connect().\n;ibase.default_db =\n\n; Default username for ibase_connect().\n;ibase.default_user =\n\n; Default password for ibase_connect().\n;ibase.default_password =\n\n; Default charset for ibase_connect().\n;ibase.default_charset =\n\n; Default timestamp format.\nibase.timestampformat = \"%Y-%m-%d %H:%M:%S\"\n\n; Default date format.\nibase.dateformat = \"%Y-%m-%d\"\n\n; Default time format.\nibase.timeformat = \"%H:%M:%S\"\n\n[MySQL]\n; Allow accessing, from PHP's perspective, local files with LOAD DATA statements\n; http:\u002F\u002Fphp.net\u002Fmysql.allow_local_infile\nmysql.allow_local_infile = On\n\n; Allow or prevent persistent links.\n; http:\u002F\u002Fphp.net\u002Fmysql.allow-persistent\nmysql.allow_persistent = On\n\n; If mysqlnd is used: Number of cache slots for the internal result set cache\n; http:\u002F\u002Fphp.net\u002Fmysql.cache_size\nmysql.cache_size = 2000\n\n; Maximum number of persistent links. -1 means no limit.\n; http:\u002F\u002Fphp.net\u002Fmysql.max-persistent\nmysql.max_persistent = -1\n\n; Maximum number of links (persistent + non-persistent). -1 means no limit.\n; http:\u002F\u002Fphp.net\u002Fmysql.max-links\nmysql.max_links = -1\n\n; Default port number for mysql_connect(). If unset, mysql_connect() will use\n; the $MYSQL_TCP_PORT or the mysql-tcp entry in \u002Fetc\u002Fservices or the\n; compile-time value defined MYSQL_PORT (in that order). Win32 will only look\n; at MYSQL_PORT.\n; http:\u002F\u002Fphp.net\u002Fmysql.default-port\nmysql.default_port =\n\n; Default socket name for local MySQL connects. If empty, uses the built-in\n; MySQL defaults.\n; http:\u002F\u002Fphp.net\u002Fmysql.default-socket\nmysql.default_socket =\n\n; Default host for mysql_connect() (doesn't apply in safe mode).\n; http:\u002F\u002Fphp.net\u002Fmysql.default-host\nmysql.default_host =\n\n; Default user for mysql_connect() (doesn't apply in safe mode).\n; http:\u002F\u002Fphp.net\u002Fmysql.default-user\nmysql.default_user =\n\n; Default password for mysql_connect() (doesn't apply in safe mode).\n; Note that this is generally a *bad* idea to store passwords in this file.\n; *Any* user with PHP access can run 'echo get_cfg_var(\"mysql.default_password\")\n; and reveal this password! And of course, any users with read access to this\n; file will be able to reveal the password as well.\n; http:\u002F\u002Fphp.net\u002Fmysql.default-password\nmysql.default_password =\n\n; Maximum time (in seconds) for connect timeout. -1 means no limit\n; http:\u002F\u002Fphp.net\u002Fmysql.connect-timeout\nmysql.connect_timeout = 60\n\n; Trace mode. When trace_mode is active (=On), warnings for table\u002Findex scans and\n; SQL-Errors will be displayed.\n; http:\u002F\u002Fphp.net\u002Fmysql.trace-mode\nmysql.trace_mode = Off\n\n[MySQLi]\n\n; Maximum number of persistent links. -1 means no limit.\n; http:\u002F\u002Fphp.net\u002Fmysqli.max-persistent\nmysqli.max_persistent = -1\n\n; Allow accessing, from PHP's perspective, local files with LOAD DATA statements\n; http:\u002F\u002Fphp.net\u002Fmysqli.allow_local_infile\n;mysqli.allow_local_infile = On\n\n; Allow or prevent persistent links.\n; http:\u002F\u002Fphp.net\u002Fmysqli.allow-persistent\nmysqli.allow_persistent = On\n\n; Maximum number of links. -1 means no limit.\n; http:\u002F\u002Fphp.net\u002Fmysqli.max-links\nmysqli.max_links = -1\n\n; If mysqlnd is used: Number of cache slots for the internal result set cache\n; http:\u002F\u002Fphp.net\u002Fmysqli.cache_size\nmysqli.cache_size = 2000\n\n; Default port number for mysqli_connect(). If unset, mysqli_connect() will use\n; the $MYSQL_TCP_PORT or the mysql-tcp entry in \u002Fetc\u002Fservices or the\n; compile-time value defined MYSQL_PORT (in that order). Win32 will only look\n; at MYSQL_PORT.\n; http:\u002F\u002Fphp.net\u002Fmysqli.default-port\nmysqli.default_port = 3306\n\n; Default socket name for local MySQL connects. If empty, uses the built-in\n; MySQL defaults.\n; http:\u002F\u002Fphp.net\u002Fmysqli.default-socket\nmysqli.default_socket =\n\n; Default host for mysql_connect() (doesn't apply in safe mode).\n; http:\u002F\u002Fphp.net\u002Fmysqli.default-host\nmysqli.default_host =\n\n; Default user for mysql_connect() (doesn't apply in safe mode).\n; http:\u002F\u002Fphp.net\u002Fmysqli.default-user\nmysqli.default_user =\n\n; Default password for mysqli_connect() (doesn't apply in safe mode).\n; Note that this is generally a *bad* idea to store passwords in this file.\n; *Any* user with PHP access can run 'echo get_cfg_var(\"mysqli.default_pw\")\n; and reveal this password! And of course, any users with read access to this\n; file will be able to reveal the password as well.\n; http:\u002F\u002Fphp.net\u002Fmysqli.default-pw\nmysqli.default_pw =\n\n; Allow or prevent reconnect\nmysqli.reconnect = Off\n\n[mysqlnd]\n; Enable \u002F Disable collection of general statistics by mysqlnd which can be\n; used to tune and monitor MySQL operations.\n; http:\u002F\u002Fphp.net\u002Fmysqlnd.collect_statistics\nmysqlnd.collect_statistics = On\n\n; Enable \u002F Disable collection of memory usage statistics by mysqlnd which can be\n; used to tune and monitor MySQL operations.\n; http:\u002F\u002Fphp.net\u002Fmysqlnd.collect_memory_statistics\nmysqlnd.collect_memory_statistics = On\n\n; Size of a pre-allocated buffer used when sending commands to MySQL in bytes.\n; http:\u002F\u002Fphp.net\u002Fmysqlnd.net_cmd_buffer_size\n;mysqlnd.net_cmd_buffer_size = 2048\n\n; Size of a pre-allocated buffer used for reading data sent by the server in\n; bytes.\n; http:\u002F\u002Fphp.net\u002Fmysqlnd.net_read_buffer_size\n;mysqlnd.net_read_buffer_size = 32768\n\n[OCI8]\n\n; Connection: Enables privileged connections using external\n; credentials (OCI_SYSOPER, OCI_SYSDBA)\n; http:\u002F\u002Fphp.net\u002Foci8.privileged-connect\n;oci8.privileged_connect = Off\n\n; Connection: The maximum number of persistent OCI8 connections per\n; process. Using -1 means no limit.\n; http:\u002F\u002Fphp.net\u002Foci8.max-persistent\n;oci8.max_persistent = -1\n\n; Connection: The maximum number of seconds a process is allowed to\n; maintain an idle persistent connection. Using -1 means idle\n; persistent connections will be maintained forever.\n; http:\u002F\u002Fphp.net\u002Foci8.persistent-timeout\n;oci8.persistent_timeout = -1\n\n; Connection: The number of seconds that must pass before issuing a\n; ping during oci_pconnect() to check the connection validity. When\n; set to 0, each oci_pconnect() will cause a ping. Using -1 disables\n; pings completely.\n; http:\u002F\u002Fphp.net\u002Foci8.ping-interval\n;oci8.ping_interval = 60\n\n; Connection: Set this to a user chosen connection class to be used\n; for all pooled server requests with Oracle 11g Database Resident\n; Connection Pooling (DRCP). To use DRCP, this value should be set to\n; the same string for all web servers running the same application,\n; the database pool must be configured, and the connection string must\n; specify to use a pooled server.\n;oci8.connection_class =\n\n; High Availability: Using On lets PHP receive Fast Application\n; Notification (FAN) events generated when a database node fails. The\n; database must also be configured to post FAN events.\n;oci8.events = Off\n\n; Tuning: This option enables statement caching, and specifies how\n; many statements to cache. Using 0 disables statement caching.\n; http:\u002F\u002Fphp.net\u002Foci8.statement-cache-size\n;oci8.statement_cache_size = 20\n\n; Tuning: Enables statement prefetching and sets the default number of\n; rows that will be fetched automatically after statement execution.\n; http:\u002F\u002Fphp.net\u002Foci8.default-prefetch\n;oci8.default_prefetch = 100\n\n; Compatibility. Using On means oci_close() will not close\n; oci_connect() and oci_new_connect() connections.\n; http:\u002F\u002Fphp.net\u002Foci8.old-oci-close-semantics\n;oci8.old_oci_close_semantics = Off\n\n[PostgreSQL]\n; Allow or prevent persistent links.\n; http:\u002F\u002Fphp.net\u002Fpgsql.allow-persistent\npgsql.allow_persistent = On\n\n; Detect broken persistent links always with pg_pconnect().\n; Auto reset feature requires a little overheads.\n; http:\u002F\u002Fphp.net\u002Fpgsql.auto-reset-persistent\npgsql.auto_reset_persistent = Off\n\n; Maximum number of persistent links. -1 means no limit.\n; http:\u002F\u002Fphp.net\u002Fpgsql.max-persistent\npgsql.max_persistent = -1\n\n; Maximum number of links (persistent+non persistent). -1 means no limit.\n; http:\u002F\u002Fphp.net\u002Fpgsql.max-links\npgsql.max_links = -1\n\n; Ignore PostgreSQL backends Notice message or not.\n; Notice message logging require a little overheads.\n; http:\u002F\u002Fphp.net\u002Fpgsql.ignore-notice\npgsql.ignore_notice = 0\n\n; Log PostgreSQL backends Notice message or not.\n; Unless pgsql.ignore_notice=0, module cannot log notice message.\n; http:\u002F\u002Fphp.net\u002Fpgsql.log-notice\npgsql.log_notice = 0\n\n[Sybase-CT]\n; Allow or prevent persistent links.\n; http:\u002F\u002Fphp.net\u002Fsybct.allow-persistent\nsybct.allow_persistent = On\n\n; Maximum number of persistent links. -1 means no limit.\n; http:\u002F\u002Fphp.net\u002Fsybct.max-persistent\nsybct.max_persistent = -1\n\n; Maximum number of links (persistent + non-persistent). -1 means no limit.\n; http:\u002F\u002Fphp.net\u002Fsybct.max-links\nsybct.max_links = -1\n\n; Minimum server message severity to display.\n; http:\u002F\u002Fphp.net\u002Fsybct.min-server-severity\nsybct.min_server_severity = 10\n\n; Minimum client message severity to display.\n; http:\u002F\u002Fphp.net\u002Fsybct.min-client-severity\nsybct.min_client_severity = 10\n\n; Set per-context timeout\n; http:\u002F\u002Fphp.net\u002Fsybct.timeout\n;sybct.timeout=\n\n;sybct.packet_size\n\n; The maximum time in seconds to wait for a connection attempt to succeed before returning failure.\n; Default: one minute\n;sybct.login_timeout=\n\n; The name of the host you claim to be connecting from, for display by sp_who.\n; Default: none\n;sybct.hostname=\n\n; Allows you to define how often deadlocks are to be retried. -1 means \"forever\".\n; Default: 0\n;sybct.deadlock_retry_count=\n\n[bcmath]\n; Number of decimal digits for all bcmath functions.\n; http:\u002F\u002Fphp.net\u002Fbcmath.scale\nbcmath.scale = 0\n\n[browscap]\n; http:\u002F\u002Fphp.net\u002Fbrowscap\n;browscap = extra\u002Fbrowscap.ini\n\n[Session]\n; Handler used to store\u002Fretrieve data.\n; http:\u002F\u002Fphp.net\u002Fsession.save-handler\nsession.save_handler = files\n\n; Argument passed to save_handler. In the case of files, this is the path\n; where data files are stored. Note: Windows users have to change this\n; variable in order to use PHP's session functions.\n;\n; The path can be defined as:\n;\n; session.save_path = \"N;\u002Fpath\"\n;\n; where N is an integer. Instead of storing all the session files in\n; \u002Fpath, what this will do is use subdirectories N-levels deep, and\n; store the session data in those directories. This is useful if you\n; or your OS have problems with lots of files in one directory, and is\n; a more efficient layout for servers that handle lots of sessions.\n;\n; NOTE 1: PHP will not \u003Cem\u003Ecreate\u003C\u002Fem\u003E this directory structure automatically.\n; You can use the \u003Cem\u003Escript\u003C\u002Fem\u003E in the ext\u002Fsession dir for that purpose.\n; NOTE 2: See the section on garbage collection below if you choose to\n; use subdirectories for session storage\n;\n; The file storage module \u003Cem\u003Ecreate\u003C\u002Fem\u003Es files using mode 600 by default.\n; You can change that by using\n;\n; session.save_path = \"N;MODE;\u002Fpath\"\n;\n; where MODE is the octal representation of the mode. Note that this\n; does not overwrite the process's umask.\n; http:\u002F\u002Fphp.net\u002Fsession.save-path\n;session.save_path = \"\u002Ftmp\"\n\n; Whether to use cookies.\n; http:\u002F\u002Fphp.net\u002Fsession.use-cookies\nsession.use_cookies = 1\n\n; http:\u002F\u002Fphp.net\u002Fsession.cookie-secure\n;session.cookie_secure =\n\n; This option forces PHP to fetch and use a cookie for storing and maintaining\n; the session id. We encourage this operation as it's very helpful in combating\n; session hijacking when not specifying and managing your own session id. It is\n; not the end all be all of session hijacking defense, but it's a good start.\n; http:\u002F\u002Fphp.net\u002Fsession.use-only-cookies\nsession.use_only_cookies = 1\n\n; Name of the session (used as cookie name).\n; http:\u002F\u002Fphp.net\u002Fsession.name\nsession.name = PHPSESSID\n\n; Initialize session on request startup.\n; http:\u002F\u002Fphp.net\u002Fsession.auto-start\nsession.auto_start = 0\n\n; Lifetime in seconds of cookie or, if 0, until browser is restarted.\n; http:\u002F\u002Fphp.net\u002Fsession.cookie-lifetime\nsession.cookie_lifetime = 0\n\n; The path for which the cookie is valid.\n; http:\u002F\u002Fphp.net\u002Fsession.cookie-path\nsession.cookie_path = \u002F\n\n; The domain for which the cookie is valid.\n; http:\u002F\u002Fphp.net\u002Fsession.cookie-domain\nsession.cookie_domain =\n\n; Whether or not to add the httpOnly flag to the cookie, which makes it inaccessible to browser \u003Cem\u003Escript\u003C\u002Fem\u003Eing \u003Cem\u003Elan\u003C\u002Fem\u003E\u003Cem\u003Eguage\u003C\u002Fem\u003Es such as Java\u003Cem\u003EScript\u003C\u002Fem\u003E.\n; http:\u002F\u002Fphp.net\u002Fsession.cookie-httponly\nsession.cookie_httponly =\n\n; Handler used to serialize data. php is the standard serializer of PHP.\n; http:\u002F\u002Fphp.net\u002Fsession.serialize-handler\nsession.serialize_handler = php\n\n; Defines the probability that the 'garbage collection' process is started\n; on every session initialization. The probability is calculated by using\n; gc_probability\u002Fgc_divisor. Where session.gc_probability is the numerator\n; and gc_divisor is the denominator in the equation. Setting this value to 1\n; when the session.gc_divisor value is 100 will give you approximately a 1% chance\n; the gc will run on any give request.\n; Default Value: 1\n; Development Value: 1\n; Production Value: 1\n; http:\u002F\u002Fphp.net\u002Fsession.gc-probability\nsession.gc_probability = 1\n\n; Defines the probability that the 'garbage collection' process is started on every\n; session initialization. The probability is calculated by using the following equation:\n; gc_probability\u002Fgc_divisor. Where session.gc_probability is the numerator and\n; session.gc_divisor is the denominator in the equation. Setting this value to 1\n; when the session.gc_divisor value is 100 will give you approximately a 1% chance\n; the gc will run on any give request. Increasing this value to 1000 will give you\n; a 0.1% chance the gc will run on any give request. For high volume production servers,\n; this is a more efficient approach.\n; Default Value: 100\n; Development Value: 1000\n; Production Value: 1000\n; http:\u002F\u002Fphp.net\u002Fsession.gc-divisor\nsession.gc_divisor = 1000\n\n; After this number of seconds, stored data will be seen as 'garbage' and\n; cleaned up by the garbage collection process.\n; http:\u002F\u002Fphp.net\u002Fsession.gc-maxlifetime\nsession.gc_maxlifetime = 1440\n\n; NOTE: If you are using the subdirectory option for storing session files\n; (see session.save_path above), then garbage collection does *not*\n; happen automatically. You will need to do your own garbage\n; collection through a shell \u003Cem\u003Escript\u003C\u002Fem\u003E, cron entry, or some other method.\n; For example, the following \u003Cem\u003Escript\u003C\u002Fem\u003E would is the equivalent of\n; setting session.gc_maxlifetime to 1440 (1440 seconds = 24 minutes):\n; find \u002Fpath\u002Fto\u002Fsessions -cmin +24 -type f | xargs rm\n\n; Check HTTP Referer to invalidate externally stored URLs containing ids.\n; HTTP_REFERER has to contain this substring for the session to be\n; considered as valid.\n; http:\u002F\u002Fphp.net\u002Fsession.referer-check\nsession.referer_check =\n\n; How many bytes to read from the file.\n; http:\u002F\u002Fphp.net\u002Fsession.entropy-length\n;session.entropy_length = 32\n\n; \u003Cem\u003ESpecified\u003C\u002Fem\u003E here to \u003Cem\u003Ecreate\u003C\u002Fem\u003E the session id.\n; http:\u002F\u002Fphp.net\u002Fsession.entropy-file\n; Defaults to \u002Fdev\u002Furandom\n; On systems that don't have \u002Fdev\u002Furandom but do have \u002Fdev\u002Farandom, this will default to \u002Fdev\u002Farandom\n; If neither are found at compile time, the default is no entropy file.\n; On windows, setting the entropy_length setting will activate the\n; Windows random source (using the CryptoAPI)\n;session.entropy_file = \u002Fdev\u002Furandom\n\n; Set to {nocache,private,public,} to determine HTTP caching aspects\n; or leave this empty to avoid sending anti-caching headers.\n; http:\u002F\u002Fphp.net\u002Fsession.cache-limiter\nsession.cache_limiter = nocache\n\n; Document expires after n minutes.\n; http:\u002F\u002Fphp.net\u002Fsession.cache-expire\nsession.cache_expire = 180\n\n; trans sid support is disabled by default.\n; Use of trans sid may risk your users security.\n; Use this option with caution.\n; - User may send URL contains active session ID\n; to other person via. email\u002Firc\u002Fetc.\n; - URL that contains active session ID may be stored\n; in publicly accessible computer.\n; - User may access your site with the same session ID\n; always using URL stored in browser's history or bookmarks.\n; http:\u002F\u002Fphp.net\u002Fsession.use-trans-sid\nsession.use_trans_sid = 0\n\n; Select a hash function for use in generating session ids.\n; Possible Values\n; 0 (MD5 128 bits)\n; 1 (SHA-1 160 bits)\n; This option may also be set to the name of any hash function supported by\n; the hash extension. A list of available hashes is returned by the hash_algos()\n; function.\n; http:\u002F\u002Fphp.net\u002Fsession.hash-function\nsession.hash_function = 0\n\n; Define how many bits are stored in each character when converting\n; the binary hash data to something readable.\n; Possible values:\n; 4 (4 bits: 0-9, a-f)\n; 5 (5 bits: 0-9, a-v)\n; 6 (6 bits: 0-9, a-z, A-Z, \"-\", \",\")\n; Default Value: 4\n; Development Value: 5\n; Production Value: 5\n; http:\u002F\u002Fphp.net\u002Fsession.hash-bits-per-character\nsession.hash_bits_per_character = 5\n\n; The URL rewriter will look for URLs in a defined set of HTML tags.\n; form\u002Ffieldset are special; if you include them here, the rewriter will\n; add a hidden \u003Cinput\u003E field with the info which is otherwise appended\n; to URLs. If you want XHTML conformity, remove the form entry.\n; Note that all valid entries require a \"=\", even if no value follows.\n; Default Value: \"a=href,area=href,frame=src,form=,fieldset=\"\n; Development Value: \"a=href,area=href,frame=src,input=src,form=fakeentry\"\n; Production Value: \"a=href,area=href,frame=src,input=src,form=fakeentry\"\n; http:\u002F\u002Fphp.net\u002Furl-rewriter.tags\nurl_rewriter.tags = \"a=href,area=href,frame=src,input=src,form=fakeentry\"\n\n; Enable upload progress tracking in $_SESSION\n; Default Value: On\n; Development Value: On\n; Production Value: On\n; http:\u002F\u002Fphp.net\u002Fsession.upload-progress.enabled\n;session.upload_progress.enabled = On\n\n; Cleanup the progress information as soon as all POST data has been read\n; (i.e. upload completed).\n; Default Value: On\n; Development Value: On\n; Production Value: On\n; http:\u002F\u002Fphp.net\u002Fsession.upload-progress.cleanup\n;session.upload_progress.cleanup = On\n\n; A prefix used for the upload progress key in $_SESSION\n; Default Value: \"upload_progress_\"\n; Development Value: \"upload_progress_\"\n; Production Value: \"upload_progress_\"\n; http:\u002F\u002Fphp.net\u002Fsession.upload-progress.prefix\n;session.upload_progress.prefix = \"upload_progress_\"\n\n; The index name (concatenated with the prefix) in $_SESSION\n; containing the upload progress information\n; Default Value: \"PHP_SESSION_UPLOAD_PROGRESS\"\n; Development Value: \"PHP_SESSION_UPLOAD_PROGRESS\"\n; Production Value: \"PHP_SESSION_UPLOAD_PROGRESS\"\n; http:\u002F\u002Fphp.net\u002Fsession.upload-progress.name\n;session.upload_progress.name = \"PHP_SESSION_UPLOAD_PROGRESS\"\n\n; How frequently the upload progress should be updated.\n; Given either in percentages (per-file), or in bytes\n; Default Value: \"1%\"\n; Development Value: \"1%\"\n; Production Value: \"1%\"\n; http:\u002F\u002Fphp.net\u002Fsession.upload-progress.freq\n;session.upload_progress.freq = \"1%\"\n\n; The minimum delay between updates, in seconds\n; Default Value: 1\n; Development Value: 1\n; Production Value: 1\n; http:\u002F\u002Fphp.net\u002Fsession.upload-progress.min-freq\n;session.upload_progress.min_freq = \"1\"\n\n[MSSQL]\n; Allow or prevent persistent links.\nmssql.allow_persistent = On\n\n; Maximum number of persistent links. -1 means no limit.\nmssql.max_persistent = -1\n\n; Maximum number of links (persistent+non persistent). -1 means no limit.\nmssql.max_links = -1\n\n; Minimum error severity to display.\nmssql.min_error_severity = 10\n\n; Minimum message severity to display.\nmssql.min_message_severity = 10\n\n; Compatibility mode with old versions of PHP 3.0.\nmssql.compatability_mode = Off\n\n; Connect timeout\n;mssql.connect_timeout = 5\n\n; Query timeout\n;mssql.timeout = 60\n\n; Valid range 0 - 2147483647. Default = 4096.\n;mssql.textlimit = 4096\n\n; Valid range 0 - 2147483647. Default = 4096.\n;mssql.textsize = 4096\n\n; Limits the number of records in each batch. 0 = all records in one batch.\n;mssql.batchsize = 0\n\n; Specify how datetime and datetim4 columns are returned\n; On =\u003E Returns data converted to SQL server settings\n; Off =\u003E Returns values as YYYY-MM-DD hh:mm:ss\n;mssql.datetimeconvert = On\n\n; Use NT authentication when connecting to the server\nmssql.secure_connection = Off\n\n; Specify max number of processes. -1 = library default\n; msdlib defaults to 25\n; FreeTDS defaults to 4096\n;mssql.max_procs = -1\n\n; Specify client character set.\n; If empty or not set the client charset from freetds.conf is used\n; This is only used when compiled with FreeTDS\n;mssql.charset = \"ISO-8859-1\"\n\n[Assertion]\n; Assert(expr); active by default.\n; http:\u002F\u002Fphp.net\u002Fassert.active\n;assert.active = On\n\n; Issue a PHP warning for each failed assertion.\n; http:\u002F\u002Fphp.net\u002Fassert.warning\n;assert.warning = On\n\n; Don't bail out by default.\n; http:\u002F\u002Fphp.net\u002Fassert.bail\n;assert.bail = Off\n\n; User-function to be called if an assertion fails.\n; http:\u002F\u002Fphp.net\u002Fassert.callback\n;assert.callback = 0\n\n; Eval the expression with current error_reporting(). Set to true if you want\n; error_reporting(0) around the eval().\n; http:\u002F\u002Fphp.net\u002Fassert.quiet-eval\n;assert.quiet_eval = 0\n\n[COM]\n; path to a file containing GUIDs, IIDs or filenames of files with TypeLibs\n; http:\u002F\u002Fphp.net\u002Fcom.typelib-file\n;com.typelib_file =\n\n; allow Distributed-COM calls\n; http:\u002F\u002Fphp.net\u002Fcom.allow-dcom\n;com.allow_dcom = true\n\n; autoregister constants of a components typlib on com_load()\n; http:\u002F\u002Fphp.net\u002Fcom.autoregister-typelib\n;com.autoregister_typelib = true\n\n; register constants casesensitive\n; http:\u002F\u002Fphp.net\u002Fcom.autoregister-casesensitive\n;com.autoregister_casesensitive = false\n\n; show warnings on duplicate constant registrations\n; http:\u002F\u002Fphp.net\u002Fcom.autoregister-verbose\n;com.autoregister_verbose = true\n\n; The default character set code-page to use when passing strings to and from COM objects.\n; Default: system ANSI code page\n;com.code_page=\n\n[mbstring]\n; \u003Cem\u003Elan\u003C\u002Fem\u003E\u003Cem\u003Eguage\u003C\u002Fem\u003E for internal character representation.\n; http:\u002F\u002Fphp.net\u002Fmbstring.\u003Cem\u003Elan\u003C\u002Fem\u003E\u003Cem\u003Eguage\u003C\u002Fem\u003E\n;mbstring.\u003Cem\u003Elan\u003C\u002Fem\u003E\u003Cem\u003Eguage\u003C\u002Fem\u003E = Japanese\n\n; internal\u002F\u003Cem\u003Escript\u003C\u002Fem\u003E encoding.\n; Some encoding cannot work as internal encoding.\n; (e.g. SJIS, BIG5, ISO-2022-*)\n; http:\u002F\u002Fphp.net\u002Fmbstring.internal-encoding\n;mbstring.internal_encoding = EUC-JP\n\n; http input encoding.\n; http:\u002F\u002Fphp.net\u002Fmbstring.http-input\n;mbstring.http_input = auto\n\n; http output encoding. mb_output_handler must be\n; registered as output buffer to function\n; http:\u002F\u002Fphp.net\u002Fmbstring.http-output\n;mbstring.http_output = SJIS\n\n; enable automatic encoding translation according to\n; mbstring.internal_encoding setting. Input chars are\n; converted to internal encoding by setting this to On.\n; Note: Do _not_ use automatic encoding translation for\n; portable libs\u002Fapplications.\n; http:\u002F\u002Fphp.net\u002Fmbstring.encoding-translation\n;mbstring.encoding_translation = Off\n\n; automatic encoding detection order.\n; auto means\n; http:\u002F\u002Fphp.net\u002Fmbstring.detect-order\n;mbstring.detect_order = auto\n\n; substitute_character used when character cannot be converted\n; one from another\n; http:\u002F\u002Fphp.net\u002Fmbstring.substitute-character\n;mbstring.substitute_character = none;\n\n; overload(replace) single byte functions by mbstring functions.\n; mail(), ereg(), etc are overloaded by mb_send_mail(), mb_ereg(),\n; etc. Possible values are 0,1,2,4 or combination of them.\n; For example, 7 for overload everything.\n; 0: No overload\n; 1: Overload mail() function\n; 2: Overload str*() functions\n; 4: Overload ereg*() functions\n; http:\u002F\u002Fphp.net\u002Fmbstring.func-overload\n;mbstring.func_overload = 0\n\n; enable strict encoding detection.\n;mbstring.strict_detection = Off\n\n; This directive specifies the regex pattern of content types for which mb_output_handler()\n; is activated.\n; Default: mbstring.http_output_conv_mimetype=^(text\u002F|application\u002Fxhtml\\+xml)\n;mbstring.http_output_conv_mimetype=\n\n[gd]\n; Tell the jpeg decode to ignore warnings and try to \u003Cem\u003Ecreate\u003C\u002Fem\u003E\n; a gd image. The warning will then be displayed as notices\n; disabled by default\n; http:\u002F\u002Fphp.net\u002Fgd.jpeg-ignore-warning\n;gd.jpeg_ignore_warning = 0\n\n[exif]\n; Exif UNICODE user comments are handled as UCS-2BE\u002FUCS-2LE and JIS as JIS.\n; With mbstring support this will automatically be converted into the encoding\n; given by corresponding encode setting. When empty mbstring.internal_encoding\n; is used. For the decode settings you can distinguish between motorola and\n; intel byte order. A decode setting cannot be empty.\n; http:\u002F\u002Fphp.net\u002Fexif.encode-unicode\n;exif.encode_unicode = ISO-8859-15\n\n; http:\u002F\u002Fphp.net\u002Fexif.decode-unicode-motorola\n;exif.decode_unicode_motorola = UCS-2BE\n\n; http:\u002F\u002Fphp.net\u002Fexif.decode-unicode-intel\n;exif.decode_unicode_intel = UCS-2LE\n\n; http:\u002F\u002Fphp.net\u002Fexif.encode-jis\n;exif.encode_jis =\n\n; http:\u002F\u002Fphp.net\u002Fexif.decode-jis-motorola\n;exif.decode_jis_motorola = JIS\n\n; http:\u002F\u002Fphp.net\u002Fexif.decode-jis-intel\n;exif.decode_jis_intel = JIS\n\n[Tidy]\n; The path to a default tidy configuration file to use when using tidy\n; http:\u002F\u002Fphp.net\u002Ftidy.default-config\n;tidy.default_config = \u002Fusr\u002Flocal\u002Flib\u002Fphp\u002Fdefault.tcfg\n\n; Should tidy clean and repair output automatically?\n; WARNING: Do not use this option if you are generating non-html content\n; such as dynamic images\n; http:\u002F\u002Fphp.net\u002Ftidy.clean-output\ntidy.clean_output = Off\n\n[soap]\n; Enables or disables WSDL caching feature.\n; http:\u002F\u002Fphp.net\u002Fsoap.wsdl-cache-enabled\nsoap.wsdl_cache_enabled=1\n\n; Sets the directory name where SOAP extension will put cache files.\n; http:\u002F\u002Fphp.net\u002Fsoap.wsdl-cache-dir\nsoap.wsdl_cache_dir=\"\u002Ftmp\"\n\n; (time to live) Sets the number of second while cached file will be used\n; instead of original one.\n; http:\u002F\u002Fphp.net\u002Fsoap.wsdl-cache-ttl\nsoap.wsdl_cache_ttl=86400\n\n; Sets the size of the cache limit. (Max. number of WSDL files to cache)\nsoap.wsdl_cache_limit = 5\n\n[sysvshm]\n; A default size of the shared memory segment\n;sysvshm.init_mem = 10000\n\n[ldap]\n; Sets the maximum number of open links or -1 for unlimited.\nldap.max_links = -1\n\n[mcrypt]\n; For more information about mcrypt settings see http:\u002F\u002Fphp.net\u002Fmcrypt-module-open\n\n; Directory where to load mcrypt algorithms\n; Default: Compiled in into libmcrypt (usually \u002Fusr\u002Flocal\u002Flib\u002Flibmcrypt)\n;mcrypt.algorithms_dir=\n\n; Directory where to load mcrypt modes\n; Default: Compiled in into libmcrypt (usually \u002Fusr\u002Flocal\u002Flib\u002Flibmcrypt)\n;mcrypt.modes_dir=\n\n[dba]\n;dba.default_handler=\n\n[curl]\n; A default value for the CURLOPT_CAINFO option. This is required to be an\n; absolute path.\n;curl.cainfo =\n\n; Local Variables:\n; tab-width: 4\n; End:","createTime":"2015-05-08 15:43:45","dataReportQuery":"spm=1035.2023.3001.6557&utm_medium=distribute.pc_relevant_bbs_down_v2.none-task-download-2~default~OPENSEARCH~Rate-3-8676379-bbs-260035406.264^v3^pc_relevant_bbs_down_v2_default&depth_1-utm_source=distribute.pc_relevant_bbs_down_v2.none-task-download-2~default~OPENSEARCH~Rate-3-8676379-bbs-260035406.264^v3^pc_relevant_bbs_down_v2_default","dataReportClick":"{\"mod\":\"popu_645\",\"index\":\"3\",\"dest\":\"https:\u002F\u002Fdownload.csdn.net\u002Fdownload\u002Fu012204837\u002F8676379\",\"strategy\":\"2~default~OPENSEARCH~Rate\",\"extra\":\"{\\\"utm_medium\\\":\\\"distribute.pc_relevant_bbs_down_v2.none-task-download-2~default~OPENSEARCH~Rate-3-8676379-bbs-260035406.264^v3^pc_relevant_bbs_down_v2_default\\\",\\\"dist_request_id\\\":\\\"1714024095707_94894\\\"}\",\"spm\":\"1035.2023.3001.6557\"}","dataReportView":"{\"mod\":\"popu_645\",\"index\":\"3\",\"dest\":\"https:\u002F\u002Fdownload.csdn.net\u002Fdownload\u002Fu012204837\u002F8676379\",\"strategy\":\"2~default~OPENSEARCH~Rate\",\"extra\":\"{\\\"utm_medium\\\":\\\"distribute.pc_relevant_bbs_down_v2.none-task-download-2~default~OPENSEARCH~Rate-3-8676379-bbs-260035406.264^v3^pc_relevant_bbs_down_v2_default\\\",\\\"dist_request_id\\\":\\\"1714024095707_94894\\\"}\",\"spm\":\"1035.2023.3001.6557\"}","type":"download"},{"url":"https:\u002F\u002Fdownload.csdn.net\u002Fdownload\u002Ffanshuzone\u002F196338","title":"cuteEditor6.0","desc":"\u003Cbr\u002F\u003ECuteEditor功能特点 \u003Cbr\u002F\u003E是什么使CuteEditor成为Html在线编辑器的领航者?除了其强大的功能和方便的使用, 这里还有一些顶尖的技术因素是CuteEditor编辑器成为你编辑和发布Web内容的最佳选择: \u003Cbr\u002F\u003E 界面简洁加载速度快 \u003Cbr\u002F\u003E\u003Cbr\u002F\u003E由于才有了很多优化方法,所以CuteEditor非常简单、小巧、装载速度快,但仍然保持功能强大、执行效率高的特点。 \u003Cbr\u002F\u003E \u003Cbr\u002F\u003E 跨浏览器,跨平台的所见即所得在线html编辑器 \u003Cbr\u002F\u003E\u003Cbr\u002F\u003E兼容市面上最流行的ie5.5+,firefox1.0+,mozilla1.3+, netscape7+和Safari(1.3+)浏览器,并且包括Mac和Linux操作平台。 \u003Cbr\u002F\u003E \u003Cbr\u002F\u003E CuteEditor遵循Web标准,没有类似 \u003CFONT\u003E 这种标签 \u003Cbr\u002F\u003E\u003Cbr\u002F\u003E你的Html编辑器还在使用类似 \u003CFONT\u003E这种标签么? CuteEditor会帮助你构建用户最新Web标准的html代码标签,自动生成简洁的HTML\u002FXHTML代码。 为什么要遵循Web标准? \u003Cbr\u002F\u003E\u003Cbr\u002F\u003E学习应用Web标准有很多益处,下面给几个简单例子:\u003Cbr\u002F\u003E\u003Cbr\u002F\u003E获得好的搜索引擎排名: The separation of content and presentation makes the content represent a larger part of the total file size. Combined with semantic markup this will improve search \u003Cem\u003Eengine\u003C\u002Fem\u003E rankings. \u003Cbr\u002F\u003E更快的下载和加载网页: Less HTML results in smaller file sizes and quicker downloads. Modern web browsers render pages faster when they are in their standards mode than when they are in their backwards compatible mode. \u003Cbr\u002F\u003E适应未来网页浏览器: When you use defined standards and valid code you future-proof your documents by reducing the risk of future web browsers not being able to understand the code you have used. \u003Cbr\u002F\u003E代码编写简单,维护方便: Using more semantic and structured HTML makes it easier and quicker to understand code \u003Cem\u003Ecreate\u003C\u002Fem\u003Ed by somebody else. \u003Cbr\u002F\u003E适应其他设备: Semantic HTML, where structure is separated from presentation, makes it easier for screen readers and alternative browsing devices to interpret the content. \u003Cbr\u002F\u003E非常好的适应性: A semantically marked up document can be easily adapted to print and alternative browsing devices, like handheld computers and cellular phones, just by linking to a different CSS file. You can also make site-wide changes to presentation by editing a single file. \u003Cbr\u002F\u003ERead more:\u003Cbr\u002F\u003E我的网页符合Web标准,你的呢? \u003Cbr\u002F\u003E 能自动清理HTML代码中Word标记 \u003Cbr\u002F\u003E\u003Cbr\u002F\u003EWhen text is pasted from Microsoft Word allot of unnecessary word specific markup is carried across. This can result in web pages that take an unnecessarily long time to download. The Paste from Word button solves this by removing word markup before pasting the text into your page. \u003Cbr\u002F\u003E \u003Cbr\u002F\u003E 支持W3C WAI和section 508的无障碍引导 \u003Cbr\u002F\u003E\u003Cbr\u002F\u003ECute Editor optional accessibility settings ensure your site complies with Section 508, so people with disabilities can have full access to your content.\u003Cbr\u002F\u003E \u003Cbr\u002F\u003E 输出的HTML或不错的XHTML供你选择 (Demo)\u003Cbr\u002F\u003E\u003Cbr\u002F\u003ECute Editor supports output well-formed XHTML. Your choice of XHTML 1.0 or HTML 4.01 output. \u003Cbr\u002F\u003E\u003Cbr\u002F\u003E \u003Cbr\u002F\u003E 无限次的撤销\u002F恢复\u003Cbr\u002F\u003E\u003Cbr\u002F\u003EMany of the other editors on the market cannot undo or redo certain actions, and certain table operations - such as cell merge or column deletion. Cute Editor 4.0 has a new custom undo\u002Fredo implementation to make you can now safely undo those actions. \u003Cbr\u002F\u003E\u003Cbr\u002F\u003E \u003Cbr\u002F\u003E 多语言支持,通过简单设置XML即可完成 (Demo)\u003Cbr\u002F\u003E\u003Cbr\u002F\u003EAll labels, buttons, tooltips and messages are located in external XML files, so that the \u003Cem\u003Elan\u003C\u002Fem\u003E\u003Cem\u003Eguage\u003C\u002Fem\u003E of the editor can be switched with a single property. You can also \u003Cem\u003Ecreate\u003C\u002Fem\u003E a new \u003Cem\u003Elan\u003C\u002Fem\u003E\u003Cem\u003Eguage\u003C\u002Fem\u003E in a matter of minutes. \u003Cbr\u002F\u003E \u003Cbr\u002F\u003E 完全支持页面编辑(从 \u003CHTML\u003E 到 \u003C\u002FHTML\u003E) (Demo)\u003Cbr\u002F\u003E\u003Cbr\u002F\u003ECute Editor 4.0 allows you to edit a full HTML page, including \u003Ctitle\u003E, \u003C!DOCTYPE...\u003E and some other options. You can also insert Form elements (checkbox, button, textarea, etc.) and modify certain properties of the element.\u003Cbr\u002F\u003E \u003Cbr\u002F\u003E 默认换行为软回车 (Demo)\u003Cbr\u002F\u003E\u003Cbr\u002F\u003EMost other editors insert double line returns which can be annoying for clients who are used to editing in Microsoft Word. CuteEditor can be configured to use \u003Cdiv\u003E, \u003Cbr\u003E or \u003Cp\u003E tags when you press enter. In either mode \u003Cbr\u003E tags can be \u003Cem\u003Ecreate\u003C\u002Fem\u003Ed by using shift+enter.\u003Cbr\u002F\u003E \u003Cbr\u002F\u003E 支持代码缩进和小写字母\u003Cbr\u002F\u003E\u003Cbr\u002F\u003ECute Editor displays nicely indented code in the HTML mode and the generating HTML tags and Attributes are in lower case. This is very convenient and important for the advanced users. \u003Cbr\u002F\u003E \u003Cbr\u002F\u003E 支持全屏编辑 (Demo)\u003Cbr\u002F\u003E\u003Cbr\u002F\u003EIt does not open a new window, instead it will resize to fit the browser screen. Edit in full screen mode, maximizing your available space. \u003Cbr\u002F\u003E\u003Cbr\u002F\u003E \u003Cbr\u002F\u003E 没有打开较慢的Java或ActiveX组件\u003Cbr\u002F\u003E\u003Cbr\u002F\u003E100% DHTML, Java\u003Cem\u003EScript\u003C\u002Fem\u003E ASP.Net code. There are no slow Java or ActiveX components to worry about and everything is handled in the browser! \u003Cbr\u002F\u003E\u003Cbr\u002F\u003E \u003Cbr\u002F\u003E 支持相对地址和URL自动关联(Demo)\u003Cbr\u002F\u003E\u003Cbr\u002F\u003EWith Cute Editor, you have the choice of using either a relative or absolute URL. \u003Cbr\u002F\u003E \u003Cbr\u002F\u003E 部署简单\u003Cbr\u002F\u003E\u003Cbr\u002F\u003EThe perfect addition to your content management system! Only a couple lines of code , you don't need to be an expert. Allows you to add an online HTML editing functionality that works with standard HTML form.\u003Cbr\u002F\u003E \u003Cbr\u002F\u003E 可以简单的通过API隐藏按钮和标签 \u003Cbr\u002F\u003E\u003Cbr\u002F\u003ECute Editor allows developers to set the image directory, set the controls width, disable image uploading and deleting, restrict access to the source\u002Fpreview tabs, hide buttons and lists that you don't want your clients to see or access. \u003Cbr\u002F\u003E \u003Cbr\u002F\u003E 支持图片的文字环绕 \u003Cbr\u002F\u003E\u003Cbr\u002F\u003ELocate the image you want to wrap text around, and click any justify button in the toolbar. The image will float to the desired direction. Text will be positioned around the image. \u003Cbr\u002F\u003E \u003Cbr\u002F\u003E 支持文件下载 \u003Cbr\u002F\u003E\u003Cbr\u002F\u003EYou can upload document files, \u003Cem\u003Ecreate\u003C\u002Fem\u003E a link from your HTML content to the document files (zip files, ppt files...). \u003Cbr\u002F\u003E \u003Cbr\u002F\u003E CSS型皮肤 (Demo)\u003Cbr\u002F\u003E\u003Cbr\u002F\u003ECute Editor provides several built in themes that are ready to use. Developers can completely change the appearance of the toolbar and the dialogs by simply modifying the supplied classes and images. \u003Cbr\u002F\u003E \u003Cbr\u002F\u003E 高级的表格管理\u003Cbr\u002F\u003E\u003Cbr\u002F\u003E\u003Cem\u003ECreate\u003C\u002Fem\u003E and modify tables and table cells. Set their border color, alignment, cellspacing and more! Once you've \u003Cem\u003Ecreate\u003C\u002Fem\u003Ed a table, simply right click inside of it and use the handy popup menu to change its attributes. \u003Ccaption\u003E,\u003Csummary\u003E,\u003Cthead\u003E,\u003Ctfoot\u003E,\u003Cth\u003E tags are supported. \u003Cbr\u002F\u003E\u003Cbr\u002F\u003E \u003Cbr\u002F\u003E 图片插入和自动上传\u003Cbr\u002F\u003E\u003Cbr\u002F\u003EBuilt-in thumbnail generator. Thumbnail images are dynamically \u003Cem\u003Ecreate\u003C\u002Fem\u003Ed; Supports upload new images. Paging - specify how many images. Support auto resize images.\u003Cbr\u002F\u003E \u003Cbr\u002F\u003E 具有特殊的对话框\u003Cbr\u002F\u003E\u003Cbr\u002F\u003EWith Style builder dialog box you can apply CSS style attributes directly to any HTML elements on your Web page.\u003Cbr\u002F\u003E \u003Cbr\u002F\u003E 支持内容模板 (Demo)\u003Cbr\u002F\u003E\u003Cbr\u002F\u003EThe basic idea behind a Content Management System (CMS) is to separate the management of content from design. Cute Editor allows the site designer to easily \u003Cem\u003Ecreate\u003C\u002Fem\u003E and establish templates to give the site a uniform look. Templates may be modified when desired. \u003Cbr\u002F\u003E \u003Cbr\u002F\u003E 通过限制html和文字的长度来保护你的数据库 (Demo)\u003Cbr\u002F\u003E\u003Cbr\u002F\u003EIf you tried to insert a record whose text length is greater than allowed by your table, an error will be reported. To prevent this type of error from occurring, developers can use MaxHTMLLength or MaxTextLength in the Cute Editor to limit the length of the user抯 input. \u003Cbr\u002F\u003E \u003Cbr\u002F\u003E Apply security to control user access to resources \u003Cbr\u002F\u003E\u003Cbr\u002F\u003ECute Editor allows developers to assign a pre-defined set of permissions by group or individual. This prevents a normal user to access the administration functionality. \u003Cbr\u002F\u003E\u003Cbr\u002F\u003EThe details of permissions are \u003Cem\u003Especified\u003C\u002Fem\u003E by an XML security policy file. Each level maps to a specific file. The default mappings: \u003Cbr\u002F\u003E\u003Cbr\u002F\u003Eadmin设置 admin.config \u003Cbr\u002F\u003Edefault设置 default.config \u003Cbr\u002F\u003Eguest设置 guest.config \u003Cbr\u002F\u003EYou can customize and extend each policy file by editing the XML security policy file. You can also \u003Cem\u003Ecreate\u003C\u002Fem\u003E your own policy files that define arbitrary permission sets.\u003Cbr\u002F\u003E\u003Cbr\u002F\u003EComparison of the sample security policy file \u003Cbr\u002F\u003E\u003Cbr\u002F\u003E \u003Cbr\u002F\u003EPermissions\u002FResource Setting Admin Default Guest \u003Cbr\u002F\u003EAllowUpload \u003Cbr\u002F\u003EAllowDelete \u003Cbr\u002F\u003EAllowCopy \u003Cbr\u002F\u003EAllowMove \u003Cbr\u002F\u003EAllow\u003Cem\u003ECreate\u003C\u002Fem\u003EFolder \u003Cbr\u002F\u003EAllowDeleteFolder \u003Cbr\u002F\u003ERestrictUploadedImageDimension \u003Cbr\u002F\u003EAutoResizeUploadedImages \u003Cbr\u002F\u003EMaxImageWidth 6400 640 640 \u003Cbr\u002F\u003EMaxImageHeight 4800 480 480 \u003Cbr\u002F\u003EMaxImageSize 10000 100 100 \u003Cbr\u002F\u003EMaxMediaSize 10000 100 100 \u003Cbr\u002F\u003EMaxFlashSize 10000 100 100 \u003Cbr\u002F\u003EMaxDocumentSize 10000 100 100 \u003Cbr\u002F\u003EImageGalleryPath ~\u002Fuploads ~\u002Fuploads\u002Fmember ~\u002Fuploads\u002Fguest \u003Cbr\u002F\u003EMediaGalleryPath ~\u002Fuploads ~\u002Fuploads\u002Fmember ~\u002Fuploads\u002Fguest \u003Cbr\u002F\u003EFlashGalleryPath ~\u002Fuploads ~\u002Fuploads\u002Fmember ~\u002Fuploads\u002Fguest \u003Cbr\u002F\u003EFilesGallaryPath ~\u002Fuploads ~\u002Fuploads\u002Fmember ~\u002Fuploads\u002Fguest \u003Cbr\u002F\u003EImageFilters .jpg \u003Cbr\u002F\u003E.jpeg \u003Cbr\u002F\u003E.gif \u003Cbr\u002F\u003E.png .jpg \u003Cbr\u002F\u003E.jpeg \u003Cbr\u002F\u003E.gif \u003Cbr\u002F\u003E .jpg \u003Cbr\u002F\u003E.jpeg \u003Cbr\u002F\u003E.gif \u003Cbr\u002F\u003E \u003Cbr\u002F\u003EMediaFilters .avi \u003Cbr\u002F\u003E.mpg \u003Cbr\u002F\u003E.mpeg \u003Cbr\u002F\u003E.mp3 .avi \u003Cbr\u002F\u003E.mpg \u003Cbr\u002F\u003E.mpeg \u003Cbr\u002F\u003E .avi \u003Cbr\u002F\u003E.mpg \u003Cbr\u002F\u003E.mpeg \u003Cbr\u002F\u003E \u003Cbr\u002F\u003EDocumentFilters .txt, .doc\u003Cbr\u002F\u003E.pdf, .zip\u003Cbr\u002F\u003E.rar, .avi\u003Cbr\u002F\u003E.mpg, .mpeg\u003Cbr\u002F\u003E.mp3, .jpg\u003Cbr\u002F\u003E.jpeg,.gif\u003Cbr\u002F\u003E.png .pdf, .doc\u003Cbr\u002F\u003E .txt, .doc\u003Cbr\u002F\u003E.pdf, .zip\u003Cbr\u002F\u003E \u003Cbr\u002F\u003E \u003Cbr\u002F\u003E 在线图片编辑\u003Cbr\u002F\u003E\u003Cbr\u002F\u003EPeople that input content on a website are generally not web designers, so most don't have that design & technical fibre in them. With online image editor, you can now edit image file with no image editing software to download or install! Easy drag and drop familiar interface. Resize, change dimensions, scale, crop, add text, optimize, rotate, flip, mirror and add watermark. \u003Cbr\u002F\u003E \u003Cbr\u002F\u003E 控制上传文件夹大小\u003Cbr\u002F\u003E\u003Cbr\u002F\u003EMax Upload Folder size(Including all subfolders and files. A must have feature for people who have limited hosting space.) Dynamic display of available free space in the Upload Folder.Limits the size of your upload folder. If the max is reached uploads will be disabled. \u003Cbr\u002F\u003E \u003Cbr\u002F\u003E 支持图片热点\u003Cbr\u002F\u003E\u003Cbr\u002F\u003EImage maps are pictures with clickable regions also known as \"hotspots.\" When users click on one of the hotspots, they're directed to the page you designate. CuteEditor 5.0 lets you easily \u003Cem\u003Ecreate\u003C\u002Fem\u003E image maps to add fun and excitement to a page\u003Cbr\u002F\u003E \u003Cbr\u002F\u003E \u003Cdiv\u003E 的盒模式\u003Cbr\u002F\u003E\u003Cbr\u002F\u003E\u003Cdiv\u003E boxes offer a much greater ability to control the layout of a page. With CuteEditor, you can put any content between \u003Cdiv\u003E tags and then use CSS to style all sorts of borders, backgrounds, etc. \u003Cbr\u002F\u003E \u003Cbr\u002F\u003E 通用虚拟键盘\u003Cbr\u002F\u003E\u003Cbr\u002F\u003EVirtual Keyboard does not require changes to \u003Cem\u003Elan\u003C\u002Fem\u003E\u003Cem\u003Eguage\u003C\u002Fem\u003E settings of your system and even speeds up the entire text input process for your customers. It lets your native speaking clients to access your web resources from any location in the world without changing national keyboard layouts and fonts on their machines. \u003Cbr\u002F\u003E \u003Cbr\u002F\u003E 把图片存到数据库\u003Cbr\u002F\u003E\u003Cbr\u002F\u003EWith CuteEditor you can easily use a Sql Server database or access database as the file storage. \u003Cbr\u002F\u003E \u003Cbr\u002F\u003E RTF和HTML之间互相转换\u003Cbr\u002F\u003E\u003Cbr\u002F\u003EWith CuteEditor you can easily convert an HTML document into an RTF file and RTF file into HTML or XHTML document. \u003Cbr\u002F\u003E \u003Cbr\u002F\u003E 生成PDF文件\u003Cbr\u002F\u003E\u003Cbr\u002F\u003ECuteEditor also allows you dynamically \u003Cem\u003Ecreate\u003C\u002Fem\u003E Adobe PDF documents from ASP.NET.\u003Cbr\u002F\u003E cuteEditor6.0多语言版(集成lic文件) \u003Cbr\u002F\u003E\u003Cbr\u002F\u003E目前功能强大,最好的Asp.net编辑器之一 \u003Cbr\u002F\u003E除了一般html编辑器具有的功能外,还有word过滤、图片在线处理、加水印等实用功能 \u003Cbr\u002F\u003E使用关键步骤: \u003Cbr\u002F\u003E\u003Cbr\u002F\u003E1、引用bin下的cuteEditor文件 \u003Cbr\u002F\u003E2、在aspx页面顶部中添加引用 \u003Cbr\u002F\u003E3、在aspx页面中加入代码 \u003Cbr\u002F\u003E4、最后可以在.cs文件中通过来读取Editor1.Text的值来进行任意的扩展和控制了 \u003Cbr\u002F\u003E具体配置可参照default.aspx和default.aspx.cs \u003Cbr\u002F\u003E\u003Cbr\u002F\u003E关于cuteEditor6.0的特征及体验请浏览cuteEditor.cn,系统集成了lic授权文件,仅供体验测试使用,请不要用于任何商业用途! \u003Cbr\u002F\u003E\u003Cbr\u002F\u003E \u003Cbr\u002F\u003E","createTime":"2007-06-19 11:25:19","dataReportQuery":"spm=1035.2023.3001.6557&utm_medium=distribute.pc_relevant_bbs_down_v2.none-task-download-2~default~OPENSEARCH~Rate-4-196338-bbs-260035406.264^v3^pc_relevant_bbs_down_v2_default&depth_1-utm_source=distribute.pc_relevant_bbs_down_v2.none-task-download-2~default~OPENSEARCH~Rate-4-196338-bbs-260035406.264^v3^pc_relevant_bbs_down_v2_default","dataReportClick":"{\"mod\":\"popu_645\",\"index\":\"4\",\"dest\":\"https:\u002F\u002Fdownload.csdn.net\u002Fdownload\u002Ffanshuzone\u002F196338\",\"strategy\":\"2~default~OPENSEARCH~Rate\",\"extra\":\"{\\\"utm_medium\\\":\\\"distribute.pc_relevant_bbs_down_v2.none-task-download-2~default~OPENSEARCH~Rate-4-196338-bbs-260035406.264^v3^pc_relevant_bbs_down_v2_default\\\",\\\"dist_request_id\\\":\\\"1714024095707_94894\\\"}\",\"spm\":\"1035.2023.3001.6557\"}","dataReportView":"{\"mod\":\"popu_645\",\"index\":\"4\",\"dest\":\"https:\u002F\u002Fdownload.csdn.net\u002Fdownload\u002Ffanshuzone\u002F196338\",\"strategy\":\"2~default~OPENSEARCH~Rate\",\"extra\":\"{\\\"utm_medium\\\":\\\"distribute.pc_relevant_bbs_down_v2.none-task-download-2~default~OPENSEARCH~Rate-4-196338-bbs-260035406.264^v3^pc_relevant_bbs_down_v2_default\\\",\\\"dist_request_id\\\":\\\"1714024095707_94894\\\"}\",\"spm\":\"1035.2023.3001.6557\"}","type":"download"},{"url":"https:\u002F\u002Fdownload.csdn.net\u002Fdownload\u002Fivy1982\u002F6692043","title":"FastReport.v4.15 for.Delphi.BCB.Full.Source企业版含ClientServer中文修正版支持D4-XE5","desc":"FastReport.v4.15 for.Delphi.BCB.Full.Source企业版含ClientServer中文修正版支持Delphi 4-XE5 and C++Builder 6-XE5.\nD2010以上版本(D14_D19)安装必读\ndelphi2010以上版本(D14_D19)使用者安装时,请将res\\frccD14_D19.exe更名名为frcc.exe\nfrccD14_D19.exe是专门的delphi2010以上版本(D14_D19)编码器。其他低delphi版本,请使用frcc.exe\n\nFastReport® VCL is an add-on component that allows your application to generate reports quickly and efficiently. FastReport® provides all the tools necessary for developing reports, including a visual report designer, a reporting core, and a preview window. It can be used in Embarcadero (ex Bor\u003Cem\u003Elan\u003C\u002Fem\u003Ed and CodeGear) Delphi 4-XE5 and C++Builder 6-XE5.\n\nversion 4.15\n---------------\n+ Added Embarcadero RAD Studio XE5 support\n+ Added Internal components for FireDac database \u003Cem\u003Eengine\u003C\u002Fem\u003E\n+ fixed bug with images in PDF export for OSX viewers \n+ Added ability to set font charset to default in Style Editor\n- fixed duplex problem when printing several copies of the report\n- fixed problem with PNG images\n- fixed problem with TfrxPictureView transparent \n\nversion 4.14\n---------------\n+ Added Embarcadero RAD Studio XE4 support\n- [Lazarus] fixed bug with text output\n- [Lazarus] fixed bug with some visual controls in designer\n- [Lazarus] improved interface of the report preview and designer\n- [Lazarus] fixed bug with boolean propertyes in \u003Cem\u003Escript\u003C\u002Fem\u003E code and expressions\n- fixed bug with endless loop in TfrxRichView\n- fixed bug with Unicode in TfrxMemoView appeared in previous release\n- improved MAPI interface in TfrxExportMail export\n- fixed some problems with allpication styles XE2\u002FXE3\n- improved compatibility with Fast Report FMX\n\nversion 4.13\n---------------\n+ Added Lazarus Beta support starts from Fast Report Professionnal edition. Current version allows preview, print and design report template under Windows and Linux platform (qt).\n+ Added Embarcadero RAD Studio XE3 support\n- fixed compatibility with Fast Report FMX installed in the same IDE. This version can co exist with Fast Report FMX version at the same time.\n+ published \"Quality\" property of TfrxPDFExport object\n+ published \"UseMAPI\" property of TfrxExportMail object\n+ published \"PictureType\" property to ODF export\n- fixed bug with expressions in RichEdit\n- fixed bug in multi-column reports\n- fixed exception in the report designer\n- fixed bug with URLs in Open Document Text and Open Document Spreadsheet exports\n- fixed format string in XLS OLE export \n- fixed format string in XLS BIFF8 export \n- fixed output of the check boxes on the highlighted lines in PDF export\n- fixed bug with PDF anchors\n- fixed bug when using two or more macroses in memo\n\nversion 4.12\n---------------\n+ added support of Embarcadero Rad Studio EX2 (x32\u002Fx64)\n+ added export of Excel formulas in the BIFF export\n+ added export of external URLs in the PDF export\n+ added converter from Rave Reports ConverterRR2FR.pas\n+ added Cross.KeepRowsTogether property\n+ optimised merging cells in the BIFF export\n+ added property DataOnly to exports\n+ pictures format in all exports switched to PNG\n+ improved number formats processing in the BIFF export\n+ added property DataOnly to exports\n+ added property TfrxODFExport.SingleSheet\n+ added property TfrxSimpleTextExport.DeleteEmptyColumns\n+ added property TfrxBIFFExport.DeleteEmptyRows\n+ added progress bar to the BIFF export\n- fixed bug with frame for some barcode types\n- fixed wrong metafiles size in the EMF export\n- fixed processing of negative numbers in the OLE export\n- fixed bug in handling exceptions in the OLE export\n- fixed bug in creation of the progress bar (applicable to many exports)\n- fixed bug in the ODF export in strings processing\n- fixed bug in the OLE export in numbers formatting\n- fixed bug in the PDF export in rotating texts 90, 180 and 270 degrees\n- fixed bug in the ODF export in processing of headers and footers\n- fixed bug in the Text export in computing object bounds\n- fixed bug in the ODF export in UTF8 encoding\n- fixed hiding gridlines around nonempty cells in the BIFF export \n- fixed images bluring when exporting\n- fixed word wrapping in the Excel XML export\n\nversion 4.11\n---------------\n+ added BIFF8 XLS export filter\n+ added to ODF export the \u003Cem\u003ELan\u003C\u002Fem\u003E\u003Cem\u003Eguage\u003C\u002Fem\u003E property\n+ [enterprise] added \"\u003Cem\u003Escript\u003C\u002Fem\u003Es\" folder for additional units (\"uses\" directive in report \u003Cem\u003Escript\u003C\u002Fem\u003E)\n+ [enterprise] added logs for scheduler (add info in scheduler.log)\n+ [enterprise] added property \"Reports\" - \"\u003Cem\u003EScript\u003C\u002Fem\u003Es\" in server configuration - set the path for \"uses\" directive in report \u003Cem\u003Escript\u003C\u002Fem\u003E\n+ [enterprise] added property \"Http\" - \"MaxSessions\" in server configuration - set the limit of maximum session threads, set 0 for unlimit\n+ [enterprise] added property \"Reports\" - \"MaxReports\" in server configuration - set the limit of maximum report threads, set 0 for unlimit\n+ [enterprise] added property \"Logs\" - \"SchedulerLog\" in server configuration - set the scheduler log file name\n+ [enterprise] added property \"Scheduler\" - \"Active\" in server configuration - enable of scheduler \n+ [enterprise] added property \"Scheduler\" - \"Debug\" in server configuration - enable writing of debug info in scheduler log\n+ [enterprise] added property \"Scheduler\" - \"StudioPath\" in server configuration - set the path to FastReport Studio, leave b\u003Cem\u003Elan\u003C\u002Fem\u003Ek for default\n- [enterprise] fixed bug with MIME types in http header (content-type)\n- [enterprise] fixed bug with default configuration (with missed config.xml)\n- [enterprise] fixed bug with error pages\n- fixed bug in XML export with the ShowProgress property\n- fixed bug in RTF export with font size in empty cells\n- fixed bug in ODF export with UTF8 encoding of the Creator field\n- fixed bug in XML export with processing special characters in strings\n- fixed bug in ODF export with properties table:number-columns-spanned, table:number-rows-spanned\n- fixed bug in ODF export with the background clNone color\n- fixed bug in ODF export with a style of table:covered-table-cell\n- fixed bug in ODF export with table:covered-table-cell duplicates\n- fixed bug in ODF export with excessive text:p inside table:covered-table-cell\n- fixed bug in ODF export with \u003Cem\u003Elan\u003C\u002Fem\u003E\u003Cem\u003Eguage\u003C\u002Fem\u003E styles\n- fixed bug in ODF export with spaces and tab symbols\n- fixed bug in ODF export with styles of number cells\n- fixed bug in ODF export with the background picture\n- fixed bug in ODF export with charspacing\n- fixed bug in ODF export with number formatting\n- fixed bug in ODF export with table-row tag\n- fixed bug in XLS(OLE) export with numbers formatting\n- fixed bug in RTF export with processing RTF fields\n- fixed bug with processing special symbols in HTML Export\n- fixed bug with UTF8 encoding in ODF export\n- fixed bug in PDF export with underlined, struck-out and rotated texts\n\nversion 4.10\n---------------\n+ added support of Embarcadero Rad Studio XE (Delphi EX\u002FC++Builder EX)\n+ added support of TeeChart 2010 packages (new series type aren't support in this release)\n+ added a property TruncateLongTexts to the XLS OLE export that allows to disable truncating texts longer than a \u003Cem\u003Especified\u003C\u002Fem\u003E limit\n+ added option EmbedProt which allows to disable embedding fonts into an encrypted PDF file\n+ added TfrxDateEditControl.WeekNumbers property\n- fixed bug in XML and PDF exports with Korean charmap\n- fixed bug in the XLS XML export about striked-out texts\n- fixed bug about exporting an empty page via the XLS OLE export\n- fixed bug in the PDF export about coloring the background of pages\n- fixed bug in embedded designer when using break point in \u003Cem\u003Escript\u003C\u002Fem\u003E\n- fixed bug with lost of focus in font size combo-box in designer\n- fixed bug with truncate of font size combo-box in Windows Vista\u002F7 in designer (lost of vertical scroll bar)\n- fixed bug when lost file name in inherited report\n- fixed bug in multi-page report with EndlessHeight\u002FEndlessWidth\n- fixed bug wit TfrxHeader.ReprintOnNewpage and KeepTogether\n- fixed bug in multi-column report with child bands\n- improved split mechanism (added TfrxStretcheable.HasNextDataPart for complicated data like RTF tables)\n- improved crosstab speed when using repeat band with crosstab object\n\nversion 4.9\n---------------\n+ added outline to PDF export\n+ added anchors to PDF export\n- fixed bug with embedded TTC fonts in PDF export\n+ added an ability to \u003Cem\u003Ecreate\u003C\u002Fem\u003E multiimage TIFF files\n+ added export headers\u002Ffooters in ODF export\n+ added ability to print\u002Fexport transparent pictures (properties TfrxPictureView.Transparent and TfrxPictureView.TransparentColor) (PDF export isn't supported)\n+ added new \"split to sheet\" modes for TfrxXMLExport \n+ added support of \u002FPAGE tag in TfrxRichView, \u003Cem\u003Eengine\u003C\u002Fem\u003E automatically break report pages when find \u002FPAGE tag \n+ added ability to hide Null values in TfrxChartView (TfrxChartView.IgnoreNulls = True)\n+ added ability to set any custom page order for printing (i.e. 3,2,1,5,4 )\n+ [enterprise] added variables \"AUTHLOGIN\" and \"AUTHGROUP\" inside the any report \n+ [enterprise] now any report file can be matched with any (one and more) group, these reports are accessible only in matched groups\n+ [enterprise] now you can set-up cache delays for each report file (reports.xml)\n+ [enterprise] added new properties editor for reports in Configuration utility (see Reports tab)\n+ [enterprise] added property \"Xml\" - \"SplitType\" in server configuration - allow to select split on pages type between none\u002Fpages\u002Fprintonprev\u002Frowscount\n+ [enterprise] added property \"Xml\" - \"SplitRowsCount\" in server configuration - sets the count of rows for \"rowscount\" split type\n+ [enterprise] added property \"Xml\" - \"Extension\" in server configuration - allow select between \".xml\" and \".xls\" extension for output file\n+ [enterprise] added property \"Html\" - \"URLTarget\" in server configuration - allow select the target attribute for report URLs\n+ [enterprise] added property \"ReportsFile\" - path to file with reports to groups associations and cache delays \n+ [enterprise] added property \"ReportsListRenewTimeout\" in server configuration\n+ [enterprise] added property \"ConfigRenewTimeout\" in server configuration\n+ [enterprise] added property \"MimeType\" for each output format in server configuration \n+ [enterprise] added property \"BrowserPrint\" in server configuration - allow printing by browser, added new template nav_print_browser.html\n+ [enterprise] added dynamic file name generation of resulting formats (report_name_date_time)\n* [enterprise] SERVER_REPORTS_LIST and SERVER_REPORTS_HTML variables (list of available reports) depend from user group (for internal authentification)\n+ added drawing shapes in PDF export (not bitmap)\n+ added rotated text in PDF export (not bitmap)\n+ added \u003Cem\u003EEngine\u003C\u002Fem\u003EOptions.IgnoreDevByZero property allow to ignore division by zero exception in expressions\n+ added properties TfrxDBLookupComboBox.DropDownWidth, TfrxDBLookupComboBox.DropDownRows\n+ added event TfrxCustomExportFilter.OnBeginExport\n+ added ability to decrease font size in barcode object\n+ added ability to inseret FNC1 to \"code 128\" barcode\n+ added event TfrxPreview.OnMouseDown\n+ added support of new unicode-PDF export in D4-D6 and BCB4-BCB6\n* improved AddFrom method - anchor coping\n- fixed bug with WordWrap in PDF export\n- fixed bug with underlines in PDF export\n- fixed bug with rounded rectangles in PDF export\n- fixed CSV export to fit to the RFC 4180 specification\n- fixed bug with strikeout text in PDF export\n- fixed bug with incorrect export of TfrxRichView object in RTF format (wrong line spacing)\n- [enterprise] added critical section in TfrxServerLog.Write\n- fixed bug with setting up of the Protection Flags in the PDF export dialog window\n- fixed bug in PDF export (file structure)\n- fixed bug with pictures in Open Office Writer (odt) export\n- [enterprise] fixed bug with TfrxReportServer component in Delphi 2010\n- fixed minor errors in Embarcedero RAD Studio 2010\n- fixed bug with endless loop with using vertical bands together with page header and header with ReprintOnNewPage\n- fixed bug when using \"Keeping\" and Cross tables (incorrect cross transfer)\n- fixed bug with [CopyName#] macros when use \"Join small pages\" print mode\n- fixed bug when try to split page with endless height to several pages (NewPage, StartNewPage)\n- fixed bug with empty line TfrxRichView when adding text via expression\n- fixed bug when Footer prints even if main band is invisible (FooterAfterEach = True)\n- fixed resetting of Page variable in double-pass report with TfrxCrossView\n- fixed bug with loosing of aligning when split TfrxRichView\n- fixed buzz in reports with TfrxRichView when using RTF 4.1\n\nversion 4.8\n---------------\n+ added support of Embarcadero Rad Studio 2010 (Delphi\u002FC++Builder)\n+ added TfrxDBDataset.BCDToCurrency property\n+ added TfrxReportOptions.HiddenPassword property to set password silently from code\n+ added TfrxADOConnection.OnAfterDisconnect event \n+ added TfrxDesigner.MemoParentFont property\n+ added new TfrxDesignerRestriction: drDontEditReport\u003Cem\u003EScript\u003C\u002Fem\u003E and drDontEditInternalDatasets\n+ adedd checksum calculating for 2 5 interleaved barcode\n+ added TfrxGroupHeader.ShowChildIfDrillDown property \n+ added TfrxMailExport.OnSendMail event \n+ added RTF 4.1 support for TfrxRichText object\n+ [enterprise] added Windows Authentification mode\n+ added confirmation reading for TfrxMailExport\n+ added TimeOut field to TfrxMailExport form \n+ added ability to use keeping(KeepTogether\u002FKeepChild\u002FKeepHeader) in multi-column report\n+ added ability to split big bands(biggest than page height) by default \n* [enterprise] improved CGI for IIS\u002FApache server\n* changed PDF export (D7 and upper): added full unicode support, improved performance, decreased memory requirements\n old PDF export \u003Cem\u003Eengine\u003C\u002Fem\u003E saved in file frxExportPDF_old.pas\n- changed inheritance mechanism, correct inherits of linked objects (fixups)\n- fixed bug with Mirror Mrgins in RTF, HTML, XLS, XML, OpenOffice exports\n- fixed bug when cross tab cut the text in corner, when corner height greater than column height\n- [fs] improved \u003Cem\u003Escript\u003C\u002Fem\u003E compilation\n- improved WatchForm TListBox changet to TCheckListBox\n- improved AddFrom method - copy outline\n- Improved functional of vertical bands, shows memos placed on H-band which doesn't across VBand, also calculate expression inside it and call events (like in FR2)\n- Improved unsorted mode in crosstab(join same columns correctly)\n- Improved converter from Report Builder\n- Improved TfrxDesigner.OnInsertObject, should call when drag&drop field from data tree\n- improved DrillDownd mechanism, should work correct with master-detail-subtetail nesting \n- fixed bug with DownThenAcross in Cross Tab\n- fixed several bugs under CodeGear RAD Studio (Delphi\u002FC++Builder) 2009 \n- fixed bug with emf in ODT export\n- fixed bug with outline when build several composite reports in double pass mode\n- fixed bug when group doesn't fit on the whole page\n- fixed \"Page\" and \"Line\" variables inside vertical bands\n- fixed bug with using KeepHeader in some cases\n- fixed bug with displacement of subreport when use PrintOnParent property in some cases\n- fixed small memory leak in subreports\n- fixed problem with PageFooter and ReportSymmary when use PrintOnPreviousPage property\n- fixed bug when designer shows commented functions in object inspector\n- fixed bug when designer place function in commented text block\n- fixed bug when \u003Cem\u003EEngine\u003C\u002Fem\u003E try to split non-stretcheable view and gone to endless loop\n- fixed bug with HTML tags in memo when use shot text and WordWrap\n- [enterprise] fixed bug with variables lost on refresh\u002Fexport\n- fixed bug whih PDF,ODT export in Delphi4 and CBuilder4\n- fixed bug with some codepage which use two bytes for special symbols (Japanese ans Chinese codepages)\n- fixed bug when \u003Cem\u003Eengine\u003C\u002Fem\u003E delete first space from text in split Memo\n- fixed bug in multi-column page when band overlap stretched PageHeader\n- fixed bug with using ReprintOnNewPage\n\nversion 4.7\n---------------\n+ CodeGear RAD Studio (Delphi\u002FC++Builder) 2009 support\n+ [enterprise] enchanced error de\u003Cem\u003Escript\u003C\u002Fem\u003Eion in logs\n+ added properties TfrxHTMLExport.HTMLDocumentBegin: TStrings, \n TfrxHTMLExport.HTMLDocumentBody: TStrings, TfrxHTMLExport.HTMLDocumentEnd: TStrings\n+ improved RTF export (with line spacing, vertical gap etc)\n+ added support of Enhanced Metafile (EMF) images in Rich Text (RTF), Open Office (ODS), Excel (XLS) exports\n+ added OnAfter\u003Cem\u003EScript\u003C\u002Fem\u003ECompile event \n+ added onLoadRecentFile Event\n+ added C++ Builder demos\n+ added hot-key Ctrl + mouseWheel - Change scale in designer\n+ added TfrxMemoView.AnsiText property\n- fixed bug in RTF export with EMF pictures in OpenOffice Writer\n- fixed some multi-thread isuues in \u003Cem\u003Eengine\u003C\u002Fem\u003E, PDF, ODF exports\n- [enterprise] fixed integrated template of report navigator\n- [enterprise] fixed bug with export in Internet Explorer browser\n- fixed bug with font size of dot-matix reports in Excel and XML exports\n- fixed bug in e-mail export with many addresses\n- fixed bug in XLS export (with fast export unchecked and image object is null)\n- [enterprise] fixed bug in TfrxReportServer.OnGetVariables event\n- fixed bug in Calcl function\n- fixed memory leak in Cross editor\n- fixed progress bar and find dialog bug in DualView\n- fixed bug in PostNET and ean13 barcodes\n- fixed bug with TruncOutboundText in Dot Matrix report \n- fixed bugs with break points in syntaxis memo\n- improved BeforeConnect event in ADO \n- fixed bug in inhehited report with internal dataset\n- fixed bug in TfrxPanelControl with background color(Delphi 2005 and above)\n\n\nversion 4.6\n---------------\n+ added & , < , > to XML reader\n+ added \u003Cnowrap\u003E tag, the text concluded in tag is not broken by WordWrap, it move entirely \n+ added ability to move band without objects (Alt + Move)\n+ added ability to output pages in the preview from right to left (\"many pages\" mode), for RTL \u003Cem\u003Elan\u003C\u002Fem\u003E\u003Cem\u003Eguage\u003C\u002Fem\u003Es(PreviewOptions.RTLPreview) \n+ added ability to storing picture cache in \"temp\" file (PreviewOptions.PictureCacheInFile)\n+ added \u003Cem\u003EEngine\u003C\u002Fem\u003EOptions.UseGlobalDataSetList (added for multi-thread applications) - set it to False if you don't want use Global DataSet list(use Report.EnabledDataSet.Add() to add dataset in local list) \n+ added new property Hint for all printed objects, hints at the dialog objects now shows in StatusBar \n+ added new property TfrxDBLookupComboBox.AutoOpenDataSet (automatically opens the attached dataset after onActivate event) \n+ added new property TfrxReportPage.PageCount like TfrxDataBand.RowCount\n+ added new property WordWrap for dialog buttons (Delphi 7 and above). \n+ added sort by name to data tree\n+ added TfrxDesigner.TemplatesExt property\n+ added TfrxStyles class in \u003Cem\u003Escript\u003C\u002Fem\u003E rtti\n+ changes in the Chart editor: ability to change the name of the series, ability to move \u003Cem\u003Ecreate\u003C\u002Fem\u003Ed series, other small changes \n+ [enterprise] added configurations values refresh in run-time \n+ [enterprise] added new demo \\Demos\\ClientServer\\ISAPI\n+ [enterprise] added output to server printers from user browser (see config.xml \"AllowPrint\", set to \"no\" by default), note: experimental feature\n+ [enterprise] added reports list refresh in run-time\n+ [enterprise] added templates feature\n+ [enterprise] improved speed and stability\n+ [fs] added Tfs\u003Cem\u003EScript\u003C\u002Fem\u003E.IncludePath property\n+ [fs] added Tfs\u003Cem\u003EScript\u003C\u002Fem\u003E.UseClassLateBinding property \n+ [fs] fixed type casting from variant(string) to integer\u002Ffloat\n- changes in report inherit: FR get relative path from current loaded report(old reports based on application path works too)\n- corrected module for converting reports from Report Builder\n- fixed bug in CrossTab when set charset different from DEFAULT_CHARSET\n- fixed bug in RTF export with some TfrxRichView objects\n- fixed bug when print on \u003Cem\u003Elan\u003C\u002Fem\u003Edscape orientation with custom paper size\n- fixed bug when use network path for parent report\n- fixed bug with Band.Allowslit = True and ColumnFooter\n- fixed bug with drawing subreport on stretched band\n- fixed bug with embedded fonts in PDF export\n- fixed bug with long ReportTitle + Header + MaterData.KeepHeader = true\n- fixed bug with minimizing of Modal designer in BDS2005 and above\n- fixed bug with paths in HTML export \n- fixed bug with RTL in PDF export\n- fixed bug with SubReport in multi column page\n- fixed bug with Subreport.PrintOnParent = true in inherited report\n- fixed bug with SYMBOL_CHARSET in PDF export\n- fixed bug with the addition of datasets by inheritance report \n- fixed bug with width calculation when use HTML tags in memo \n- fixed compatibility with WideStrings module in BDS2006\u002F2007\n- fixed flicking in preview when use OnClickObject event\n- fixed free space calculation when use PrintOnPreviousPage\n- fixed preview bug with winXP themes and in last update\n- fixed subreports inherit\n- Thumbnail and Outline shows at right side for RTL \u003Cem\u003Elan\u003C\u002Fem\u003E\u003Cem\u003Eguage\u003C\u002Fem\u003Es \n- [fs] fixed bug with late binding\n\nversion 4.5\n---------------\n+ added ConverterRB2FR.pas unit for converting reports from Report Builder to Fast Report\n+ added ConverterQR2FR.pas unit for converting reports from QuickReport to FastReport\n+ added support of multiple attachments in e-mail export (html with images as example)\n+ added support of unicode (UTF-8) in e-mail export\n+ added ability to change templates path in designer\n+ added OnReportPrint \u003Cem\u003Escript\u003C\u002Fem\u003E event\n+ added PNG support in all version (start from Basic)\n+ added TfrxDMPMemoView.TruncOutboundText property - truncate outbound text in matrix report when WordWrap=false\n+ added new frames styles fsAltDot and fsSquare\n+ added new event OnPreviewDblClick in all TfrxView components\n+ added ability to call dialogs event after report run when set DestroyForms = false\n+ added ability to change AllowExpressions and HideZeros properties in cross Cells (default=false)\n+ added IgnoreDupParams property to DB components\n+ added auto open dataset in TfrxDBLookupComboBox\n+ added new property TfrxADOQuery.LockType\n+ added define DB_CAT (frx.inc) for grouping DB components\n+ added TfrxPictureView.HightQuality property(draw picture in preview with hight quality, but slow down drawing procedure)\n+ [FRViewer] added comandline options \"\u002Fprint filename\" and \"\u002Fsilent_print filename\"\n+ added unicode input support in RichEditor\n+ added new define HOOK_WNDPROC_FOR_UNICODE (frx.inc) - set hook on GetMessage function for unicode input support in D4-D7\u002FBCB4-BCB6\n+ added ability chose path to FIB packages in \"Recompile Wizard\"\n+ added new function TfrxPreview.GetTopPosition, return a position on current preview page\n+ added new hot-keys to Code Editor - Ctrl+Del delete the word before cursor, Ctrl+BackSpace delete the word after cursor(as in Delhi IDE) \n+ added \"MDI Designer\" example\n- all \u003Cem\u003Elan\u003C\u002Fem\u003E\u003Cem\u003Eguage\u003C\u002Fem\u003E resources moved to UTF8, XML\n- fixed bug with html tags [sup] and [sub]\n- fixed width calculation in TfrxMemoView when use HTML tags\n- fixed bug with suppressRepeated in Vertical bands\n- fixed bug when designer not restore scrollbars position after undo\u002Fredo\n- fixed visual bug in toolbars when use Windows Vista + XPManifest + Delphi 2006 \n- fixed bug in CalcHeight when use negative LineSpace\n- fixed bug in frx2xto30 when import query\u002Ftable components, added import for TfrDBLookupControl component\n- fixed bug with Cross and TfrxHeader.ReprintOnNewPage = true\n- fixed converting from unicode in TfrxMemoView when use non default charset\n- [fs] fixed bug with \"in\" operator\n- fixed bug with aggregate function SUM \n- fixed bug when use unicode string with [TotalPages#] in TfrxMemoView\n- fixed bug with TSQLTimeStampField field type\n- fixed designer dock-panels(\"Object Inspector\", \"Report Tree\", \"Data Tree\") when use designer as MDI or use several non-modal designer windows\n- fixed bug with hide\u002Fshow dock-panels(\"Object Inspector\", \"Report Tree\", \"Data Tree\"), now it restore size after hiding\n- fixed bug in XML\u002FXLS export - wrong encode numbers in memo after CR\u002FLF\n- fiexd bug in RTF export \n- fixed bug with undo\u002Fredo commands in previewPages designer\n- fixed bug with SuppressRepeated when use KeepTogether in group\n- fixed bug with SuppressRepeated on new page all events fired twice(use \u003Cem\u003EEngine\u003C\u002Fem\u003E.Second\u003Cem\u003EScript\u003C\u002Fem\u003Ecall to determinate it)\n\n\nversion 4.4\n---------------\n+ added support for CodeGear RAD Studio 2007\n+ improved speed of PDF, HTML, RTF, XML, ODS, ODT exports\n+ added TfrxReportPage.BackPictureVisible, BackPicturePrintable properties\n+ added rtti for the TfrxCrossView.CellFunctions property\n+ added properties TfrxPDFExport.Keywords, TfrxPDFExport.Producer, TfrxPDFExport.HideToolbar,\n TfrxPDFExport.HideMenubar, TfrxPDFExport.HideWindowUI, TfrxPDFExport.FitWindow, \n TfrxPDFExport.CenterWindow, TfrxPDFExport.PrintScaling\n+ added ability recompile frxFIB packages in \"recompile wizard\"\n+ added ability to set color property for all teechart series which support it\n+ added, setting frame style for each frame line in style editor\n+ added TfrxPreview.Locked property and TfrxPreview.DblClick event\n+ added 'invalid password' exception when load report without crypt\n+ added new parameter to InheritFromTemplate (by default = imDefault) imDefault - show Error dialog, imDelete - delete duplicates, imRename - rename duplicates\n+ added property TfrxRTFExport.AutoSize (default is \"False\") for set vertical autosize in table cells\n* redesigned dialog window of PDF export\n* improved WYSIWYG in PDF export\n- fixed bug, the PageFooter band overlap the ReportSummary band when use EndlessHeight\n- fixed bug with lage paper height in preview\n- fixed bug with outline and encryption in PDF export\n- fixed bug with solid arrows in PDF export\n- fixed bug when print TfrxHeader on a new page if ReprintOnNewPage = true and KeepFooter = True\n- fixed bug when used AllowSplit and TfrxGroupHeader.KeepTogether \n- fixed page numbers when print dotMatrix report without dialog\n- fixed bug with EndlessHeight in multi-columns report\n- fixed font dialog in rich editor\n- [fs] fixed bug when \u003Cem\u003Ecreate\u003C\u002Fem\u003E TWideStrings in \u003Cem\u003Escript\u003C\u002Fem\u003E code\n- fixed bug with dialog form when set TfrxButtonControl.Default property to True\n- fixed twice duplicate name error in PreviewPages designer when copy - past object\n- fixed bug with Preview.Clear and ZmWholePage mode\n- fixed bug with using \"outline\" together \"embedded fonts\" options in PDF export\n- fixed multi-thread bug in PDF export\n- fixed bug with solid fill of transparent rectangle shape in PDF export\n- fixed bug with export OEM_CODEPAGE in RTF, Excel exports\n- fixed bug with vertical size of single page in RTF export\n- fixed bug with vertical arrows in PDF export\n- fixed memory leak with inherited reports\n\n\nversion 4.3\n---------------\n+ added support for C++Builder 2007\n+ added encryption in PDF export\n+ added TeeChart Pro 8 support\n+ added support of OEM code page in PDF export\n+ added TfrxReport.CaseSensitiveExpressions property\n+ added \"OverwritePrompt\" property in all export components\n+ improved RTF export (WYSIWYG)\n+ added support of thai and vietnamese charsets in PDF export\n+ added support of arrows in PDF export\n* at inheritance of the report the \u003Cem\u003Escript\u003C\u002Fem\u003E from the report of an ancestor is added to the current report (as comments)\n* some changes in PDF export core\n- fixed bug with number formats in Open Document Spreadsheet export\n- fixed bug when input text in number property(Object Inspector) and close Designer(without apply changes)\n- fixed bug in TfrxDBDataset with reCurrent\n- fixed bug with memory leak in export of empty outline in PDF format\n- line# fix (bug with subreports)\n- fixed bug with edit prepared report with rich object\n- fixed bug with shadows in PDF export\n- fixed bug with arrows in designer\n- fixed bug with margins in HTML, RTF, XLS, XML exports\n- fixed bug with arrows in exports\n- fixed bug with printers enumeration in designer (list index of bound)\n- fixed papersize bug in inherited reports\n\n\nversion 4.2\n---------------\n+ added support for CodeGear Delphi 2007 \n+ added export of html tags in RTF format \n+ improved split of the rich object\n+ improved split of the memo object\n+ added TfrxReportPage.ResetPageNumbers property\n+ added support of underlines property in PDF export\n* export of the memos formatted as fkNumeric to float in ODS export\n- fixed bug keeptogether with aggregates\n- fixed bug with double-line draw in RTF export\n- fix multi-thread problem in PDF export\n- fixed bug with the shading of the paragraph in RTF export when external rich-text was inserted\n- fixed bug with unicode in xml\u002Fxls export\n- fixed bug in the crop of page in BMP, TIFF, Jpeg, Gif\n- \"scale\" printmode fixed\n- group & userdataset bugfix\n- fixed cross-tab pagination error\n- fixed bug with round brackets in PDF export\n- fixed bug with gray to black colors in RTF export\n- fixed outline with page.endlessheight\n- fixed SuppressRepeated & new page\n- fixed bug with long time export in text format\n- fixed bug with page range and outline in PDF export\n- fixed undo in code window\n- fixed error when call DesignReport twice\n- fixed unicode in the cross object\n- fixed designreportinpanel with dialog forms\n- fixed paste of DMPCommand object\n- fixed bug with the export of null images\n- fixed code completion bug\n- fixed column footer & report summary problem\n\n\n\nversion 4.1\n---------------\n+ added ability to show designer inside panel (TfrxReport.DesignReportInPanel method). See new demo Demos\\EmbedDesigner\n+ added TeeChart7 Std support\n+ [server] added \"User\" parameter in TfrxReportServer.OnGetReport, TfrxReportServer.OnGetVariables and TfrxReportServer.OnAfterBuildReport events\n+ added Cross.KeepTogether property\n+ added TfrxReport.PreviewOptions.PagesInCache property\n- barcode fix (export w\u002Fo preview bug)\n- fixed bug in preview (AV with zoommode = zmWholePage)\n- fixed bug with outline + drilldown\n- fixed datasets in inherited report\n- [install] fixed bug with library path set up in BDS\u002FTurbo C++ Builder installation\n- fixed pagefooter position if page.EndlessWidth is true\n- fixed shift bug\n- fixed design-time inheritance (folder issues)\n- fixed chm help file path\n- fixed embedded fonts in PDF\n- fixed preview buttons\n- fixed bug with syntax highlight\n- fixed bug with print scale mode\n- fixed bug with control.Hint\n- fixed edit preview page\n- fixed memory leak in cross-tab\n\n\n\nversion 4.0 initial release\n---------------------\nReport Designer:\n- new XP-style interface\n- the \"Data\" tab with all report datasets\n- ability to draw diagrams in the \"Data\" tab\n- code completion (Ctrl+Space)\n- breakpoints\n- watches\n- report templates\n- local guidelines (appears when you move or resize an object)\n- ability to work in non-modal mode, mdi child mode\n\nReport Preview:\n- thumbnails\n\nPrint:\n- split a big page to several small pages\n- print several small pages on one big\n- print a page on a \u003Cem\u003Especified\u003C\u002Fem\u003E sheet (with scale)\n- duplex handling from print dialogue\n- print copy name on each printed copy (for example, \"First copy\", \"Second copy\")\n\nReport Core:\n- \"endless page\" mode\n- images handling, increased speed\n- the \"Reset page numbers\" mode for groups\n- reports crypting (Rijndael algorithm)\n- report inheritance (both file-based and dfm-based)\n- drill-down groups\n- frxGlobalVariables object\n- \"cross-tab\" object enhancements:\n - improved cells appearance\n - cross elements visible in the designer\n - fill corner (ShowCorner property)\n - side-by-side crosstabs (NextCross property)\n - join cells with the same value (JoinEqualCells property)\n - join the same string values in a cell (AllowDuplicates property)\n - ability to put an external object inside cross-tab\n - AddWidth, AddHeight properties to increase width&height of the cell\n - AutoSize property, ability to resize cells manually\n- line object can have arrows\n- added TfrxPictureView.FileLink property (can contain variable or a file name)\n- separate settings for each frame line (properties Frame.LeftLine,\nTopLine, RightLine, BottomLine can be set in the object inspector)\n- PNG images support (uncomment {$DEFINE PNG} in the frx.inc file)\n- Open Document Format for Office Applications (OASIS) exports, spreadsheet (ods) and text (odt)\n\nEnterprise components:\n- Users\u002FGroups security support (see a demo application Demos\\ClientServer\\UserManager)\n- Templates support\n- Dynamically refresh of configuration, users\u002Fgroups\n\nD2010以上版本(D14_D19)安装必读\ndelphi2010以上版本(D14_D19)使用者安装时,请将res\\frccD14_D19.exe更名名为frcc.exe\n\nfrccD14_D19.exe是专门的delphi2010以上版本(D14_D19)编码器。其他低delphi版本,请使用frcc.exe","createTime":"2013-12-10 16:29:40","dataReportQuery":"spm=1035.2023.3001.6557&utm_medium=distribute.pc_relevant_bbs_down_v2.none-task-download-2~default~OPENSEARCH~Rate-5-6692043-bbs-260035406.264^v3^pc_relevant_bbs_down_v2_default&depth_1-utm_source=distribute.pc_relevant_bbs_down_v2.none-task-download-2~default~OPENSEARCH~Rate-5-6692043-bbs-260035406.264^v3^pc_relevant_bbs_down_v2_default","dataReportClick":"{\"mod\":\"popu_645\",\"index\":\"5\",\"dest\":\"https:\u002F\u002Fdownload.csdn.net\u002Fdownload\u002Fivy1982\u002F6692043\",\"strategy\":\"2~default~OPENSEARCH~Rate\",\"extra\":\"{\\\"utm_medium\\\":\\\"distribute.pc_relevant_bbs_down_v2.none-task-download-2~default~OPENSEARCH~Rate-5-6692043-bbs-260035406.264^v3^pc_relevant_bbs_down_v2_default\\\",\\\"dist_request_id\\\":\\\"1714024095707_94894\\\"}\",\"spm\":\"1035.2023.3001.6557\"}","dataReportView":"{\"mod\":\"popu_645\",\"index\":\"5\",\"dest\":\"https:\u002F\u002Fdownload.csdn.net\u002Fdownload\u002Fivy1982\u002F6692043\",\"strategy\":\"2~default~OPENSEARCH~Rate\",\"extra\":\"{\\\"utm_medium\\\":\\\"distribute.pc_relevant_bbs_down_v2.none-task-download-2~default~OPENSEARCH~Rate-5-6692043-bbs-260035406.264^v3^pc_relevant_bbs_down_v2_default\\\",\\\"dist_request_id\\\":\\\"1714024095707_94894\\\"}\",\"spm\":\"1035.2023.3001.6557\"}","type":"download"}],"staffDOList":[{"id":null,"communityId":302,"username":"community_187","userNickname":"基础类社区","roleCode":1,"status":1,"createUsername":"","updateUsername":"","avatarUrl":"https:\u002F\u002Fprofile-avatar.csdnimg.cn\u002Fdefault.jpg!1","createTime":"2021-05-12 18:08:42","updateTime":"2021-05-12 18:08:42","lastLoginTime":"2021-05-12 18:08:42"},{"id":null,"communityId":302,"username":"sinat_28984567","userNickname":"二月十六","roleCode":2,"status":1,"createUsername":"bbs_assistant","updateUsername":"","avatarUrl":"https:\u002F\u002Fprofile-avatar.csdnimg.cn\u002Fe4154da1658b49ca87b443a68b0fac47_sinat_28984567.jpg!1","createTime":"2021-11-30 14:13:42","updateTime":"2021-11-30 14:13:42","lastLoginTime":"2021-11-30 14:13:42"},{"id":null,"communityId":302,"username":"wmxcn2000","userNickname":"卖水果的net","roleCode":2,"status":1,"createUsername":"community_187","updateUsername":"","avatarUrl":"https:\u002F\u002Fprofile-avatar.csdnimg.cn\u002F5591b292aa3a4c7db7b6c521d7086c16_wmxcn2000.jpg!1","createTime":"2021-06-16 11:09:24","updateTime":"2021-06-16 11:09:24","lastLoginTime":"2021-06-16 11:09:24"},{"id":null,"communityId":302,"username":"yenange","userNickname":"吉普赛的歌","roleCode":2,"status":1,"createUsername":"community_187","updateUsername":"","avatarUrl":"https:\u002F\u002Fprofile-avatar.csdnimg.cn\u002Fde3b442a33594feb8507dbb9d745e40a_yenange.jpg!1","createTime":"2021-06-15 19:11:58","updateTime":"2021-06-15 19:11:58","lastLoginTime":"2021-06-15 19:11:58"}],"communityConfig":{"scoreType":0,"scoreItems":{"0":"给本帖投票","1":"锋芒小试,眼前一亮","2":"潜力巨大,未来可期","3":"持续贡献,值得关注","4":"成绩优异,大力学习","5":"贡献巨大,全力支持"}},"shouldApply":false,"subscribeAble":false,"operatorAble":false,"commentNeedJoinCommunity":false},"default2014LiveRoom":[{"itemType":"","description":"高峰论坛","title":"2022 技术英雄会","url":"https:\u002F\u002Flive.csdn.net\u002Froom\u002Fiframe\u002Fcsdnnews\u002FfsNR5NWp?chat=1&title=1&footer=1","images":["https:\u002F\u002Fimg-home.csdnimg.cn\u002Fimages\u002F20221016050009.png"],"ext":{"time":"9:00","liveRoomUrl":"https:\u002F\u002Flive.csdn.net\u002Froom\u002Fcsdnnews\u002FfsNR5NWp"}}]},"isGooglebot":false,"canonical":"https:\u002F\u002Fwww.csdn.net\u002Ftopics\u002F260035406","openUrl":"","isApp":false,"localUrl":"https:\u002F\u002Fbbs.csdn.net\u002Ftopics\u002F260035406","typeId":"index","hasIndex":false},"CFG":{"ALIPLAYER_VERSION":"v4","ALIPLAYER_H5_VERSION":"mobile_v1","ENV":"prod","ROOT_URL":"https:\u002F\u002Fcms-mall.csdn.net\u002F","VUE_APP_API_URL_SERVER":"http:\u002F\u002Fcms-community-api.internal.csdn.net\u002F","VUE_APP_API_URL":"https:\u002F\u002Fcms-api.csdn.net\u002F","LOGIN_URL":"https:\u002F\u002Fpassport.csdn.net\u002Faccount\u002Flogin","VUE_APP_DOMAIN_SKILL":"https:\u002F\u002Fedu.csdn.net\u002F","VUE_APP_DOMAIN_PATH":"https:\u002F\u002Fedu.csdn.net\u002F","VUE_APP_COMMUNITY_API_URL":"https:\u002F\u002Fcommunity-api.csdn.net\u002F","VUE_APP_CCLOUD_API_URL":"https:\u002F\u002Fbizapi.csdn.net\u002Fcommunity-cloud\u002Fv1\u002F","VUE_APP_SKILL_API_URL":"https:\u002F\u002Fbizapi.csdn.net\u002Fskilltree\u002Fapi\u002F","VUE_APP_SEARCH_PLUGIN_API_URL":"https:\u002F\u002Fbizapi.csdn.net\u002Fsearchplugin\u002F","VUE_APP_COMMUNITY_ASK_API_URL":"https:\u002F\u002Fmp-ask.csdn.net\u002F","VUE_APP_ME_URL":"https:\u002F\u002Fme.csdn.net\u002F","VUE_APP_CCLOUD_RESUME":"https:\u002F\u002Fbizapi.csdn.net\u002Fjob-api\u002F","VUE_APP_CCLOUD_MAIN":"https:\u002F\u002Fwww.csdn.net\u002F","VUE_APP_CCLOUD_UC":"https:\u002F\u002Fwww.csdn.net\u002F","VUE_APP_CCLOUD_BZP_API_URL":"https:\u002F\u002Fbizapi.csdn.net\u002F","VUE_APP_CCLOUD_START_API_URL":"https:\u002F\u002Fmp-action.csdn.net\u002F","VUE_APP_PRACTIVE":"https:\u002F\u002Fbizapi.csdn.net\u002Fdaily-practice\u002F","VUE_APP_CCLOUD_HOSTPATH":"https:\u002F\u002Fbbs.csdn.net\u002F"},"queries":{"pageId":[],"domain":["ccloud.csdn.net\u002Fccloud\u002Fdetail1"],"id":["260035406"],"deviceType":"pc","isSpider":"","hostname":["bbs.csdn.net"]},"basePath":"bbs.csdn.net\u002Fccloud\u002Ftopics\u002F260035406","hrefUrl":"https:\u002F\u002Fbbs.csdn.net\u002Ftopics\u002F260035406","active":0,"navBarFixed":false,"title":"A script engine for the specified language can be not created","isLive":false,"contentType":{"text":"text","picture":"picture","link":"link","video":"video","vote":"vote","live":"live","blog":"blog","long_text":"long_text","task_text":"task_text"},"liveUrl":"https:\u002F\u002Flive.csdn.net\u002Froom\u002Fiframe\u002F","spmExtra":{"id":302,"topicId":260035406},"keywords":"","description":"以下内容是CSDN社区关于A script engine for the specified language can be not created相关内容,如果想了解更多关于MS-SQL Server社区其他内容,请访问CSDN社区。"};</script><script type="text/javascript" src="https://csdnimg.cn/release/cmsfe/public/js/runtime.3e5c09eb.js"></script><script type="text/javascript" src="https://csdnimg.cn/release/cmsfe/public/js/chunk/common.7672e502.js"></script><script type="text/javascript" src="https://csdnimg.cn/release/cmsfe/public/js/chunk/tpl/ccloud-detail/index.243a94d0.js"></script></body> <!----> <script> window.csdn.sideToolbar = { options: { qr: { isShow: true, data: [ { imgSrc: 'https://csdnimg.cn/release/cmsfe/public/img/ewm.9010d6e5.png', desc: "关注公众号" }, ] }, help: { isShow: false, }, contentEl: document.getElementsByClassName("cloud-maintainer")[0] }, }; </script> <script src="https://g.csdnimg.cn/side-toolbar/2.9/side-toolbar.js" ></script> <!----> <!----> <!----> <script src="https://csdnimg.cn/release/blog_editor_html/release1.7.5/ckeditor/plugins/codesnippet/lib/highlight/highlight.pack.js"></script> <script src="https://g.csdnimg.cn/lib/editor-page-detail/v2.2.0/js/runDetail.min.js"></script> <!----> <!----> <!----> <!----> <!----> <!----> <script src="https://g.csdnimg.cn/collection-box/2.1.0/collection-box.js"></script> <!----> <!----> <!----> <!----> <script src="https://g.csdnimg.cn/common/csdn-cert/csdn-cert.js"></script> <!----></html>