Page 5 of 10
Posted: Sat 3. Apr 2004, 05:56
by Jérôme
No cigarettes, but with the sleep, your are right. That's wai mai inglisch is leiding be-under it, too

.
It's just: when I am excited to do something, I can never stop, and I wanted to do it. And so I did. But I must admit, I had a break from 7 pm to 10pm yesterday when I went to a formal event with the wife of my boss

. Well...Blubb.
Posted: Sat 3. Apr 2004, 10:24
by frold
Jérôme wrote:I went to a formal event with the wife of my boss

. Well...Blubb.
Does the boss know that?.... I don´t hope he is in the forum too

*lol*
Posted: Sat 3. Apr 2004, 10:57
by Jérôme
*lol* We first wanted to make a threesome, but he missed the plane from Berlin

. It was
really just a formal reunition, because we have made an internet café for young people for charity and it has been the "grand opening". Well.

Not too interesting, isn't it?
And first and foremost: it is
off topic!!
Don't take me too serious!
Posted: Sat 3. Apr 2004, 11:32
by Fulvio Romanin
oh
so the v1.0 has no shopping basket?
(wink wink nudge nudge)

Posted: Sat 3. Apr 2004, 13:32
by Jérôme
*sigh* No.
Posted: Sat 3. Apr 2004, 13:37
by frold
I must say Im very impressed by the work you have made... I look forward to the comming releases

if there will be some

Posted: Sat 3. Apr 2004, 14:06
by Jérôme
Sure, frold, I think there will always be some funtionality to add and improvements to make, isn't it?
But I will do it a bit slower until now, it was quite exhausting the last weeks...
@Fulvio: The shopping basket is one huge thing, I don't think I will be able to do it too quickly.
Posted: Sat 3. Apr 2004, 14:47
by Fulvio Romanin
too quickly....uhm
so you say it won't be ready for tomorrow?
jokes apart, there are some neat shopping pre-made scripts - what about integrating them into your script?
here's a nice reccomendation engine you might consider integrating...
http://www.zend.com/codex.php?id=650&single=1
Posted: Sat 3. Apr 2004, 21:39
by frold
I got this error when installing: the ul list mod is installed... Standart lang is da
Warning: main(./include/inc_module/inc_lang/backend/da/lang.inc.php): failed to open stream: No such file or directory in W:\www\allergia\phpwcms.php on line 32
Fatal error: main(): Failed opening required './include/inc_module/inc_lang/backend/da/lang.inc.php' (include_path='.;/usr/local/PHP/includes;/usr/local/PHP/pear') in W:\www\allergia\phpwcms.php on line 32
Update I renamed en - > da
But when I click on "Company enhancements" nothings happens the url change to
http://localhost/allergia/phpwcms.php?do=modules&p=1 but nothning happens
Posted: Sat 3. Apr 2004, 21:55
by Jérôme
It was my fault, I am sorry.
I will update the installation instructions asap.
Please perform the following:
Code: Select all
#
#-----[ OPEN ]------------------------------------------
#
phpwcms.php
#
#-----[ FIND ]------------------------------------------
#
require_once ('./include/inc_module/inc_lang/backend/'.$_SESSION["wcs_user_lang"].'/lang.inc.php');
#
#-----[ AFTER, ADD ]------------------------------------------
#
require_once ('./include/inc_module/mod_company/inc_lang/backend/'.$_SESSION["wcs_user_lang"].'/lang.inc.php');
Posted: Sat 3. Apr 2004, 22:06
by frold
then I get this worning_
Code: Select all
Warning: main(./include/inc_module/mod_company/inc_lang/backend/da/lang.inc.php): failed to open stream: No such file or directory in W:\www\allergia\phpwcms.php on line 32
Fatal error: main(): Failed opening required './include/inc_module/mod_company/inc_lang/backend/da/lang.inc.php' (include_path='.;/usr/local/PHP/includes;/usr/local/PHP/pear') in W:\www\allergia\phpwcms.php on line 32
Posted: Sun 4. Apr 2004, 00:00
by Jérôme
Oh frold, it has really been to late yesterday for me. I should not do sth like this any more. I will correct it and repost it.
I am very, very sorry.

Posted: Sun 4. Apr 2004, 00:06
by Jérôme
Okay. The change in the following compared to the original (and wrong) version is, that it is not AFTER, ADD but REPLACE WITH. See?
phpwcms.php
Code: Select all
#
#-----[ FIND ]------------------------------------------
#
case "modules": //Modules -> later
echo 'in preparation - will follow later';
break;
#
#-----[ REPLACE WITH ]------------------------------------------
#
case "modules": //Modules
switch ($p) {
case 1: // Company MOD
include_once "./include/inc_module/mod_company/main.inc.php";
break;
default: echo '';
break;
}
break;
If you change your language to "da", the folder
./include/inc_module/mod_company/inc_lang/backend/da/
must be available.
Posted: Sun 4. Apr 2004, 00:11
by Jérôme
frold wrote:then I get this worning_
Code: Select all
Warning: main(./include/inc_module/mod_company/inc_lang/backend/da/lang.inc.php): failed to open stream: No such file or directory in W:\www\allergia\phpwcms.php on line 32
Fatal error: main(): Failed opening required './include/inc_module/mod_company/inc_lang/backend/da/lang.inc.php' (include_path='.;/usr/local/PHP/includes;/usr/local/PHP/pear') in W:\www\allergia\phpwcms.php on line 32
Please do not
only rename the folder, but first
copy and then rename it.
In the next release, I will provide all languages within the package.
Posted: Sun 4. Apr 2004, 00:32
by Jérôme
Company MOD 1.0.1 released
This is a bugfix release that has alle other languages included (but not translated), so that no parse errors will occur (thanks frold for the hint).
The installation instructions were partly incorrect, too and should now be corrected.