MAMP Pro - is there a way to sort virtual hosts? - mamp

I have many Virtual Hosts configured in MAMP Pro.
In the Hosts Table, they are listed in the order in which they were created, which is not very convenient.
Does anyone know of a way to sort them alphabetically for example?

Fortunately for you, you're on MAMP PRO 4, so you can click on the column header 'Name' to sort. A-Z, Z-A
In MAMP PRO 5 they have removed the column headers altogether, so you are stuck with the order in which they were created, which is frustrating (Even though you can drag and drop them into a different order, (I spent ages manually rearranging my hosts alphabetically) but it doesn't save the ordering, so next time you open MAMP, it's back to the order in which they were created)
Having lots of offline hosts makes it really difficult to pick one out at a glance, so I wish they'd re-introduce the column headers, like in MAMP PRO 4.

Related

Microsoft Edge address bar no longer autofill

I have loved Edge and have convinced others to use it - until 2 days ago. Out of the blue I can no longer begin typing a web site in the address bar and have it autofill. I have to type every single character.
I went into settings and found one called "Show me suggestions from my typed characters" and "Show me suggestions from history" but both are greyed out and cannot be turned on! And they say "This setting is managed by your organization."
I have tried everything to fix this - including going back to the previous Windows.
I was going to actually uninstall Edge but found out I CANNOT DO THIS! This is crazy. Then - when going to uninstall Edge - I saw what might be the culprit (though I have no clue - I'm not an expert). On October 7 something called "Microsoft Edge Update" was added and probably part of a Windows update and is in my list of add/remove programs, which of course as I stated above, cannot be done. I will disable Edge and stop using it if I cannot get this fixed.
What's going on? And there were a few other weird glitches, like the most commonly used function for me is alt-tab and that was taking me weird places. Can you please help me?
Same thing happened to me at the same time. Just delete the keys besides the default one in the following registry path:
HKEY_CURRENT_USER\SOFTWARE\Policies\Microsoft\Edge
Just delete the keys besides the default one in the following registry path: HKEY_CURRENT_USER\SOFTWARE\Policies\Microsoft\Edge
This worked for restoring the autocomplete function but my Edge still claims it's managed by an organization while it's installed on a home PC. I installed the insider beta just to install another version of Edge and it has the same issues.

How do I add columns to SharePoint to show a files version count and the size of the sum of those versions?

We've got an issue with SharePoint where we keep running out of space on our Team Drive. We know why, it’s because with versioning turned on all changes are stored and with some of our larger files (e.g. MS Access databases) that can quickly add up.
What I need is a way to either add some columns to show a count of the number of versions a file has and the size of the sum of those versions, so I can then sort and find the offending files quickly. Or are there any other solutions to quickly track down which files are adding bloat due to versioning? Powershell? I should add that I don't have network admin, only local admin on the machine.
This is the interface I'm working with, there are obviously files within each folder that these columns would reference:
This would require to write custom code to update as report.Please refer for more details to update according to your requirement.
https://www.sharepointdiary.com/2013/01/document-versions-size-report-powershell.html

Can I change the order in updates.xml for media entries?

We have two media files in a project, one for 32bit and one for 64bit installer. 64bit entry is introduced now for a new version. I have noticed that the media build order can be changed in gui but the order for the entries that go to updates.xml doesn't seem to follow this order.
Is there some way the entries can be reordered for updates.xml? Currently the issue we are facing is that the previous version updater logic uses the first entry in the updates.xml and now it always points to the 64bit version as we cannot influence the order.
I have noticed that the media build order can be changed in gui but the order
for the entries that go to updates.xml doesn't seem to follow this order.
This is actually a bug, the order in updates.xml should be the same as in the list of media files.
It will be fixed shortly in 7.0.2, please contact support#ej-technologies.com to get a build where this is already fixed.

Access Table Update fails on some computers

Okay, this is kind of odd and it is driving us nuts. I'll outline what is going on as best I can, then I can provide specific details and/or code as folks request it, because I'm not sure what will be needed to suss this out.
I have an access database I have built so our analysts can work within a queue, select records, do whatever research is needed, then either mark the record in question as okay, or fill in some blanks and mark it as needing a dispute (we work in billing).
Basically, the database opens and a hidden form pulls the NT User Name from the local machine, then opens a visible form that queries the database via SQL ODBC to display a list of records with that NT User Name attached to them.
The user can then scroll through the records, select them to get more information, and click a button to mark them as okay, or another to mark them as needing a dispute.
If they click the okay button, it fires off an update query to mark the record as okay. If they click the dispute button, then it opens a third form to show them the line item they are disputing with values from all of the other text fields on the form that they can select from/fill in. On that form there is a button to commit the dispute, which fires off another query to update the values into the same table as the 'okay' button.
So, the issue is, that this all works perfectly on my workhorse machine, and an essentially naked test machine. It also works on another co-worker's machine. However, whenever we try to run it on two other coworkers' machines, everything works just fine, except for any of the queries that attempt to write back to the ODBC connection. All of the read-only stuff works just fine, just not the updates. But the updates work perfectly, and super-fast on my machine, my test rig, and my other co-worker's machine.
We've tried reinstalling the ODBC connection, and the ODBC SQL Drivers.
No go.
We've tried just opening the table in question on the affected machines and making direct edits to the table.
This works if no forms are open in the database, but as soon as we open a form, no update query will run against the table.
So, we tried commenting out all code on all open forms except the docmd.openquery code for the single button we used to test the update query.
No go.
We even built a new form with just a button on it that triggers a new update query that makes only one simple update (Now()) to the table in question.
This runs fine on its own, but times out when run off the button click from the form.
We tried changing the MS Office install on one machine to 'run all from computer' to make sure all necessary components are installed/present.
No go.
We tried installing the ODBC connection both via the normal windows interface, and through the access linked table manager interface.
No go.
We tried installing both 64-bit and 32-bit ODBC connections, both under USER DSN and SYSTEM DSN, and all permutations of one and not the other that we could think of.
No go.
It seems that no update query will write to that table while any form is open, but works just fine with no forms open. But only on these other two machines. Everything works fine on the other three machines we've tested on, whether forms are open or not.
We're kind of at wit's end here and don't know where to go. Google is proving unhelpful, possibly because we just don't know exactly how to search the problem out.
Here's basic technical stuff and I am happy to provide whatever other details, code, queries, etc. that are needed to troubleshoot upon request:
OS: Windows 7 Enterprise 64-bit
Software: MS Office Enterprise 2013 32-bit
ODBC: SQL Server
All users have admin access to their respective machines.
Turns out that the issue here seems to have been an intermittent issue with Access being unable to determine which record to update due to the way we were calling details from a continuous form.
We went back to formula on our UI and built it so there is only ever one record on a form when we try to make changes to records, so there can be no system confusion about what record to update.
Still no clue as to why it was working intermittently, but the new iteration is working now.
Thank you all for your questions and suggestions. :)

Incorrect tooltip display of text on tableau server

I am using tableau server - 9.1.1 (9100.15.1013.2200) 64-bit. When I upload workbooks the tooltip is showing incorrect values (i.e. they are not the same as that in the workbook i have on my system). Why would that happen?
Is it because something is wrong with my workbook?
This is a known bug in tableau server that has been fixed in 9.1.3 and successive versions. I faced the same issue and I usually single-click on the relevant chart and the tooltip updates to show correct information.
This is the answer I got from folks over at Tableau:
"It turns out that this particular issue was considered a high risk to the existing code to implement the fix. The code changes that were made in 9.1 made this fix less risky and so the developers were able to implement the resolution in 9.1.3. 9.2.2, and later versions.
The issue was reported by a handful of users, about 5 others, due to the high risk in the 9.0 branch if something went wrong it could potentially affect hundreds or thousands of users (you included). The decision was made in favor of the fix being implemented in 9.1 and 9.2."