Viewing 11 posts - 1 through 11 (of 11 total)
  • Author
    Posts
  • giuliano m Friend
    #950379

    i have now joomla 3.6 + teline v ( I also tried to disable all plugins)
    important was the same situation with joomla 3.5

    my server dedicated : CPU Intel 8 Core RAM Min. 12GB DDR3 Frequenza Min. CPU 2.80GhZ per core.

    Examples of error in the log file

    mod_fcgid: stderr: PHP Warning:  strpos(): Empty needle in  templates/ja_teline_v/html/layouts/joomla/content/item/default.php on line 34
    [Fri Jul 15 03:04:11 2016] [warn] [client  ] mod_fcgid: stderr: PHP Warning:  strpos(): Empty needle in  /templates/ja_teline_v/html/layouts/joomla/content/item/default.php on line 34
    [Fri Jul 15 03:31:45 2016] [error] [client  ] client denied by server configuration: administrator/index.php
    [Fri Jul 15 04:20:34 2016] [error] [client  ] client denied by server configuration:  /httpdocs/administrator/index.php

    after the upgrade, the server is always overloaded, the joomla installation is clean / new I also tried to put php 7. as soon as we are online users served the site crashes / down –

    you have some advice to optimize everything? to you it has already happened?

    Ninja Lead Moderator
    #951046

    Hi,

    You can provide me the admin login backend of your site and FTP account of your hosting via private reply. I will help you to check this bug on your site.

    Regards

    giuliano m Friend
    #951131
    This reply has been marked as private.
    Ninja Lead Moderator
    #951316

    I fixed the problem on your site with the solution below

    Open templates/ja_teline_v/html/layouts/joomla/content/item/default.php file

    find and change

    if ($params->get('show_intro', 0)) {
        $pos = strpos($item->text, $item->introtext);
        if ($pos !== false) {
            $item->text = substr_replace ($item->text, '', $pos, strlen($item->introtext));
        }
    }

    to

    if ($params->get('show_intro', 0)) {
        $pos = false;
        if (isset($item->text) && isset($item->introtext)){
            $pos = strpos($item->text, $item->introtext);
        }
    
        if ($pos !== false) {
            $item->text = substr_replace ($item->text, '', $pos, strlen($item->introtext));
        }
    }

    You can check it again and let me know if it helps

    giuliano m Friend
    #951581

    Tomorrow I check the server estate with more people.
    as always you have been very kind and helpful. Thx

    Ninja Lead Moderator
    #951661

    Let me know if you have any questions

    giuliano m Friend
    #953087

    unfortunately the problem continues, I have also updated the template 1.09 ( adding your code) but there are the same problems

    My provider says that it is a joomla and template problem.

    please help me, I do not know what to do.

    I have looked for solutions on google but nothing.

    Log file:

    [Mon Jul 25 19:34:28 2016] [error] [client ] client denied by server configuration: /httpdocs/administrator/index.php
    [Mon Jul 25 19:37:46 2016] [warn] [client ] mod_fcgid: stderr: PHP Notice: Use of undefined constant style – assumed ‘style’ in /httpdocs/templates/ja_teline_v/html/layouts/joomla/content/item/event.php on line 30
    [Mon Jul 25 19:39:52 2016] [warn] [client ] mod_fcgid: stderr: PHP Warning: strpos(): Empty needle in /data/vhosts/latinapress.it/httpdocs/templates/ja_teline_v/html/layouts/joomla/content/item/default.php on line 34
    [Mon Jul 25 19:41:05 2016] [warn] [client ] mod_fcgid: stderr: PHP Notice: Undefined index: view in /data/vhosts/latinapress.it/httpdocs/components/com_content/router.php on line 73
    [Mon Jul 25 19:44:44 2016] [warn] [client ] mod_fcgid: stderr: PHP Notice: Use of undefined constant style – assumed ‘style’ in httpdocs/templates/ja_teline_v/html/layouts/joomla/content/item/event.php on line 30
    [Mon Jul 25 19:49:49 2016] [warn] [client ] mod_fcgid: stderr: PHP Notice: Use of undefined constant style – assumed ‘style’ in/templates/ja_teline_v/html/layouts/joomla/content/item/event.php on line 30
    [Mon Jul 25 19:53:55 2016] [warn] [client ] mod_fcgid: stderr: PHP Notice: Use of undefined constant style – assumed ‘style’ in /templates/ja_teline_v/html/layouts/joomla/content/item/event.php on line 30, referer: http://www.
    [Mon Jul 25 19:53:58 2016] [warn] [client ] mod_fcgid: stderr: PHP Notice: Use of undefined constant style – assumed ‘style’ in /data/vhosts/latinapress.it/httpdocs/templates/ja_teline_v/html/layouts/joomla/content/item/event.php on line 30, referer: http://www.latinapress.it/
    [Mon Jul 25 19:54:01 2016] [warn] [client ] mod_fcgid: stderr: PHP Notice: Use of undefined constant style – assumed ‘style’ in /data/vhosts/latinapress.it/httpdocs/templates/ja_teline_v/html/layouts/joomla/content/item/event.php on line 30, referer: http://www.l
    [Mon Jul 25 19:54:07 2016] [warn] [client 151.1.67.93] mod_fcgid: stderr: PHP Notice: Use of undefined constant style – assumed ‘style’ in /httpdocs/templates/ja_teline_v/html/layouts/joomla/content/item/event.php on line 30, referer: http://w
    [Mon Jul 25 19:55:45 2016] [warn] [client ] mod_fcgid: stderr: PHP Notice: Use of undefined constant style – assumed ‘style’ in /data/vhosts/latinapress.it/httpdocs/templates/ja_teline_v/html/layouts/joomla/content/item/event.php on line 30, referer:

    giuliano m Friend
    #954431

    please help me .

    It is a very serious problem that I can not fix

    Query UPDATE vma73_extensionsSET enabled=1WHERE type=’plugin’ AND element=’jacontenttype’ AND folder=’ajax’

    and more

    Ninja Lead Moderator
    #954635

    Query UPDATE vma73_extensionsSET enabled=1WHERE type=’plugin’ AND element=’jacontenttype’ AND folder=’ajax’

    Your site is back Joomla default template and I could not see the problem of your mentioned, please give me the step to get this bug on your site

    giuliano m Friend
    #954749

    I was forced to put the default one, to see if it was a template problem or no .
    with Teline and t3 – server "load average: 10.13, 13.26, 14.84"
    no Teline – load average: server 2.57, 3.77, 4.48.

    you can activate it

    Ninja Lead Moderator
    #954983

    I’m so sorry about the problem on your site. After discussing with our dev and the problem on JA Teline V template comes from here.

    When you put the new article and it generates the image of article to big, medium, small sizes and it needs more times to load on your site.

    The best way, you need to enable the caching of your hosting and it will help you out.

Viewing 11 posts - 1 through 11 (of 11 total)

This topic contains 11 replies, has 2 voices, and was last updated by  Ninja Lead 7 years, 9 months ago.

We moved to new unified forum. Please post all new support queries in our New Forum