[Discontinued] Company Enhancements MOD
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.
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.
Does the boss know that?.... I don´t hope he is in the forum too *lol*Jérôme wrote:I went to a formal event with the wife of my boss . Well...Blubb.
http://www.studmed.dk Portal for doctors and medical students in Denmark
*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!
And first and foremost: it is off topic!!
Don't take me too serious!
- Fulvio Romanin
- Posts: 394
- Joined: Thu 4. Dec 2003, 11:12
- Location: Udine, Italy
- Contact:
I must say Im very impressed by the work you have made... I look forward to the comming releases if there will be some
http://www.studmed.dk Portal for doctors and medical students in Denmark
- Fulvio Romanin
- Posts: 394
- Joined: Thu 4. Dec 2003, 11:12
- Location: Udine, Italy
- Contact:
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
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
Completeness is reached through subtraction, not through addition
I got this error when installing: the ul list mod is installed... Standart lang is da
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
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
http://www.studmed.dk Portal for doctors and medical students in Denmark
It was my fault, I am sorry.
I will update the installation instructions asap.
Please perform the following:
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');
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
http://www.studmed.dk Portal for doctors and medical students in Denmark
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
If you change your language to "da", the folder
./include/inc_module/mod_company/inc_lang/backend/da/
must be available.
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;
./include/inc_module/mod_company/inc_lang/backend/da/
must be available.
Please do not only rename the folder, but first copy and then rename it.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
In the next release, I will provide all languages within the package.