Jump to content

7.3 upgrade - admin area gone.


Recommended Posts

See attached:

 

I just see "Dashboard" - all other content on my home page is gone (i see the sidebar) everything else seems to be working fine.

I was wondering if it wasnt a permissions issue now that they've added the ability to hide widgets, but I dont see that being the case. I also dont see the new gear to show or hide widgets.

WHMCS_7.3.PNG

Link to comment
Share on other sites

Hi

Yeah that is what i get too. Works on my dev site. Only difference is that dev site uses admin name for the folder and my main whmcs uses a custom admin name like you do.

Do this, go to Utilities -> Logs -> Activity Logs

are you getting an error like this

Smarty Error: SQLSTATE[HY000]: General error: 1267 Illegal mix of collations (latin1_general_ci,IMPLICIT) and (latin1_swedish_ci,IMPLICIT) for operation '=' (SQL: select count(`tblorders`.`id`) as aggregate from `tblorders` inner join `tblorderstatuses` on `tblorders`.`status` = `tblorderstatuses`.`title` where `tblorderstatuses`.`showpending` = 1)

Link to comment
Share on other sites

@wsen the error:

Smarty Error: SQLSTATE[HY000]: General error: 1267 Illegal mix of collations (latin1_general_ci,IMPLICIT) and (latin1_swedish_ci,IMPLICIT) for operation '=' (SQL: select count(`tblorders`.`id`) as aggregate from `tblorders` inner join `tblorderstatuses` on `tblorders`.`status` = `tblorderstatuses`.`title` where `tblorderstatuses`.`showpending` = 1)

Indicates a collation mismatch between your tables that prevents mysql from executing the JOIN query logged. Which collation do you intend to use for your database going forward? Once you know which you want to use, this help article shows how to adjust your database to normalize the collations across your database:

http://help.whmcs.com/m/72132/l/797626

Link to comment
Share on other sites

Actually my error in logs was not the latin one:

latin1_general_ci,IMPLICIT

It was:

Smarty Error: SQLSTATE[HY000]: General error: 1267 Illegal mix of collations (utf8_general_ci,IMPLICIT) and (utf8_unicode_ci,IMPLICIT) for operation '=' (SQL: select count(tblorders.id) as aggregate from tblordersinner join tblorderstatuses on tblorders.status = tblorderstatuses.title where tblorderstatuses.showpending = 1)

So the above query is supposedly the solution.

Link to comment
Share on other sites

I have this exact same problem. When  running the auto update it hung with this message:

"Update Failed

An error occurred that prevented the update from completing successfully.
Database update completed successfully but was unable to remove the install directory post completion

Please try again and if the issue persists, please contact support."

The error in the activity log is the same as above:

"Smarty Error: SQLSTATE[HY000]: General error: 1267 Illegal mix of collations (utf8_general_ci,IMPLICIT) and (utf8_unicode_ci,IMPLICIT) for operation '=' (SQL: select count(`tblorders`.`id`) as aggregate from `tblorders` inner join `tblorderstatuses` on `tblorders`.`status` = `tblorderstatuses`.`title` where `tblorderstatuses`.`showpending` = 1)"

I don't know what,

21 hours ago, WHMCS Nate said:

Which collation do you intend to use for your database going forward?

means..... :)

I will also Google for a fix. Sigh. More time wasted on computers. Don't ya just hate them?!

Appreciate any help

John

 

Link to comment
Share on other sites

20 minutes ago, johnnybgoodwin said:

means..... :)

I will also Google for a fix. Sigh. More time wasted on computers. Don't ya just hate them?!

Let me save you a bit of googling, this is the best answer I've found:

https://stackoverflow.com/questions/766809/whats-the-difference-between-utf8-general-ci-and-utf8-unicode-ci

when in doubt utf8_unicode_ci is the best thing to move to unless you're using mysql >5.5.3 in which case utf8mb4_unicode_ci is better. For some people that need to use different options (they typically know who they are) they will need to decide what to move too. Once you know that our article will help you make the change:

http://help.whmcs.com/m/72132/l/797626

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use & Guidelines and understand your posts will initially be pre-moderated