GetSimple Support Forum
PROBLEM Upgrading 3.3-14 > 3.3.15 BIG Problem - Printable Version

+- GetSimple Support Forum (http://get-simple.info/forums)
+-- Forum: GetSimple (http://get-simple.info/forums/forumdisplay.php?fid=3)
+--- Forum: Installation & Setup (http://get-simple.info/forums/forumdisplay.php?fid=5)
+--- Thread: PROBLEM Upgrading 3.3-14 > 3.3.15 BIG Problem (/showthread.php?tid=10603)



Upgrading 3.3-14 > 3.3.15 BIG Problem - SoHo22 - 2018-10-10

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


RE: Upgrading 3.3-14 > 3.3.15 BIG Problem - SoHo22 - 2018-10-10

PROBLEM Solved!
sorry for bothering you. It´s been the URL setting which caused the problem. Page works finde now.

BR
Sabine


RE: Upgrading 3.3-14 > 3.3.15 BIG Problem - Oleg06 - 2018-12-06

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



RE: Upgrading 3.3-14 > 3.3.15 BIG Problem - Oleg06 - 2018-12-06

(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;




RE: Upgrading 3.3-14 > 3.3.15 BIG Problem - shawn_a - 2018-12-09

I think this was addressed in 3.4

https://github.com/GetSimpleCMS/GetSimpleCMS/commit/4a2123f2449490f5a9ceac5555f855b0bcfabc35