-
Hi,
got this error log when I tried to combine results for several (1000) repositories:
```console
panic: runtime error: invalid memory address or nil pointer dereference
[signal SIGSEGV: segmen…
-
- VSCode Version: Code 1.19.0 (816be6780ca8bd0ab80314e11478c48c70d09383, 2017-12-14T09:56:48.842Z)
- OS Version: Linux x64 4.12.8-200.fc25.x86_64
- Interface: Gnome 3
- Extensions:
Extension|Au…
-
Please implement the `error_log` function. This will make it easier for me to write debug info when the code is in a NuGet package. Otherwise, there's no other way for me to check values of some varia…
-
It happens only when the alias is returned from a separate function, see the test case:
```php
$globalFoo = true;
$hlp =& $globalFoo;
function foo() {
return $GLOBALS['globalFoo'];
}
clas…
-
_From @petrroll on July 28, 2017 9:41_
## Steps to reproduce
1) `dotnet new -i "Peachpie.Templates::*"` (template's config on [GitHub](https://github.com/peachpiecompiler/peachpie-templates/blob/mas…
-
Hi, I installed peachpie compiler on my windows 10 machine with visual studio code. I tried also to install with dotnet and I'm able to create a project.
So, I can't find peach.exe command line compi…
-
Is it possible that the Sqlite driver support is incomplete?
After following the source code examples and adding:
```
```
I keep getting Sqlite driver not found on Windows (.netCore 2.…
-
As noted in [this comment](https://github.com/peachpiecompiler/peachpie/issues/185#issuecomment-374000333) on issue #185, there is a problem with query string generation. I have tracked down the probl…
-
Hey,
how can I use PDO?
I always get the error: Peachpie.Library.PDO.PDOException: "Driver 'mysql' not found"
I create a new template with:
`dotnet new web -lang PHP`
In index.php:
`$pdo = new…
-
Hi,
When I use php string operators, I get a dotnet.exe APPCRASH (Peachpie WebApp)
```php
$a = "Hello ";
$b = $a . "World!";
// or
$a = "Hello ";
$a .= "World!";