GetSimple Support Forum

Full Version: Upgrading 3.3-14 > 3.3.15 BIG Problem
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi there,
after upgrading from 3.3.14 to 3.3.15 the page loads without stylesheets or images and navigation links don´t work.

I guess the problem is the path which isn´t set as a relative one. For example <?php get_theme_url(); ?> gives full URL back instead of the relative path /themename/...
Same with all images and internal links.

Would you please help to fix this problem?

Thank you and best regards,
Sabine
PROBLEM Solved!
sorry for bothering you. It´s been the URL setting which caused the problem. Page works finde now.

BR
Sabine
https://prnt.sc/lrby66
https://prnt.sc/lrbyfl
with php 5.6 there is no such
Code:
Notice: A non well formed numeric value encountered in /home/u915147/mydomen.ru/html/admin/inc/basic.php on line 1198
(2018-12-06, 14:57:59)Oleg06 Wrote: [ -> ]https://prnt.sc/lrby66
https://prnt.sc/lrbyfl
with php 5.6 there is no such
Code:
Notice: A non well formed numeric value encountered in /home/u915147/mydomen.ru/html/admin/inc/basic.php on line 1198

it helped
PHP Code:
function toBytes($str){
 
   $val trim($str);
 
   $last strtolower($str[strlen($str)-1]);
 
   if (!is_numeric($last)) {
 
       $val substr($val,0,strlen($val)-1);
 
       switch($last) {
 
           case 'g'$val *= 1024;
 
           case 'm'$val *= 1024;
 
           case 'k'$val *= 1024;
 
       }
 
   }
 
   return $val;