Who's online

There are currently 0 users and 0 guests online.

Recent comments

Constant Beeping

by: Anonymous

Hello,

I installed Klorofil with the windows installer and double clicked the file, all i got in return was my maching beeping about 15-20 times. I went to the command line and entered the command, i got the same results?

What could be going wrong?

C:\Program Files\Klorofil>klorofil "C:\Program Files\klorofil\hello world\app.kfe"

C:\Program Files\Klorofil>

that's the output from the command line, no error or anything.

Thanks

just registered to get update notifications ;)

Codebowl Solutions, Inc.
Website Development Services
http://www.codebowl.com/
Joseph Crawford Jr.
Chief Programmer
info@codebowl.com
1-802-671-2021

by: denny

we'll check it right away but we think it's because your personal firewall. please open

control panel -> windows fire walls -> exceptions tab

make sure gambArtGUI.exe is on the exception list and checked.

if not, click "add program" button and brows for "c:\program files\klorofil\gambArtGUI.exe"

if you still have problem, open your "c:\program files\klorofil\launch.php"

find this line :

</p>
<p>error_reporting(E_ALL ^ E_NOTICE ^ E_WARNING);</p>
<p>

change to this line :

</p>
<p>error_reporting(E_ALL);</p>
<p>

rerun your application with this command :

</p>
<p>php launch.php "C:\Program Files\klorofil\hello world\app.kfe"</p>
<p>

you will see error notification, please submit the error to us :D

sorry.. we still version 0.1 (some time we call this pre alpha version ) :wink:

C:\Program Files\Klorofil>php launch.php "C:\Program Files\klorofil\hello world\

app.kfe"

Warning: import(klorofil/io/File.php): failed to open stream: No such file or di

rectory in C:\Program Files\Klorofil\klorofil\klorofil.php on line 77

Warning: import(): Failed opening 'klorofil/io/File.php' for inclusion (include_

path='.;C:\php5\pear;.\klorofil\classes;C:\php5\pear\klorofil\classes') in C:\Pr

ogram Files\Klorofil\klorofil\klorofil.php on line 77

=╤

Codebowl Solutions, Inc.
Website Development Services
http://www.codebowl.com/
Joseph Crawford Jr.
Chief Programmer
info@codebowl.com
1-802-671-2021

also can i ask why your app connects to the internet and requires you to allow windows firewall to except it?

Codebowl Solutions, Inc.
Website Development Services
http://www.codebowl.com/
Joseph Crawford Jr.
Chief Programmer
info@codebowl.com
1-802-671-2021

by: denny

hmm... your problem is because klorofil php.ini is conflict with your php.imi of your php instalation.

currently we've fixed our application launcher, but we release it on next version.

but for now you could do one of this step :

1. Open your registry editor end open key :

HKEY_LOCAL_MACHINE\SOFTWARE\PHP\IniFilePath

delete this key to make php search from the same directory with php.exe

2. Or run klorofil with this command :

php -c "." launch.php "C:\Program Files\klorofil\hello world\

app.kfe"

by: denny

codebowl wrote:
also can i ask why your app connects to the internet and requires you to allow windows firewall to except it?

actually we don't connect to internet. we just need to open socket because the interprocess of gui using socket.

if you want to check, while klorofil application run, open command prompt and use this command :

c:\>netstat

you will see loop conection (local to local) in port around 10.000 -10.020

For next version we'll use other approach for interprocess communication.