Edit MAMP Start Screen - mamp

I have been trying to figure out if there is a way to edit your start screen so that when you click on "Open start page" it will show your custom page. How could I do this?
Thanks.

Edit your httpd.conf found on /Applications/MAMP/conf/apache/ and look for this:
Alias /MAMP "/Applications/MAMP/bin/mamp"
Then change that to your custom page:
example:
Alias /MAMP "/Users/me/custompage"

Related

i am having problem in my vsCode like when i write .container its is not giving me any suggestion for making a class conainer with div element

What should i do for that i, think there must be any option that i have to turn it, please help me to get out of this....Here you can see
Please Help me to resolve this problem
in my laptop when i installed vs code it works perfectly, but when i installed vscode in my desktop it is not giving me any suggestion to auto complete the tag
like when i write .container then it not giving any suggestion that i can click on it and it will change .container to
You need to modify your setting to get this.
Go to setting (Ctrl + , ) search for "emmet.triggerExpansionOnTab" then select the checkbox.
Now you when you type .container and hit Tab button and you get the results.
You can follow this link for more details: https://code.visualstudio.com/docs/editor/emmet#_using-tab-for-emmet-expansions
Go to VS Code setting type emmet in search
Locate the include language section. Click Add item to enter
item: javascript value: javascriptreact
I also had similar issue and solved using following steps.
Need to change the settings first
for that press Ctrl + , in your keyboard
Then you will get settings window like this image.
Search emmet.triggerExpansionOnTab as shown in image
Then enable by adding tick there
Go to vs code and try it out. ( Plz make sure to press Tab after typing like .example-class-name)

How to hide the highlighted lines when the ".sql" file are opened in VSCode

Below is what it looks like when opened the ".sql" file, I want to hide those highlighted lines
I'm the creator of VSCode-sqltools. In fact as #joao-caxias mentioned, that was intentional. But some users didn't like it at all, so I've added a setting to enable/disable that behavior called sqltools.highlightQuery so you should be able to remove that if you want now.
I have found out that it comes with the SQL Tools extension
You could either uninstall it or revert back to 0.21.9 version. Not sure where the root cause for highlighting is.
You can go to SQLTools and click on the setting button. Then search highlight and uncheck the button for this setting.

django-tinymce in django-admin popup window display blank

I followed django-tinymce document configuration step by step and finally can see tinymce editor in django-admin pages.
But when I click Image button, the popup window is blank. And the title of popup window is '{#advanced_dlg.image_title}' like something wrong about parse.
The HTML view button is the same.
I know that 'document.domain' may solve it, but I set 'document.domain' is no help to above.
Is the associated tinymce plugin activated in your tinymce config?
{#advanced_dlg.image_title} looks like the plugin (and the language files) have not been loaded.
You amy use Firebug or any other developer web tool with a console and type in the following to find out which plugins have been loaded:
tinymce.editors[0].plugins

when i click the drive shoing opwn with window dialog box

When i click the c-drive it is now opening , instead it showing the dialog box,
please check the screen shot ,
When i click the c-drive it opening like this screen shot
image-url
Well, I googled a bit and was able to find
this.
You should also try opening the drive by clicking Explore in the context menu and see if there is an autorun.inf file that you could have copied by accident. It's probably going to be a hidden one, and maybe even a protected one, so check your Folder Option to make sure it shows all files. Although, that does sounds like something a virus would do.

Displaying full path of filename in tabs ~ Netbeans 6.8

I can't seem to find a way in the options to display the full path of the file at the title of the tab. I can hover over it to see it, but it would be nice to see it at a glance.
There is a SU question about it also, https://superuser.com/questions/88637/netbeans-how-to-view-file-full-path-in-window-title-or-somewhere-else
Does anyone have a solution for this to actually display it? I can see there is a custom .jar for it in the RC2 Netbeans, but that's probably way old now.
PS, I should mention that a path relative to the project would be ideal, as well as a full path. Either really :)
NetBeans 8.0.2
Tools > Options > Appearance > Document Tabs > Show full file path
The full path will appear only for the active tab (under the tabs), but you can also check "Show parent folder name in tab title" if you want to see the parent folder for every tab:
Try to use following netbeans plugin.
In Netbeans 6.9.1 (at least) you can open the Window/Properties window and pin it under the editor; this will contain the full path in the "All Files" property which is then visible at all times and always contains the current editor file's properties.
Starting from NetBeans 6.9 you can use the NetBeans extention "show path in title":
http://plugins.netbeans.org/plugin/42000/show-path-in-title
it's very helpful :D
You can also 'Select in --> [Project|Files|Favorites]. This opens the exposes the node for the file in the Projects, Files or Favorites explorer.
To do this, right click in the text editor for the file you are interested in; the 'Select in' item is near the bottom of the menu that appears.
Try using CTRL+TAB, you can find the path in status bar. This is not complete solution for your question but using keyboard (without using mouse atleast) you can find the path of the open file(s).