Skip to content

Commit cdfb67b

Browse files
committed
update readmes
1 parent aad71bb commit cdfb67b

File tree

2 files changed

+5
-6
lines changed

2 files changed

+5
-6
lines changed

README.md

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -65,19 +65,15 @@ In the JavaScript console you will see printed any PC::debug() information, PHP
6565
## FAQ
6666

6767
#### Is this an official plugin from PHP Console author?
68-
6968
>No, but it makes use of Sergey's PHP Console library as it is.
7069
7170
#### Does it work with Firefox, IE, Opera or other browsers?
72-
7371
>No it doesn't, unless PHP Console browser extension is ported, for example, as a Firefox add-on.
7472
7573
#### Can I use PHP Console in a live production environment?
76-
77-
>You *can* but it is probably not a good idea. You should do your debugging and testing on a development/testing environment on a staging server or local machine. Likewise, you normally wouldn't want to turn on PHP error reporting or set `WP_DEBUG` to `true` in a live site as you wouldn't want to display error information to public. Furthermore, PHP Console allows execution of any remote PHP code through terminal - for this you can set a strong password and restrict the IP address range to access the terminal, but still it's not advisable. Besides putting your site at risk, you will also add more load to your server.
74+
>You *can* but it is definitely not a good idea. You should do your debugging and testing on a development/testing environment on a staging server or local machine. Likewise, you normally wouldn't want to turn on PHP error reporting or set `WP_DEBUG` to `true` in a live site as you wouldn't want to display error information to public. Furthermore, PHP Console allows execution of any remote PHP code through terminal - for this you can set a strong password and restrict the IP address range to access the terminal, but still it's not advisable. Besides putting your site **at risk**, you will also add more load to your server.
7875
7976
#### Why are PHP arrays shown as objects?
80-
8177
>The JavaScript console prints PHP variables as JavaScript variables. Associative PHP arrays such as `['key1' => 'var2', 'key2' => 'var2', ... ]` are shown as objects; automatically indexed arrays like `[ 'var1', 'var2', ... ]` are shown as arrays.
8278
8379
#### I got `Fatal error: Class 'PC' not found in 'my code'` - what's that?
@@ -92,7 +88,6 @@ You could move your debug code or either do something like
9288
PC::my_tag($my_var);
9389
});
9490

95-
9691
or
9792

9893
// PHP Console autoload

README.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -172,6 +172,10 @@ None yet.
172172

173173
== Upgrade Notice ==
174174

175+
= 1.3.7 =
176+
To improve compatibility with other plugins, now stores session data in a file.
177+
You need to be able to write inside WP PHP Console plugin dir for better compatibility.
178+
175179
= 1.3.5 =
176180
PHP 5.4.0 is the minimum PHP required version to run this plugin.
177181

0 commit comments

Comments
 (0)