[TYPO3-english] Custom CSS

2018-08-13 Thread Wiesław Golsz
Hello,

I made a copy of the original "Introduction" template. The original one
was hidden.

I removed from the test template "includeCSSLibs" and "includeCSS" - 
was cleared.

I have includ the line to "Constant".
page.includeCSS = fileadmin/intense/css/style.css

But TYPO3 does not load customized css:
http://remax-prestige.pl/typo3/

It should be like here
http://remax-prestige.pl/htb/novi/projects/template/test2.html

The whole template record:

Constant

/[treeLevel = 0]//
//page.theme.navigationstyle = default-transition//
//page.theme.navigationtype = top//
//[end]//
//plugin.bootstrap_package.settings.less.brand-primary = #10a0cb//
//page.theme.copyright.text = Running with http://www.typo3.org; target="_blank">TYPO3 and https://github.com/benjaminkott/bootstrap_package;
target="_blank">Bootstrap Package.//
//page.theme.meta.enable = 0//
//page.logo.file = fileadmin/introduction/images/introduction-package.svg//
//page.logo.fileInverted =
fileadmin/introduction/images/introduction-package-inverted.svg//
//page.includeCSS = fileadmin/intense/css/style.css//
//plugin.bootstrap_package.settings.less.section-primary-link-color = #ff8//
//plugin.bootstrap_package_contentelements.menu_thumbnail.media.height =
170m//
//plugin.bootstrap_package_contentelements.menu_thumbnail.media.width = 170/

Setup

/page.includeCSS. =//
//page.includeCSSLibs >//
//page.includeCSS >/

Regards,

___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english

[TYPO3-english] Bootstrap

2018-07-04 Thread Wiesław Golsz
Hello,

Maybe you know:
https://www.templatemonster.com/intense-multipurpose-html-template.html

It is website templates based on Bootstrap. In the near future there
will be an upgrade to Boostrap 4.x

How is the best method to transfer a customized template or a ready page
to Typo3?

What can you suggest?

Regards, Wieslaw
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


Re: [TYPO3-english] RealUrl

2016-05-13 Thread Wiesław Golsz
Hi Mogens,

Configuration realurl was OK, .htaccess was also previously OK, but was
cleared - its size was zero.

Regards, WG

On 2016-05-13 19:49, Mogens Fiebrandt wrote:
> Hi Wieslaw,
>
> did you follow the steps in the manual?
> Looks like you didn't implemented the needed htaccess file.
>
> Greetings
> Mo
>
> Am 13.05.2016 um 19:38 schrieb Wiesław Golsz:
>> Hi,
>>
>> I installed realurl 2.0.14 on new test site (7.6.6):
>> http://7.web-hosting-professional.net/
>>
>> "Partially" is ok (you can see the correct links), but when clicked
>> shows an error (e.g):
>>
>> The requested URL /features/ was not found on this server.
>> Additionally, a 404 Not Found error was encountered while trying to use
>> an ErrorDocument to handle the request.
>>
>> Regards,
>>
>> ___
>> TYPO3-english mailing list
>> TYPO3-english@lists.typo3.org
>> http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english
>
> ___
> TYPO3-english mailing list
> TYPO3-english@lists.typo3.org
> http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english

[TYPO3-english] RealUrl

2016-05-13 Thread Wiesław Golsz
Hi,

I installed realurl 2.0.14 on new test site (7.6.6):
http://7.web-hosting-professional.net/

"Partially" is ok (you can see the correct links), but when clicked
shows an error (e.g):

The requested URL /features/ was not found on this server.
Additionally, a 404 Not Found error was encountered while trying to use
an ErrorDocument to handle the request.

Regards,

___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


Re: [TYPO3-english] Typo3 6.2. WEC Site Config

2016-05-09 Thread Wiesław Golsz
Hi,

I change in line 139
if (t3lib_div::_POST('submit') ||
(*t3lib_div::testInt(*t3lib_div::_POST('submit_x')) &&
*t3lib_div::testInt(*t3lib_div::_POST('submit_y' {
to
if (t3lib_div::_POST('submit') ||
(*\TYPO3\CMS\Core\Utility\MathUtility::canBeInterpretedAsInteger(*t3lib_div::_POST('submit_x'))
&&
*\TYPO3\CMS\Core\Utility\MathUtility::canBeInterpretedAsInteger(*t3lib_div::_POST('submit_y'
{

Here it looks ok, but I received error in line 177:
$tmpl->ext_readDirResources($TYPO3_CONF_VARS['MODS']['web_ts']['onlineResourceDir']);

*Fatal error*: Call to undefined method
TYPO3\CMS\Core\TypoScript\ExtendedTemplateService::ext_readDirResources()
in
*/home/www/6.bestchoicefx.com/typo3conf/ext/wec_config/constants/class.tx_wecconfig_constants.php*
on line *177

*Already near the end?

Regards, Wieslaw

On 2016-05-09 13:06, Jigal van Hemert wrote:
> Hi,
>
> On 09/05/2016 00:45, Wiesław Golsz wrote:
>> Thx Jigal, if I understand correctly, it is not possible is to use "WEC
>> Site Config".
>
> I didn't mean to say that. There isn't a version in TER that is
> compatible with 6.2, but with the changes you are making it will
> eventually become compatible.
>
> The change for that fatal error would just be to replace the call to
> the function testInt() with the function I mentioned (keep the
> parameters, just change the entire function name (plus the path in
> front of it).
>

___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english

Re: [TYPO3-english] Typo3 6.2. WEC Site Config

2016-05-08 Thread Wiesław Golsz
Thx Jigal, if I understand correctly, it is not possible is to use "WEC
Site Config".

It is problem, becuse this ext is crucial, it allows to select - for
example - template. without that page looks like this:
http://6.bestchoicefx.com/

Is there ext. - consistent with 6.2, which in this regard replaces "WEC
Site Config"?

Regards

On 2016-05-08 22:38, Jigal van Hemert wrote:
> Hi,
>
> On 08/05/2016 17:07, Wiesław Golsz wrote:
>> *Fatal error*: Call to undefined method
>> TYPO3\CMS\Core\Utility\GeneralUtility::testInt() in
>> */home/www/6.bestchoicefx.com/typo3conf/ext/wec_config/constants/class.tx_wecconfig_constants.php*
>>
>> on line *139
>
> That function is now called:
>
> \TYPO3\CMS\Core\Utility\MathUtility::canBeInterpretedAsInteger()
>
> On line 139 you'll probably find t3lib_div::testInt(); the
> compatibility layer directed the call to the  new class name. This
> didn't work out in this case as the function was moved.
>
>> *P.S. Sorry, I'm not a programmer, the last time something was
>> programming 40 years ago and in Fortran :-). In meantime, a little html
>> and similar.
>
> No problem. You are just unfortunate to need an extension that has no
> suitable version for 6.2.
>

___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english

Re: [TYPO3-english] Typo3 6.2. WEC Site Config

2016-05-08 Thread Wiesław Golsz
Many thx Jigal,

Next step i next error, I hope that it's close to end.

*Fatal error*: Call to undefined method
TYPO3\CMS\Core\Utility\GeneralUtility::testInt() in
*/home/www/6.bestchoicefx.com/typo3conf/ext/wec_config/constants/class.tx_wecconfig_constants.php*
on line *139

*P.S. Sorry, I'm not a programmer, the last time something was
programming 40 years ago and in Fortran :-). In meantime, a little html
and similar.

Regards, Wieslaw*
*
On 2016-05-08 13:07, Jigal van Hemert wrote:
> Hi,
>
> On 08/05/2016 10:37, Wiesław Golsz wrote:
>> I took a few steps further and template is already active. But when I
>> try to open an error appears:
>>
>> Oops, an error occurred!
>> TYPO3 Fatal Error: Extension key "tstemplate_ceditor" is NOT loaded!
>> In wiki:
>> https://wiki.typo3.org/Exception/CMS/1365429656
>>
>> In LocalConfiguration.php
>> typo3conf/LocalConfiguration.php -
>> array([EXT][extConf][your_extension_key])
>>
>> I do not have this ("tstemplate_ceditor") array
>
> That was the Constant Editor in TYPO3 4.5; in 6.2 it's rewritten. It
> looks like the only thing needed are the icons in the gfx directory in
> that (system) extension. You can very likely change two lines in
> constants/class.tx_wecconfig_constants.php : lines 82 and 83 (in the
> original file)
>
> $tmpl->ext_localGfxPrefix = t3lib_extMgm::extPath('tstemplate_ceditor');
> $tmpl->ext_localWebGfxPrefix =
> $GLOBALS['BACK_PATH'].t3lib_extMgm::extRelPath('tstemplate_ceditor');
>
> change them to:
>
> $tmpl->ext_localGfxPrefix = t3lib_extMgm::extPath('tstemplate') .
> 'Resources/Public/';
> $tmpl->ext_localWebGfxPrefix =
> $GLOBALS['BACK_PATH'].t3lib_extMgm::extRelPath('tstemplate') .
> 'Resources/Public/';
>
> You're brave to still hang in there :-) Let's see what problem pops up
> next...
>

___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english

Re: [TYPO3-english] Typo3 6.2. WEC Site Config

2016-05-08 Thread Wiesław Golsz
I took a few steps further and template is already active. But when I
try to open an error appears:

Oops, an error occurred!
TYPO3 Fatal Error: Extension key "tstemplate_ceditor" is NOT loaded!
In wiki:
https://wiki.typo3.org/Exception/CMS/1365429656

In LocalConfiguration.php
typo3conf/LocalConfiguration.php - array([EXT][extConf][your_extension_key])

I do not have this ("tstemplate_ceditor") array

Regards, Wieslaw

On 2016-05-08 00:05, Jigal van Hemert wrote:
> Hi,
>
> On 07/05/2016 23:32, Wiesław Golsz wrote:
>> Fatal error: Cannot access protected property
>> TYPO3\CMS\Core\Database\DatabaseConnection::$link in
>> /home/www/6.bestchoicefx.com/typo3conf/ext/wec_config/features/class.tx_wecconfig_features.php
>>
>> on line 192
>>
>> Where line 192 is: /if(is_object($TYPO3_DB) && $TYPO3_DB->link) {//
>
> You can safely remove the second condition:
>
> if(is_object($TYPO3_DB)) {
>

___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english

Re: [TYPO3-english] Typo3 6.2. WEC Site Config

2016-05-07 Thread Wiesław Golsz
Excuse me: this frament should be as:

/function countFeatures() {//
//global $TYPO3_DB;//
//*if**(is_object($TYPO3_DB) && $TYPO3_DB->link) {*//
//$table = 'tx_wecconfig_features';//
//$res = $TYPO3_DB->exec_SELECTquery ('count(uid)', $table,
'deleted=0');//
//$row = $TYPO3_DB->sql_fetch_assoc($res);//
//
//$count = $row['count(uid)'];//
//} else {//
//$count = 0;//
//}//
//return $count;//
//}/


Where *line 192* is: /if(is_object($TYPO3_DB) && $TYPO3_DB->link) {//

/ERROR

Fatal error: Cannot access protected property
TYPO3\CMS\Core\Database\DatabaseConnection::$link in
/home/www/6.bestchoicefx.com/typo3conf/ext/wec_config/features/class.tx_wecconfig_features.php
on line 192

Why cannot access to database???

Regars,


On 2016-05-07 23:32, Wiesław Golsz wrote:
> OK Jigaj, but next error in this code (class.tx_wecconfig_features.php):
>
> /function countFeatures() {//
> //global $TYPO3_DB;//
> ////
> //$table = 'tx_wecconfig_features';//
> //$res = $TYPO3_DB->exec_SELECTquery ('count(uid)',
> $table, 'deleted=0');//
> //$row = $TYPO3_DB->sql_fetch_assoc($res);//
> //
> //$count = $row['count(uid)'];//
> //} else {//
> //$count = 0;//
> //}//
> //return $count;//
> //}/
>
> Fatal error: Cannot access protected property
> TYPO3\CMS\Core\Database\DatabaseConnection::$link in
> /home/www/6.bestchoicefx.com/typo3conf/ext/wec_config/features/class.tx_wecconfig_features.php
> on line 192
>
> Where line 192 is: /if(is_object($TYPO3_DB) && $TYPO3_DB->link) {//
> /
>
> On 2016-05-07 22:49, Jigal van Hemert wrote:
>> Hi,
>>
>> On 07/05/2016 20:42, Wiesław Golsz wrote:
>>> This time much more serious error. I use an application developed by
>>> WEC. It is widely used in the network, but WEC support no longer
>>> exists.
>>>
>>> It is very important ext "/WEC Site Config/" Site-wide configuration
>>> module for constants, templates, and add-on features.
>>> https://typo3.org/extensions/repository/view/wec_config
>>>
>>> I get this error:
>>>
>>> /Fatal error: require_once() [function.require]: Failed opening
>>> required
>>> 'PATH_t3libclass.t3lib_extobjbase.php'
>>> (include_path='/home/www/6.bestchoicefx.com/typo3/contrib/pear/:.:/usr/local/php5.3/lib//php')
>>>
>>> in
>>> /home/www/6.bestchoicefx.com/typo3conf/ext/wec_config/features/class.tx_wecconfig_features.php
>>>
>>> on line 31/
>>
>> Most of the time these errors are not hard to fix, although it can
>> take some time if you encounter a lot of them each time you fix one.
>>
>> In TYPO3 4.3 (if I remember correctly) a mechanism was introduced to
>> automatically load classes in PHP. This meant that you didn't need to
>> use lines like
>>
>> require_once( PATH_t3libclass . 't3lib_extobjbase.php');
>>
>> in your code. You could just use the class and it would automatically
>> be loaded.
>> Many extension authors still kept those lines because the code still
>> worked. In 6.x the autoloader was changed and these errors appeared
>> if extension code still used those unnecessary lines.
>>
>>> Q3. How to fix this error
>>
>> Look carefully at the error! It says that the require_once didn't
>> work in
>> ../ext/wec_config/features/class.tx_wecconfig_features.php on
>> line 31.
>>
>> Edit the file and put two slashes in front of the 'require_once' on
>> the mentioned line. This turns the rest of the line into a comment
>> and it will no longer be executed. It will look a bit like:
>>
>> //require_once( PATH_t3libclass . 't3lib_extobjbase.php');
>>
>> (I don't know the exact line, but you get the idea)
>>
>> Warning for the future:
>> - in 6.x all class names in the core were changed; the names are now
>> easier to read
>> - 6.2 still knows the old names like the existed in 4.5 and
>> extensions can still use the old names
>> - 7.6 doesn't know the old names anymore, but there is an extension
>> 'compatibility6' which makes it possible to still use the old class
>> names; it comes with a price, performance is a lot worse with that
>> extension installed
>> - 8.x don't know the old names and there is no extension that adds
>> support for those old class names
>>
>> You can use a lot of 4.x compatible extensions with 6.2, but it would
>> be wise to look for alternatives before upgrading to 7 LTS or 8.x.
>> Alternative would be to edit the extensions and replace all the old
>> class names with the new names. In some cases more code needs to be
>> replaced, but you could hire a TYPO3 programmer to make those changes.
>>
>>
>

___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english

Re: [TYPO3-english] Typo3 6.2. WEC Site Config

2016-05-07 Thread Wiesław Golsz
OK Jigaj, but next error in this code (class.tx_wecconfig_features.php):

/function countFeatures() {//
//global $TYPO3_DB;//
////
//$table = 'tx_wecconfig_features';//
//$res = $TYPO3_DB->exec_SELECTquery ('count(uid)', $table,
'deleted=0');//
//$row = $TYPO3_DB->sql_fetch_assoc($res);//
//
//$count = $row['count(uid)'];//
//} else {//
//$count = 0;//
//}//
//return $count;//
//}/

Fatal error: Cannot access protected property
TYPO3\CMS\Core\Database\DatabaseConnection::$link in
/home/www/6.bestchoicefx.com/typo3conf/ext/wec_config/features/class.tx_wecconfig_features.php
on line 192

Where line 192 is: /if(is_object($TYPO3_DB) && $TYPO3_DB->link) {//
/

On 2016-05-07 22:49, Jigal van Hemert wrote:
> Hi,
>
> On 07/05/2016 20:42, Wiesław Golsz wrote:
>> This time much more serious error. I use an application developed by
>> WEC. It is widely used in the network, but WEC support no longer exists.
>>
>> It is very important ext "/WEC Site Config/" Site-wide configuration
>> module for constants, templates, and add-on features.
>> https://typo3.org/extensions/repository/view/wec_config
>>
>> I get this error:
>>
>> /Fatal error: require_once() [function.require]: Failed opening required
>> 'PATH_t3libclass.t3lib_extobjbase.php'
>> (include_path='/home/www/6.bestchoicefx.com/typo3/contrib/pear/:.:/usr/local/php5.3/lib//php')
>>
>> in
>> /home/www/6.bestchoicefx.com/typo3conf/ext/wec_config/features/class.tx_wecconfig_features.php
>>
>> on line 31/
>
> Most of the time these errors are not hard to fix, although it can
> take some time if you encounter a lot of them each time you fix one.
>
> In TYPO3 4.3 (if I remember correctly) a mechanism was introduced to
> automatically load classes in PHP. This meant that you didn't need to
> use lines like
>
> require_once( PATH_t3libclass . 't3lib_extobjbase.php');
>
> in your code. You could just use the class and it would automatically
> be loaded.
> Many extension authors still kept those lines because the code still
> worked. In 6.x the autoloader was changed and these errors appeared if
> extension code still used those unnecessary lines.
>
>> Q3. How to fix this error
>
> Look carefully at the error! It says that the require_once didn't work
> in ../ext/wec_config/features/class.tx_wecconfig_features.php on
> line 31.
>
> Edit the file and put two slashes in front of the 'require_once' on
> the mentioned line. This turns the rest of the line into a comment and
> it will no longer be executed. It will look a bit like:
>
> //require_once( PATH_t3libclass . 't3lib_extobjbase.php');
>
> (I don't know the exact line, but you get the idea)
>
> Warning for the future:
> - in 6.x all class names in the core were changed; the names are now
> easier to read
> - 6.2 still knows the old names like the existed in 4.5 and extensions
> can still use the old names
> - 7.6 doesn't know the old names anymore, but there is an extension
> 'compatibility6' which makes it possible to still use the old class
> names; it comes with a price, performance is a lot worse with that
> extension installed
> - 8.x don't know the old names and there is no extension that adds
> support for those old class names
>
> You can use a lot of 4.x compatible extensions with 6.2, but it would
> be wise to look for alternatives before upgrading to 7 LTS or 8.x.
> Alternative would be to edit the extensions and replace all the old
> class names with the new names. In some cases more code needs to be
> replaced, but you could hire a TYPO3 programmer to make those changes.
>
>

___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english

[TYPO3-english] Typo3 6.2. WEC Site Config

2016-05-07 Thread Wiesław Golsz
Thank you very much Jigal, OK done.

This time much more serious error. I use an application developed by
WEC. It is widely used in the network, but WEC support no longer exists.

It is very important ext "/WEC Site Config/" Site-wide configuration
module for constants, templates, and add-on features.
https://typo3.org/extensions/repository/view/wec_config

I get this error:

/Fatal error: require_once() [function.require]: Failed opening required
'PATH_t3libclass.t3lib_extobjbase.php'
(include_path='/home/www/6.bestchoicefx.com/typo3/contrib/pear/:.:/usr/local/php5.3/lib//php')
in
/home/www/6.bestchoicefx.com/typo3conf/ext/wec_config/features/class.tx_wecconfig_features.php
on line 31/

Q1. if anyone solved this problem (use for Typo3 6.2). Without "WEC Site
Config" it is possible not manage for example templates

Q2. Is there any alternative?

Q3. How to fix this error

Regards,
*
*
On 2016-05-07 19:25, Jigal van Hemert wrote:
> Hi,
>
> On 07/05/2016 17:36, Wiesław Golsz wrote:
>> After doing the upgrade I am in the admin panel, I did DB check (update
>> reference index) all wass ok.
>
> The reference index should have been updated *before* the upgrade.
> Upgrade wizards in the Install Tool may use this index to find
> relations between records. But you're already past this point, so
> let's just hope it wasn't too bad before you started the upgrade.
>
>>
>> Now I tred install Calendar Base (cal_1.5.9). It was removed during the
>> upgrade from 4.5.40 to 6.2.
>
> If it was the Install Tool that removed it the reason was that the
> Install Tool tried to load files from that extension that are also
> loaded when you use the TYPO3 backend. It detected that it caused
> fatal errors and offered you to uninstall the extension(s).
>
> This would imply that the extension isn't compatible with TYPO3 6.2
> and you should not try to install it.
> Luckily the authors of the extension published a version that is
> compatible, so you can upgrade it to the latest version in the
> Extension Manager before installing it.
>
> First you have to uninstall it to get back into the backend:
>
> 1) If the Install Tool previously offered to uninstall it during the
> upgrade the easiest solution is to go back to the Install Tool, open
> the "Important actions" tab and use the button "Check extensions".
> This will detect that the extension causes problems and offers the
> option to uninstall the extension
>
> 2) If you removed it prior to the upgrade you can try the method
> described above. If that doesn't help, use your (S)FTP tool and edit
> the file typo3conf/PackageStates.php (be very careful, if this file is
> damaged TYPO3 will replace it with a new one and most extensions
> (including many system extensions) will be uninstalled; you can
> install them again, it just takes some extra time). For each extension
> it contains block like this:
>
> 'news' =>
> array (
>   'manifestPath' => '',
>   'composerName' => 'georgringer/news',
>   'state' => 'active',
>   'packagePath' => 'typo3conf/ext/news/',
>   'classesPath' => 'Classes/',
>   'suggestions' =>
>   array (
>   ),
> ),
>
> (this is the block for the 'news' extension).
> Find the block for 'cal' and change the value after 'state' into
> "inactive".
> Upload the file.
>
>
> Now you should be able to access the backend again.
>
> Open the Extension Manager and see if there is an update icon in the
> leftmost column "Upd.". If you hold the cursor above the icon it
> should show a tooltip "Update to version 1.10.3". If that is the case
> you can update the 'cal' extension to that version.
>
> If it doesn't show that text, use the selectbox near the top to choose
> the option "Get Extensions". This might take a while to load the
> information of all extensions. It may also be necessary to use the
> button "Update now" on the right side of the screen to import the
> latest information of all extensions in TER; it shows how old the
> information is.
> Use the search box to lookup the extension 'cal' and install that
> latest version from here.
>
> Hope that helps
>

___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english

[TYPO3-english] Cal. Fatal error: require_once() [function.require]:

2016-05-07 Thread Wiesław Golsz
After doing the upgrade I am in the admin panel, I did DB check (update
reference index) all wass ok.

Now I tred install Calendar Base (cal_1.5.9). It was removed during the
upgrade from 4.5.40 to 6.2.

I receive an error:

/Fatal error: require_once() [function.require]: Failed opening required
'PATH_t3libclass.t3lib_treeview.php'
(include_path='/home/www/6.bestchoicefx.com/typo3/contrib/pear/:.:/usr/local/php5.3/lib//php')
in
/home/www/6.bestchoicefx.com/typo3conf/ext/cal/res/class.tx_cal_treeview.php
on line 63/

what can I do? Regards



On 2016-05-06 22:14, Wiesław Golsz wrote:
> Hi,
>
> According suggestions, I update to Typo3 to v4.5.40 and tried to upgrade
> to 6.2. but received this same error -
>
> /Oops, an error occurred! TYPO3 Fatal Error: No database selected!
>
> 'DB' => array(
> 'extTablesDefinitionScript' => 'extTables.php',
> 'host' => 'localhost',
> 'password' => 'mypassword',
> 'port' => 3306,
> 'username' => 'db_username',
> /
> No db name. How I can set my db in /LocalConfiguration.php/?
>
> Can you help me? Wieslaw
>
> On 2016-05-06 17:29, Mark Boland wrote:
>> Hi Wieslaw,
>>
>> the Symlink is not mandatory. The one Symlink that your admin created for 
>> you will suffice if you always upload new updates via FTP into the same 
>> folder (e.g. ’typo3_src/‚).
>>
>> What I asked of you is if you want to do an in-place upgrade from 4.5 to 
>> 6.2, because you would then first want to update the ‚old‘ installation to 
>> the latest available, as there were minor changes in the database from .11 
>> to .40 that are needed for a smooth transition to 6.2. These are missing in 
>> the 6.2 package and that will probably cause an unstable system.
>>
>> If you are doing an in-place update you won’t be asked for your database 
>> credentials anyway.
>>
>> If you followed the upgrade instructions, you already updated all used 3rd 
>> party extensions to the highest version supported by 4.5 and switched them 
>> off before upgrading?
>>
>>
>> Cheers,
>>
>> Mark
>>
>>
>>
>>
>>
>>
>> Am 06.05.16, 17:14 schrieb "Wiesław Golsz" 
>> <typo3-english-boun...@lists.typo3.org im Auftrag von go...@interia.pl>:
>>
>>> Thank you very much Mark,
>>>
>>> This is not a problem of the "last" version 4.5 - I use 4.5.11
>>>
>>> The first problem - creation typo3_src symlink
>>>
>>> My admin solved the problem, but temporarily - with SSH.
>>>
>>> I have tried to recreate the symlinks suggested at:
>>> https://docs.typo3.org/typo3cms/InstallationGuide/QuickInstall/GetAndUnpack/Index.html
>>>
>>> and some other notification have appeared at:
>>> http://6.domain.com/typo3_src-6.2.22/typo3/sysext/install/Start/Install.php
>>>
>>> Therefore, my question is whether the installation (upgrade to 6.2) is
>>> possible without SSS?
>>>
>>> Second problem - on the 3 (of 5 stages) appears in a standard window:
>>> /Select database, you have two options: Select, use an existing empty
>>> database/: etc. But I can not make a selection and choose a specific
>>> database. It is gray and "dead", no response. The same I can not create
>>> a new database.
>>>
>>> Cheers,
>>>
>>> On 2016-05-06 16:50, Mark Boland wrote:
>>>> Hi Wieslaw,
>>>>
>>>> do you want to upgrade or start from scratch?
>>>>
>>>> If you do want to upgrade, update your 4.5 installation to the latest 
>>>> version first (4.5.40), then follow one of the step-by-step instructions 
>>>> available on the net or in the archives of this mailing list.
>>>>
>>>> What you describe is instead the 1-2-3 installation screen for new 
>>>> installations.
>>>>
>>>> Cheers,
>>>>
>>>> Mark
>>>>
>>>>
>>>>
>>>>
>>>>
>>>> Am 06.05.16, 16:27 schrieb "Wiesław Golsz" 
>>>> <typo3-english-boun...@lists.typo3.org im Auftrag von go...@interia.pl>:
>>>>
>>>>> Hello, I have problem - I can't choose the database (step 3). I can open
>>>>> a list of databases, but they are inactive. Likewise, I can not create a
>>>>> new database. Regards, Wieslaw
>>>>>
>>>>> ___
>>>>> TYPO3-english mailing list
>>>>> TYPO3-en

Re: [TYPO3-english] Typo3 4.5.11 to 6.2 Upgrade

2016-05-06 Thread Wiesław Golsz
Hi,

According suggestions, I update to Typo3 to v4.5.40 and tried to upgrade
to 6.2. but received this same error -

/Oops, an error occurred! TYPO3 Fatal Error: No database selected!

'DB' => array(
'extTablesDefinitionScript' => 'extTables.php',
'host' => 'localhost',
'password' => 'mypassword',
'port' => 3306,
'username' => 'db_username',
/
No db name. How I can set my db in /LocalConfiguration.php/?

Can you help me? Wieslaw

On 2016-05-06 17:29, Mark Boland wrote:
> Hi Wieslaw,
>
> the Symlink is not mandatory. The one Symlink that your admin created for you 
> will suffice if you always upload new updates via FTP into the same folder 
> (e.g. ’typo3_src/‚).
>
> What I asked of you is if you want to do an in-place upgrade from 4.5 to 6.2, 
> because you would then first want to update the ‚old‘ installation to the 
> latest available, as there were minor changes in the database from .11 to .40 
> that are needed for a smooth transition to 6.2. These are missing in the 6.2 
> package and that will probably cause an unstable system.
>
> If you are doing an in-place update you won’t be asked for your database 
> credentials anyway.
>
> If you followed the upgrade instructions, you already updated all used 3rd 
> party extensions to the highest version supported by 4.5 and switched them 
> off before upgrading?
>
>
> Cheers,
>
> Mark
>
>
>
>
>
>
> Am 06.05.16, 17:14 schrieb "Wiesław Golsz" 
> <typo3-english-boun...@lists.typo3.org im Auftrag von go...@interia.pl>:
>
>> Thank you very much Mark,
>>
>> This is not a problem of the "last" version 4.5 - I use 4.5.11
>>
>> The first problem - creation typo3_src symlink
>>
>> My admin solved the problem, but temporarily - with SSH.
>>
>> I have tried to recreate the symlinks suggested at:
>> https://docs.typo3.org/typo3cms/InstallationGuide/QuickInstall/GetAndUnpack/Index.html
>>
>> and some other notification have appeared at:
>> http://6.domain.com/typo3_src-6.2.22/typo3/sysext/install/Start/Install.php
>>
>> Therefore, my question is whether the installation (upgrade to 6.2) is
>> possible without SSS?
>>
>> Second problem - on the 3 (of 5 stages) appears in a standard window:
>> /Select database, you have two options: Select, use an existing empty
>> database/: etc. But I can not make a selection and choose a specific
>> database. It is gray and "dead", no response. The same I can not create
>> a new database.
>>
>> Cheers,
>>
>> On 2016-05-06 16:50, Mark Boland wrote:
>>> Hi Wieslaw,
>>>
>>> do you want to upgrade or start from scratch?
>>>
>>> If you do want to upgrade, update your 4.5 installation to the latest 
>>> version first (4.5.40), then follow one of the step-by-step instructions 
>>> available on the net or in the archives of this mailing list.
>>>
>>> What you describe is instead the 1-2-3 installation screen for new 
>>> installations.
>>>
>>> Cheers,
>>>
>>> Mark
>>>
>>>
>>>
>>>
>>>
>>> Am 06.05.16, 16:27 schrieb "Wiesław Golsz" 
>>> <typo3-english-boun...@lists.typo3.org im Auftrag von go...@interia.pl>:
>>>
>>>> Hello, I have problem - I can't choose the database (step 3). I can open
>>>> a list of databases, but they are inactive. Likewise, I can not create a
>>>> new database. Regards, Wieslaw
>>>>
>>>> ___
>>>> TYPO3-english mailing list
>>>> TYPO3-english@lists.typo3.org
>>>> http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english
>>> ___
>>> TYPO3-english mailing list
>>> TYPO3-english@lists.typo3.org
>>> http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english
>>
>> ___
>> TYPO3-english mailing list
>> TYPO3-english@lists.typo3.org
>> http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english
> ___
> TYPO3-english mailing list
> TYPO3-english@lists.typo3.org
> http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english

Re: [TYPO3-english] Typo3 4.5.11 to 6.2 Upgrade

2016-05-06 Thread Wiesław Golsz
Thank you very much Mark,

This is not a problem of the "last" version 4.5 - I use 4.5.11

The first problem - creation typo3_src symlink

My admin solved the problem, but temporarily - with SSH.

I have tried to recreate the symlinks suggested at:
https://docs.typo3.org/typo3cms/InstallationGuide/QuickInstall/GetAndUnpack/Index.html

and some other notification have appeared at:
http://6.domain.com/typo3_src-6.2.22/typo3/sysext/install/Start/Install.php

Therefore, my question is whether the installation (upgrade to 6.2) is
possible without SSS?

Second problem - on the 3 (of 5 stages) appears in a standard window:
/Select database, you have two options: Select, use an existing empty
database/: etc. But I can not make a selection and choose a specific
database. It is gray and "dead", no response. The same I can not create
a new database.

Cheers,

On 2016-05-06 16:50, Mark Boland wrote:
> Hi Wieslaw,
>
> do you want to upgrade or start from scratch?
>
> If you do want to upgrade, update your 4.5 installation to the latest version 
> first (4.5.40), then follow one of the step-by-step instructions available on 
> the net or in the archives of this mailing list.
>
> What you describe is instead the 1-2-3 installation screen for new 
> installations.
>
> Cheers,
>
> Mark
>
>
>
>
>
> Am 06.05.16, 16:27 schrieb "Wiesław Golsz" 
> <typo3-english-boun...@lists.typo3.org im Auftrag von go...@interia.pl>:
>
>> Hello, I have problem - I can't choose the database (step 3). I can open
>> a list of databases, but they are inactive. Likewise, I can not create a
>> new database. Regards, Wieslaw
>>
>> ___
>> TYPO3-english mailing list
>> TYPO3-english@lists.typo3.org
>> http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english
> ___
> TYPO3-english mailing list
> TYPO3-english@lists.typo3.org
> http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english

[TYPO3-english] Typo3 4.5.11 to 6.2 Upgrade

2016-05-06 Thread Wiesław Golsz
Hello, I have problem - I can't choose the database (step 3). I can open
a list of databases, but they are inactive. Likewise, I can not create a
new database. Regards, Wieslaw

___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


[TYPO3-english] Typo3 4.5.11 to 6.2 Upgrade. Symlink

2016-05-06 Thread Wiesław Golsz
Hello,

whether it is possible to set /typo3_src symlink/ without SSH?

Regards

___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


Re: [TYPO3-english] Typo3 4.5.11 to 6.2 update

2016-05-06 Thread Wiesław Golsz
Thank you very much Peter,

Now I see 13 errors (1 red):

*/typo3_src should be a link, but it does not exist*
Links cannot be fixed by this system

What I must  to do - and how. Regards

Regards


On 2016-05-05 22:19, Peter Linzenkirchner wrote:
> Hello Wiesław, 
>
> your extension wecsermons is not compatible to TYPO3 6.2. You need to 
> deactivate it or search for an update. 
>
> Peter
>
>
>> Am 05.05.2016 um 22:13 schrieb Wiesław Golsz <go...@interia.pl>:
>>
>> Hi,
>>
>> I tried update 4.5.11 to 6.2 and received this error:
>>
>> *Fatal error*: require_once() [function.require
>> <http://6.web-hosting-professional.net/typo3/function.require>]: Failed
>> opening required 'PATH_t3libclass.t3lib_div.php'
>> (include_path='/home/www/6.web-hosting-professional.net/typo3/contrib/pear/:.:/usr/local/php5.3/lib//php')
>> in
>> */home/www/6.web-hosting-professional.net/typo3conf/ext/wec_sermons/class.tx_wecsermons_xmlView.php*
>> on line *25*
>>
>> Can you help me?**Regards*
>> *
>>
>>
>>
>> ___
>> TYPO3-english mailing list
>> TYPO3-english@lists.typo3.org
>> http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english
>
>
> --
> Xing: http://www.xing.com/profile/Peter_Linzenkirchner
> Web: http://www.typo3-lisardo.de
> Facebook: http://tinyurl.com/lisardo-multimedia
>
> ___
> TYPO3-english mailing list
> TYPO3-english@lists.typo3.org
> http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english

[TYPO3-english] Typo3 4.5.11 to 6.2 update

2016-05-05 Thread Wiesław Golsz
Hi,

I tried update 4.5.11 to 6.2 and received this error:

*Fatal error*: require_once() [function.require
]: Failed
opening required 'PATH_t3libclass.t3lib_div.php'
(include_path='/home/www/6.web-hosting-professional.net/typo3/contrib/pear/:.:/usr/local/php5.3/lib//php')
in
*/home/www/6.web-hosting-professional.net/typo3conf/ext/wec_sermons/class.tx_wecsermons_xmlView.php*
on line *25*

Can you help me?**Regards*
*



___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


Re: [TYPO3-english] TYPO3 Hosting or VPS offers

2016-01-22 Thread Wiesław Golsz
Hi Mario,

Please, see this VPS Server:
http://web-hosting-professional.com/vps-servers/

You can choose not only the type, but the optimum server configuration.

For many years I have used Typo3 for e.g.
http://bestchoicefx.com/

Please contact with support - excellent.
http://web-hosting-professional.com/support/vps-servers-tech-support/

Regards, Wieslaw


On 2016-01-22 15:08, mario chiari wrote:
> Hi
>
> I am looking for a hosting or a VPS   service for a single TYPO3 site,
> low traffic, very basic budget.
>
> I need to be sure that  whatever is required for TYPO3 and its main
> extensions is present/permitted (eg. mod_rewite for realurl).
>
> It would be nice to deal with a provider which is dedicated to TYPO3.
> Possibly somewhere in EU. 
>
> Thanks for your advise.
> Cheers
> mario
>
>
>
>
> ___
> TYPO3-english mailing list
> TYPO3-english@lists.typo3.org
> http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english
>

___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


[TYPO3-english] Facebook Ext

2014-07-03 Thread Wiesław Golsz
What Extensions to Facebook you can recommend?

I consider the following applies:

1. News to Facebook Integration - News can be seen on Facebook;
2. Facebook to Typo3 integration - Facebook Posts are visible on the
selected page on Facebook

Regards,
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


[TYPO3-english] Facebook Ext

2014-06-28 Thread Wiesław Golsz
What Extensions to Facebook you can recommend?

I consider the following applies:

1. News to Facebook Integration - News can be seen on Facebook;
2. Facebook to Typo3 integration - Facebook Posts are visible on the
selected page on Facebook

Regards,
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


[TYPO3-english] Facebook Ext

2014-06-27 Thread Wiesław Golsz
What Extensions to Facebook you can recommend?

I consider the following applies:

1. News to Facebook Integration - News can be seen on Facebook;
2. Facebook to Typo3 integration - Facebook Posts are visible on the
selected page on Facebook

Regards,
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


[TYPO3-english] Facebook Plugin

2014-06-26 Thread Wiesław Golsz
Hello,

I tried to use Facebook Plugin:

http://typo3.org/extensions/repository/view/ods_facebook

but I see problems:

By first, I want to show facebook [e.g
https://www.facebook.com/money.finances] posts on my Typo3 website.

1. My Typo3 site: http://bestchoicefx.com/, I registered this url in
https://developers.facebook.com/apps
2. I see App ID, App Secret, but I do not see API Key - where is problem?
3. Plugin is installed on http://bestchoicefx.com/news-and-events/ - I
do not see any results - why?

Manual:
http://docs.typo3.org/typo3cms/extensions/ods_facebook/ExtFacebookPlugin/Administration/Index.html

P.S. when I try authorize the extension with your facebook account I
received:

/Given URL is not allowed by the Application configuration.: One or more
of the given URLs is not allowed by the App's settings. It must match
the Website URL or Canvas URL, or the domain must be a subdomain of one
of the App's domains./

Regards,
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


[TYPO3-english] Facebook Plugin

2014-06-26 Thread Wiesław Golsz
Hello,

I tried to use Facebook Plugin:

http://typo3.org/extensions/repository/view/ods_facebook

but I see problems:

By first, I want to show facebook [e.g
https://www.facebook.com/money.finances] posts on my Typo3 website.

1. My Typo3 site: http://bestchoicefx.com/, I registered this url in
https://developers.facebook.com/apps
2. I see App ID, App Secret, but I do not see API Key - where is problem?
3. Plugin is installed on http://bestchoicefx.com/news-and-events/ - I
do not see any results - why?

Manual:
http://docs.typo3.org/typo3cms/extensions/ods_facebook/ExtFacebookPlugin/Administration/Index.html

P.S. when I try authorize the extension with your facebook account I
received:

/Given URL is not allowed by the Application configuration.: One or more
of the given URLs is not allowed by the App's settings. It must match
the Website URL or Canvas URL, or the domain must be a subdomain of one
of the App's domains./

Regards,

___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


[TYPO3-english] Facebook Plugin

2014-06-25 Thread Wiesław Golsz
Hello,

I tried to use Facebook Plugin:

http://typo3.org/extensions/repository/view/ods_facebook

but I see problems:

By first, I want to show facebook [e.g
https://www.facebook.com/money.finances] posts on my Typo3 website.

1. My Typo3 site: http://bestchoicefx.com/, I registered this url in
https://developers.facebook.com/apps
2. I see App ID, App Secret, but I do not see API Key - where is problem?
3. Plugin is installed on http://bestchoicefx.com/news-and-events/ - I
do not see any results - why?

Manula:
http://docs.typo3.org/typo3cms/extensions/ods_facebook/ExtFacebookPlugin/Administration/Index.html

P.S. when I try authorize the extension with your facebook account I
received:

/Given URL is not allowed by the Application configuration.: One or more
of the given URLs is not allowed by the App's settings. It must match
the Website URL or Canvas URL, or the domain must be a subdomain of one
of the App's domains./

Regards,
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


Re: [TYPO3-english] hosting in uk

2014-05-05 Thread Wiesław Golsz
Hi Michael,

http://www.web-hosting-professional.com
http://www.web-hosting-professional.com/about_us/data_centers/
http://www.web-hosting-professional.com/about_us/data_centers/data_center_uk/tour_step_1.html

Regards, Wieslaw

On 2014-05-05 16:35, Michael Schams wrote:
 On 05/05/14 23:44, Simone Costesso wrote:

  Hi, does anyone know a typo3 hosting service in UK?

 Hi Simone,

 It depends what you are looking for, but you could use one of our
 TYPO3-optimised machine images at Amazon Web Services (AWS) in
 eu-west-1, which is geographically located in Ireland.

 http://schams.net/typo3-on-aws/

 Running your own server with TYPO3 CMS means, you have to maintain it
 (e.g. installing security updates, etc.) of course - AWS provides the
 infrastructure only.


 Cheers
 Michael

 ___
 TYPO3-english mailing list
 TYPO3-english@lists.typo3.org
 http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


[TYPO3-english] PHP 5.4 Strict Standards...

2013-05-25 Thread Wiesław Golsz
Thank you very much,

I did change (add) inlocalconf.php,

$TYPO3_CONF_VARS['SYS']['errorHandlerErrors'] = '30466';
$TYPO3_CONF_VARS['SYS']['exceptionalErrors'] = '20480';

and now I see [only] Strict Standards errors: ...

Kind Regards, Wieslaw

/Strict Standards: Non-static method t3lib_div::getClassName() should
not be called statically in
/home/www/domain.com/t3lib/class.t3lib_div.php on line 5338//
//
//Strict Standards: Non-static method t3lib_div::getClassName() should
not be called statically in
/home/www/domain.com/t3lib/class.t3lib_div.php on line 5338//
//
//Strict Standards: Declaration of
t3lib_userAuthGroup::checkLogFailures() should be compatible with
t3lib_userAuth::checkLogFailures() in
/home/www/domain.com/t3lib/class.t3lib_userauthgroup.php on line 1925//
//
//Strict Standards: Non-static method t3lib_div::getClassName() should
not be called statically in
/home/www/domain.com/t3lib/class.t3lib_div.php on line 5338//
//
//Strict Standards: Non-static method t3lib_div::getClassName() should
not be called statically in
/home/www/domain.com/t3lib/class.t3lib_div.php on line 5338//
//
//Strict Standards: Non-static method t3lib_div::getClassName() should
not be called statically in
/home/www/domain.com/t3lib/class.t3lib_div.php on line 5338//
//
//Strict Standards: Non-static method t3lib_div::getClassName() should
not be called statically in
/home/www/domain.com/t3lib/class.t3lib_div.php on line 5338//
//
//Strict Standards: Non-static method t3lib_div::getClassName() should
not be called statically in
/home/www/domain.com/t3lib/class.t3lib_div.php on line 5338//
//
//Strict Standards: Non-static method t3lib_div::getClassName() should
not be called statically in
/home/www/domain.com/t3lib/class.t3lib_div.php on line 5338//
//
//Strict Standards: Non-static method t3lib_div::getClassName() should
not be called statically in
/home/www/domain.com/t3lib/class.t3lib_div.php on line 5338//
//
//Strict Standards: Non-static method t3lib_div::getClassName() should
not be called statically in
/home/www/domain.com/t3lib/class.t3lib_div.php on line 5338//
//
//Strict Standards: Non-static method t3lib_div::getClassName() should
not be called statically in
/home/www/domain.com/t3lib/class.t3lib_div.php on line 5338//
//
//Strict Standards: Accessing static property
t3lib_PageRenderer::$jsFiles as non static in
/home/www/domain.com/t3lib/class.t3lib_pagerenderer.php on line 180//
//
//Strict Standards: Accessing static property
t3lib_PageRenderer::$jsFooterFiles as non static in
/home/www/domain.com/t3lib/class.t3lib_pagerenderer.php on line 181//
//
//Strict Standards: Accessing static property
t3lib_PageRenderer::$jsLibs as non static in
/home/www/domain.com/t3lib/class.t3lib_pagerenderer.php on line 184//
//
//Strict Standards: Accessing static property
t3lib_PageRenderer::$cssFiles as non static in
/home/www/domain.com/t3lib/class.t3lib_pagerenderer.php on line 185//
//
//Strict Standards: Non-static method t3lib_div::getClassName() should
not be called statically in
/home/www/domain.com/t3lib/class.t3lib_div.php on line 5338//
//
//Strict Standards: Non-static method t3lib_div::getClassName() should
not be called statically in
/home/www/domain.com/t3lib/class.t3lib_div.php on line 5338/

WG

On 2013-05-22 14:31, Stefan Reichelt wrote:
 Hello Wiesław,

 On 22/05/2013 13:25, Wiesław Golsz wrote:
 /Fix your error bitmask or reset to back to the TYPO3 default (by
 deleting the line in localconfiguration.php)/
 In newer TYPO3 versions (6.x and above I think?) these harmless PHP
 warnings (which are E_STRICT errors and are included in E_ALL since PHP
 5.4) are excluded by default from TYPO3.

 In 4.5 you can either change the values through the install tool or
 add it manually to the localconf.php, for example:
 $TYPO3_CONF_VARS['SYS']['errorHandlerErrors'] = '30466';
 $TYPO3_CONF_VARS['SYS']['exceptionalErrors'] = '20480';

 30466 and 20480 are the default values in 6.x and exclude E_STRICT
 (among a few others).


 Kind regards
 Stefan
 ___
 TYPO3-english mailing list
 TYPO3-english@lists.typo3.org
 http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english

[TYPO3-english] PHP 5.4

2013-05-22 Thread Wiesław Golsz
Hello, I tried upgrade PHP from 5.3 to 5.4 and I received error - as
follows.

I received an explanation:

/Fix your error bitmask or reset to back to the TYPO3 default (by
deleting the line in localconfiguration.php)/

... and later that involves the removal of /errorHandlerErrors/ or
/exceptionalErrors/

But I do not have in file /typo3conf/localconf.php errorHandlerErrors
or exceptionalErrors

I use Typo3 V.4.5.11

Can you help? Regards,

=

/Strict Standards: Non-static method t3lib_div::getClassName() should
not be called statically in
/home/www/domain.co/t3lib/class.t3lib_div.php on line 5338

Strict Standards: Non-static method t3lib_div::getClassName() should not
be called statically in /home/www/domain.co/t3lib/class.t3lib_div.php on
line 5338

Strict Standards: Non-static method t3lib_div::getClassName() should not
be called statically in /home/www/domain.co/t3lib/class.t3lib_div.php on
line 5338

Strict Standards: Non-static method t3lib_div::getClassName() should not
be called statically in /home/www/domain.co/t3lib/class.t3lib_div.php on
line 5338

Strict Standards: Non-static method
t3lib_cache::isCachingFrameworkInitialized() should not be called
statically in /home/www/domain.co/t3lib/class.t3lib_cache.php on line 46

Strict Standards: Non-static method t3lib_div::getClassName() should not
be called statically in /home/www/domain.co/t3lib/class.t3lib_div.php on
line 5338

Strict Standards: Non-static method t3lib_div::getClassName() should not
be called statically in /home/www/domain.co/t3lib/class.t3lib_div.php on
line 5338

Strict Standards: Non-static method t3lib_div::getClassName() should not
be called statically in /home/www/domain.co/t3lib/class.t3lib_div.php on
line 5338

Strict Standards: Non-static method t3lib_div::getClassName() should not
be called statically in /home/www/domain.co/t3lib/class.t3lib_div.php on
line 5338

Strict Standards: Non-static method
tx_weccontentelements_lib::addTyposcript() should not be called
statically in
/home/www/domain.co/typo3conf/temp_CACHED_FE_psc01e_ext_localconf.php on
line 409

Strict Standards: Non-static method
tx_weccontentelements_lib::addTyposcript() should not be called
statically in
/home/www/domain.co/typo3conf/temp_CACHED_FE_psc01e_ext_localconf.php on
line 410

Strict Standards: Non-static method
tx_weccontentelements_lib::addTyposcript() should not be called
statically in
/home/www/domain.co/typo3conf/temp_CACHED_FE_psc01e_ext_localconf.php on
line 411

Strict Standards: Non-static method
tx_weccontentelements_lib::addTyposcript() should not be called
statically in
/home/www/domain.co/typo3conf/temp_CACHED_FE_psc01e_ext_localconf.php on
line 412

Strict Standards: Non-static method
tx_weccontentelements_lib::addTyposcript() should not be called
statically in
/home/www/domain.co/typo3conf/temp_CACHED_FE_psc01e_ext_localconf.php on
line 413

Strict Standards: Non-static method t3lib_div::getClassName() should not
be called statically in /home/www/domain.co/t3lib/class.t3lib_div.php on
line 5338

Fatal error: Uncaught exception 't3lib_error_Exception' with message
'PHP Runtime Notice: Non-static method t3lib_div::getClassName() should
not be called statically in
/home/www/domain.co/t3lib/class.t3lib_div.php line 5338' in
/home/www/domain.co/t3lib/error/class.t3lib_error_errorhandler.php:106
Stack trace: #0 /home/www/domain.co/t3lib/class.t3lib_div.php(5338):
t3lib_error_ErrorHandler-handleError(2048, 'Non-static meth...',
'/home/www/domain...', 5338, Array) #1
/home/www/domain.co/t3lib/class.t3lib_div.php(5338):
t3lib_div::getClassName() #2
/home/www/domain.co/typo3/sysext/cms/tslib/index_ts.php(150):
t3lib_div::makeInstance('t3lib_error_Pro...') #3
/home/www/domain.co/index.php(84): require('/home/www/domain...') #4
{main} thrown in
/home/www/domain.co/t3lib/error/class.t3lib_error_errorhandler.php on
line 106/

Regards,
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


Re: [TYPO3-english] PHP 5.4

2013-05-21 Thread Wiesław Golsz
Hello Phlipp,

File /typo3conf/localconf.php does not have any errorHandlerErrors or
exceptionalErrors

Regards, Wieslaw

On 2013-05-19 17:17, Philipp Gampe wrote:
 Hi Wiesław,

 Wiesław Golsz wrote:

 Excuse, what line (for deleting) you mean in localconf.php?
 Something that includes either errorHandlerErrors or exceptionalErrors.

 Best regards

___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english

[TYPO3-english] PHP 5.4

2013-05-19 Thread Wiesław Golsz
Hello, I tried upgrade PHP from 5.3 to 5.4 and I received error:

/Strict Standards: Non-static method t3lib_div::getClassName() should
not be called statically in
/home/www/domain.co/t3lib/class.t3lib_div.php on line 5338

Strict Standards: Non-static method t3lib_div::getClassName() should not
be called statically in /home/www/domain.co/t3lib/class.t3lib_div.php on
line 5338

Strict Standards: Non-static method t3lib_div::getClassName() should not
be called statically in /home/www/domain.co/t3lib/class.t3lib_div.php on
line 5338

Strict Standards: Non-static method t3lib_div::getClassName() should not
be called statically in /home/www/domain.co/t3lib/class.t3lib_div.php on
line 5338

Strict Standards: Non-static method
t3lib_cache::isCachingFrameworkInitialized() should not be called
statically in /home/www/domain.co/t3lib/class.t3lib_cache.php on line 46

Strict Standards: Non-static method t3lib_div::getClassName() should not
be called statically in /home/www/domain.co/t3lib/class.t3lib_div.php on
line 5338

Strict Standards: Non-static method t3lib_div::getClassName() should not
be called statically in /home/www/domain.co/t3lib/class.t3lib_div.php on
line 5338

Strict Standards: Non-static method t3lib_div::getClassName() should not
be called statically in /home/www/domain.co/t3lib/class.t3lib_div.php on
line 5338

Strict Standards: Non-static method t3lib_div::getClassName() should not
be called statically in /home/www/domain.co/t3lib/class.t3lib_div.php on
line 5338

Strict Standards: Non-static method
tx_weccontentelements_lib::addTyposcript() should not be called
statically in
/home/www/domain.co/typo3conf/temp_CACHED_FE_psc01e_ext_localconf.php on
line 409

Strict Standards: Non-static method
tx_weccontentelements_lib::addTyposcript() should not be called
statically in
/home/www/domain.co/typo3conf/temp_CACHED_FE_psc01e_ext_localconf.php on
line 410

Strict Standards: Non-static method
tx_weccontentelements_lib::addTyposcript() should not be called
statically in
/home/www/domain.co/typo3conf/temp_CACHED_FE_psc01e_ext_localconf.php on
line 411

Strict Standards: Non-static method
tx_weccontentelements_lib::addTyposcript() should not be called
statically in
/home/www/domain.co/typo3conf/temp_CACHED_FE_psc01e_ext_localconf.php on
line 412

Strict Standards: Non-static method
tx_weccontentelements_lib::addTyposcript() should not be called
statically in
/home/www/domain.co/typo3conf/temp_CACHED_FE_psc01e_ext_localconf.php on
line 413

Strict Standards: Non-static method t3lib_div::getClassName() should not
be called statically in /home/www/domain.co/t3lib/class.t3lib_div.php on
line 5338

Fatal error: Uncaught exception 't3lib_error_Exception' with message
'PHP Runtime Notice: Non-static method t3lib_div::getClassName() should
not be called statically in
/home/www/domain.co/t3lib/class.t3lib_div.php line 5338' in
/home/www/domain.co/t3lib/error/class.t3lib_error_errorhandler.php:106
Stack trace: #0 /home/www/domain.co/t3lib/class.t3lib_div.php(5338):
t3lib_error_ErrorHandler-handleError(2048, 'Non-static meth...',
'/home/www/domain...', 5338, Array) #1
/home/www/domain.co/t3lib/class.t3lib_div.php(5338):
t3lib_div::getClassName() #2
/home/www/domain.co/typo3/sysext/cms/tslib/index_ts.php(150):
t3lib_div::makeInstance('t3lib_error_Pro...') #3
/home/www/domain.co/index.php(84): require('/home/www/domain...') #4
{main} thrown in
/home/www/domain.co/t3lib/error/class.t3lib_error_errorhandler.php on
line 106/

Regards,
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


[TYPO3-english] Update to 6.1.0

2013-05-19 Thread Wiesław Golsz
Hello,

I tried to update from Typo3 4.5.11 to 6.1.0 and I received this error

Fatal error: Call to undefined method
TYPO3\CMS\Core\Utility\GeneralUtility::int_from_ver() in
/home/www/cyfra7co.us.cloudlogin.co/typo3conf/ext/templavoila_framework/ext_localconf.php
on line 4

Regards,*
*
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


Re: [TYPO3-english] PHP 5.4

2013-05-19 Thread Wiesław Golsz
Thank you very much Philipp.

Excuse, what line (for deleting) you mean in localconf.php?

Regards, Wieslaw



On 2013-05-19 16:05, Philipp Gampe wrote:
 Hi Wiesław Golsz,

 Wiesław Golsz wrote:

 Hello, I tried upgrade PHP from 5.3 to 5.4 and I received error:
 Your error bitmask does is not the default one defined in lastest TYPO3 
 version. Fix your error bitmask or reset to back to the TYPO3 default (by 
 deleting the line in localconfiguration.php).Excuse, what line you mean in 
 localconf.php

 You need to exclude strict warnings.

 Best regards

___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english

[TYPO3-english] UTF-8

2013-05-16 Thread Wiesław Golsz
I tried migrate to UTF-8 according to:
http://wiki.typo3.org/UTF-8_support#Convert_an_already_existing_database_to_UTF-8

1. I did update DB using Install Tool and possibly removed the
unnecessary table.

2. I used: http://domain.com/fileadmin/db_utf8_fix.php

and receive:

backend_layout: . OK
be_groups: . OK
be_sessions:  OK
be_users:  OK
cache_extensions: ... OK
cache_hash: Could not get table data!: Table 'database.cache_hash'
doesn't exist SHOW FULL COLUMNS FROM `cache_hash`;


3. I tried to use Install Tool to create removed tables, but no result.

You can still see: Kląłeś właśnie – super. Dzę. What we can to do?

Excuse me, I can not find
$TYPO3_CONF_VARS['BE']['forceCharset'] = 'utf-8';

In what area is it?

Regards, Wieslaw
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english

[TYPO3-english] UTF-8

2013-05-16 Thread Wiesław Golsz
I tried migrate to UTF-8 according to:
http://wiki.typo3.org/UTF-8_support#Convert_an_already_existing_database_to_UTF-8

1. I did update DB using Install Tool and possibly removed the
unnecessary table.

2. I used: http://domain.com/fileadmin/db_utf8_fix.php

and receive:

backend_layout: . OK
be_groups: . OK
be_sessions:  OK
be_users:  OK
cache_extensions: ... OK
cache_hash: Could not get table data!: Table 'database.cache_hash'
doesn't exist SHOW FULL COLUMNS FROM `cache_hash`;


3. I tried to use Install Tool to create removed tables, but no result.

You can still see: Kląłeś właśnie – super. Dzę. What we can to do?

Excuse me, I can not find
$TYPO3_CONF_VARS['BE']['forceCharset'] = 'utf-8';

In what area is it?

Regards, Wieslaw
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english

[TYPO3-english] TYPO3 6.1 Call to undefined method

2013-05-13 Thread Wiesław Golsz
Hi,

I changed my PHP settings, and there is another problem:

Fatal error: Call to undefined method
TYPO3\CMS\Core\Utility\GeneralUtility::int_from_ver() in
/home/www/domain.com/typo3conf/ext/templavoila/ext_localconf.php on line 15

WG


On 2013-05-11 13:09, Mark Boland wrote:
 Please check the requirements for 6.1. Seems that your PHP does not support 
 namespaces

 Best regards
 Mark
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


Re: [TYPO3-english] TYPO3 6.1 Call to undefined method

2013-05-13 Thread Wiesław Golsz
Thank you very much Xavier,

- but how I can update templavoila - I can't login to BO.

Best Regards, Wieslaw


On 2013-05-13 09:09, Xavier Perseguers wrote:
 Hi Wiesław,

 You should update templavoila, your version is not compatible with TYPO3
 6.1.

 Kind regards
 Xavier

 Wiesław Golsz wrote:
 Hi,

 I changed my PHP settings, and there is another problem:

 Fatal error: Call to undefined method
 TYPO3\CMS\Core\Utility\GeneralUtility::int_from_ver() in
 /home/www/domain.com/typo3conf/ext/templavoila/ext_localconf.php on line 15

 WG


 On 2013-05-11 13:09, Mark Boland wrote:
 Please check the requirements for 6.1. Seems that your PHP does not support 
 namespaces

 Best regards
 Mark

___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english

[TYPO3-english] Ext Manager

2013-05-13 Thread Wiesław Golsz
I can't open the Ext Manager. No problems with WEB, other Tools, etc...

Wieslaw
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


[TYPO3-english] TYPO3 6.1 Parse error: syntax error, unexpected T_STRING

2013-05-11 Thread Wiesław Golsz
Hi,

I tried move to 6.1, but I received error:

Warning: Unexpected character in input: '\' (ASCII=92) state=1 in
/home/www/domain.com/typo3/install/index.php on line 37

Warning: Unexpected character in input: '\' (ASCII=92) state=1 in
/home/www/domain.com/typo3/install/index.php on line 37

Parse error: syntax error, unexpected T_STRING in
/home/www/domain.com/typo3/install/index.php on line 37

Regards,
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


[TYPO3-english] TYPO3 4.4 and PHP 5.4

2013-05-11 Thread Wiesław Golsz
Hello,

I change PHP to V.5.4 and received error:

/Strict Standards: Non-static method
tx_weccontentelements_lib::addTyposcript() should not be called
statically in
/home/www/cyfra7.com/typo3conf/temp_CACHED_FE_pse926_ext_localconf.php
on line 326//
//
//Strict Standards: Non-static method
tx_weccontentelements_lib::addTyposcript() should not be called
statically in
/home/www/cyfra7.com/typo3conf/temp_CACHED_FE_pse926_ext_localconf.php
on line 327//
//
//Strict Standards: Non-static method
tx_weccontentelements_lib::addTyposcript() should not be called
statically in
/home/www/cyfra7.com/typo3conf/temp_CACHED_FE_pse926_ext_localconf.php
on line 328//
//
//Strict Standards: Non-static method
tx_weccontentelements_lib::addTyposcript() should not be called
statically in
/home/www/cyfra7.com/typo3conf/temp_CACHED_FE_pse926_ext_localconf.php
on line 329//
//
//Strict Standards: Non-static method
tx_weccontentelements_lib::addTyposcript() should not be called
statically in
/home/www/cyfra7.com/typo3conf/temp_CACHED_FE_pse926_ext_localconf.php
on line 330//
//
//Strict Standards: Non-static method t3lib_div::getClassName() should
not be called statically in
/home/www/cyfra7.com/t3lib/class.t3lib_div.php on line 5238//
//
//Fatal error: Uncaught exception 't3lib_error_Exception' with message
'PHP Runtime Notice: Non-static method t3lib_div::getClassName() should
not be called statically in
/home/www/cyfra7.com/t3lib/class.t3lib_div.php line 5238' in
/home/www/cyfra7.com/t3lib/error/class.t3lib_error_errorhandler.php:106
Stack trace: #0 /home/www/cyfra7.com/t3lib/class.t3lib_div.php(5238):
t3lib_error_ErrorHandler-handleError(2048, 'Non-static meth...',
'/home/www/cyfra...', 5238, Array) #1
/home/www/cyfra7.com/t3lib/class.t3lib_div.php(5238):
t3lib_div::getClassName() #2
/home/www/cyfra7.com/typo3/sysext/cms/tslib/index_ts.php(150):
t3lib_div::makeInstance('t3lib_error_Pro...') #3
/home/www/cyfra7.com/index.php(84): require('/home/www/cyfra...') #4
{main} thrown in
/home/www/cyfra7.com/t3lib/error/class.t3lib_error_errorhandler.php on
line 106/

Regards,


___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


[TYPO3-english] Upgrade to 4.5.11 or more...

2013-05-08 Thread Wiesław Golsz
Hello,

I tried to instal / reinstall Typo3 v.4.5.11

but I received error:

/ADONewConnection: Unable to load database driver ''//
//Fatal error: Call to a member function PConnect() on a non-object in
/home/www/domain.com/typo3/sysext/dbal/class.ux_t3lib_db.php on line 3157//
/
There are no problems with the installation of 4.4.4

Regards,



___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english


[TYPO3-english] Ext: cookiepolicybar

2013-04-08 Thread Wiesław Golsz
Hello,

I have Typo3 Version 4.4.4 and I need to install your cookiepolicybar:
http://typo3.org/extensions/repository/view/cookiepolicybar

But I can't upgrade Typo3 now to 4.5. Can you help us?

Best Regards,
Wieslaw
___
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english