Hello, If you are getting such errors like the following: Fatal error: Cannot re-assign $this in /home/mdhjb007/public_html/orders/administration/admin.php on line 1415 Well this means your server is recently upgraded to PHP5, which will throw this error. Well fortunately its couple of lines in just one of the files, so its easy to correct. Open the file …
Author: Sean
How do reset admin password for TikiWiki installed on the server?
How do reset admin password for TikiWiki installed on the server?
Goto mysql on the server and run the command UPDATE `users_users` SET `password`=’MYNEWPASS’, `hash`= md5(‘adminMYNEWPASS’) WHERE `login`=’admin’; Make sure to use something else as a password though!