Vodhin
Vodhin
I came across this issue a while ago. I added a bit of code to `usersettings.php` around line 540 to ensure that userclass was never empty by adding a useless...
I can confirm that I, too, cannot create a new Page or menu. Same results as OP (I am using PHP 7.4.33)
This solution did not work for me: I still have an SQL Insert Error. Update from 2.x to 2.3.3 | ✔ Update core database structure | ✔ Add new or...
> @Vodhin @brwnie Can anyone confirm if the database update message does/did show up? (see screenshot by Cameron above). Hmmm. I don't think I'm running the same build as others...
My above solution will cause any Class Assignments not available to the user (eg. ones assigned by an Admin or Mod) to be removed. Will look at some way to...
Font Awesome css files are loaded by e107. As far as I know, you do not need to call the CSS or write your own. Just add an element with...
Not Needed: ``` if ($msg->hasMessage()) { echo $msg->render(); require_once(FOOTERF); exit; } ``` Simplify: ``` if (!e107::isInstalled('philcat')){ $msg = e107::getMessage(); $msg->addwarning(LAN_PHILLIS_09); if (ADMIN == TRUE) { e107::lan('phillis',"admin", true); $msg->adderror(PHILLISLAN_19); } require_once(HEADERF);...
The LAN files need to be loaded before HEADERF By the way, You can use HTML in the message ``` $err = array(); $err[0] = LAN1; $err[1] = LAN2; if(count($err)...
> hi @Vodhin ! e107 checks for the query `?logout` on any url. Perhaps check your e_url.php file for a match? My e_url.php file only has ``` class estate_url {...
This issue seems to be related to resources that failed to load, as reported in the JavaScript Console. In my case there were some images called by database when the...