
Accounts for quoted property names and/or values containing "="

Hope you can find it useful!


; Enable the PHP scripting language engine under Apache.
engine = On
; Enable compatibility mode with Zend Engine 1 (PHP 4.x)
zend.ze1_compatibility_mode = Off
; Allow the <? tag. Otherwise, only <?php and <script> tags are recognized.
# On Windows you should keep this file in the installation directory
# of your server (e.g. C:\Program Files\MySQL\MySQL Server 4.1). To
# make sure the server reads the config file use the startup option
# "--defaults-file".
#
# To run run the server from the command line, execute this in a
# command line shell, e.g.
# mysqld --defaults-file="C:\Program Files\MySQL\MySQL Server 4.1\my.ini"
^(;).*$\n?
^[#;].*$\n? capnhud wrote:I need to correct a problem with this file comments that begin with
; space comment
- Code: Select all
; Enable the PHP scripting language engine under Apache.
engine = On
; Enable compatibility mode with Zend Engine 1 (PHP 4.x)
zend.ze1_compatibility_mode = Off
; Allow the <? tag. Otherwise, only <?php and <script> tags are recognized.
show up as comments in my ini files but what do I edit in this files so that comments that start with
# space comment for example
- Code: Select all
# On Windows you should keep this file in the installation directory
# of your server (e.g. C:\Program Files\MySQL\MySQL Server 4.1). To
# make sure the server reads the config file use the startup option
# "--defaults-file".
#
# To run run the server from the command line, execute this in a
# command line shell, e.g.
# mysqld --defaults-file="C:\Program Files\MySQL\MySQL Server 4.1\my.ini"
shows up as actual comment in ST?
It appears that this
- Code: Select all
^(;).*$\n?
controls the semicolon, but it also needs to include comments that begin with #
I triedbut that did not work
- Code: Select all
^[#;].*$\n?
Nvrmnd: needed to open and close ST
^(;|#).*$\n?
hgraca wrote:Hi,
this seems to be what I want, but where do I put that xml file?
tkx
^\s*(;|#).*$\n?^(;).*$\n?http://en.wikipedia.org/wiki/INI_file#Comments - In some implementations, a comment may begin anywhere on a line, including on the same line after properties or section declarations. In others, including Windows' GetPrivateProfileString function, comments must occur on lines by themselves.
Return to Plugin Announcements