Hello @slawkens,
Using absolute positions are bad mkay?
![]()
Also, your "add page" functionality does nothing... I can drop .php files into this, it picks up the file which is nice, but doesn't reference this in the side-menu.
![]()
Also, why is there a blank image used to add a tbody margin?
![]()
Would also be nice to see an "imbed" function, or the ability to add iframe's without your HTML editor.
Presently, your HTML source editor does not support iframes. For example, I want to throw a video up on my news page.. The HTML editor does not allow this.
https://i.imgur.com/ARQfOsm.png - accountmanagement.php
Can't reset password. (This is with your newest accountmanagement.php file) - last updated 4 days ago.
echo $twig->render('error_box.html.twig', array('errors' => $show_msg));
how to disable the shit cache save history ?
because every edit i need reinstall this shit to see changes lol![]()
i've recently installed MyAcc (latest vers from GitHub) but after install im only getting white screen.
im using OTX 3.10 (Maluuco)
Thanks 4 fast answer im using UniformServ and Windows 10.Cannot reproduce. What OS are you using and what webserver? Can you post your apache error.log?
[Sun Oct 15 13:39:09.559866 2017] [:error] [pid 8624:tid 2132] [client ::1:3348] PHP Parse error: syntax error, unexpected ')', expecting :: (T_PAAMAYIM_NEKUDOTAYIM) in C:\\UniServerZ\\www\\index.php on line 45
if(!empty(BASE_DIR))
$uri = str_replace(BASE_DIR . '/', '', $uri);
else
$uri = str_replace_first('/', '', $uri);
Thanks 4 fast answer im using UniformServ and Windows 10.
And this is the line 45:Code:[Sun Oct 15 13:39:09.559866 2017] [:error] [pid 8624:tid 2132] [client ::1:3348] PHP Parse error: syntax error, unexpected ')', expecting :: (T_PAAMAYIM_NEKUDOTAYIM) in C:\\UniServerZ\\www\\index.php on line 45
Code:if(!empty(BASE_DIR)) $uri = str_replace(BASE_DIR . '/', '', $uri); else $uri = str_replace_first('/', '', $uri);
if(!empty(constant('BASE_DIR')))
Thanks.
Try changing that line to:
Code:if(!empty(constant('BASE_DIR')))
[Sun Oct 15 14:01:56.171156 2017] [:error] [pid 2044:tid 2108] [client ::1:3450] PHP Fatal error: Can't use function return value in write context in C:\\UniServerZ\\www\\index.php on line 45
Working now! thanks a lotok, try this then:
Code:$tmp = BASE_DIR; if(!empty($tmp))
Working now! thanks a lot