Showing posts with label folder. Show all posts
Showing posts with label folder. Show all posts

Friday, August 17, 2012

Make Your Own Shortcut Manager, Making, Icons, Folders, Program, exe files, Software

MAKE YOUR OWN SHORTCUT MANAGER


Users can make their own shortcut manager. You just need to make a link in the taskbar to a folder with links in it. Create a folder in the John Smith folder called LINKS. Right click on the Taskbar. Cursor over Toolbars. Then click New Toolbar and browse to the new LINKS folder and choose it.

To make individual shortcuts more visible on the taskbar just drag new shortcuts from the Desktop to the now visible LINKS (the area under the three horizontal dashed lines on the Taskbar).

1.
Change the icons to ones you like.

Right click on an icon.
Click Properties.
Click Change Icon.
Select a new icon image from the window that opens.
Click OK, Apply, then OK.

2.
In the image shown above, the first five icons are folders.
Change folder icons by right clicking one.
Left click Properties.
Choose the Customize tab.
Click the Change Icon button.
Select a new icon image from the window that opens.
Click OK, Apply, then OK.


If this doesn't work click on Explorer.
Select the LINKS folder.
Then do the same as in instructions 2 above for the appropriate folder you see there.
Close and open the folder icons in the taskbar a few times then the icons pictures will eventually change.


Remember the taskbar is visible all the time, even when you have browsers and writing programs open, so accessing shortcuts on the taskbar is easy.

If you want to order the shortcuts in your own way, just rename them with 1- in front of the name, then 2-, 3- and so on. You will find it easier to click and drag the shortcuts to the order you want on the Taskbar. They will stay where you put them. Shortcuts in folders will have to be renamed with numbers because of Microsoft's silly fixed alphabetical sorting system.

If you want you can create more folders on the Taskbar in the John Smith/LINKS/ folder.

Use names for the folders that suite you like, Accessories, Files, Creative, Media, Internet and/or Web. Just click a folder icon on the Taskbar and the folder opens. Drag shortcuts to the open folder, putting them in each folder according to category.

Oh, I find it better to drag the Taskbar to the right side. This gives you more height to view web pages. Modern screens have too much width. You can learn which icon represents which program by cursoring over the icons - a box with the program or folder name will appear for each icon.

Thursday, February 23, 2012

Mozilla Firefox Will Not Play Web Page Background Music/Sounds, Firefox QuickTime plugin has crashed, WMP Plugin

FIREFOX 10 WON'T PLAY BACKGROUND SOUNDS ON THE INTERNET

There is nothing worse than installing the latest version of a program, namely a browser and having all sorts of problems. When you go back to the previous version you find once again that there were none. With firefox 3 you get that damn inbuilt nag window saying there is a new version. Yes, a new version with problems.

The creators also changed the design: Who wants the black at the top to become transparent when the window is "normal" i.e, half size anyway?

A standard problem with version 10 and later of Mozilla Firefox is that when you go to a website that has background sound you get a warning message saying there is something wrong with the QuickTime Plugin. This is absolutely incorrect. QuickTime is perfectly okay. There is something wrong with your Windows Media Player Plugin.

If you go to "Tools", then "Add-ons" you will probably not see "Microsoft Windows Media Player Firefox Plugin 1.0.0.8." in there. Furthermore, if you click on "Get Add-ons" you will not find it on the internet either! Firefox creators don't tell you what to do if the standard installation fails to install it. I have installed Firefox 10 on a laptop and on a PC. The WMP Plugin was in the laptop "Add-ons" folder, but not in the PC "Add-ons" folder. Firefox like internet Explorer is becoming a strange monster.


THE FIREFOX FAULT


When you install Firefox 10.0 and above, sometimes you get a Plugins folder, sometimes you don't. It is a wonder how it runs without such a folder, but it does. If you cannot see a Plugins folder in the Mozilla Firefox 10 and higher program folder make one
.
Go to the Program Files folder. Cursor down to the Mozilla Firefox folder. Double click it. Pull the vertical bar on the right side of the open folder down to the bottom. Put the point of the cursor just below the bottom file. Right click. Choose New, and Folder. You will see a new folder named "New Folder". Right click on the "New Folder" and rename it "Plugins". Make sure you use an upper case "P".

THE SOLUTION TO THE PROBLEM

Download the Firefox Media Player Plugin from here.

Close all the Firefox browsers you have open and install it.

Open Firefox 10 again and check the "Add-ons" again.

You will probably still not see "Microsoft Windows Media Player Firefox Plugin 1.0.0.8".

Download the needed dll files from here.

Open the RAR file and copy all of the files there into your new Plugins folder of Firefox 10.

Two or three of the files will already be there if a Plugins folder was installed. Just skip over them.


Close Firefox 10 or indeed version 27.0.1. and check "Add-ons". Again. You will see "Microsoft Windows Media Player Firefox Plugin 1.0.0.8" in the list.  If Windows Media Player is not on the list this is because the latest version of Firefox has hidden it away.

Enter "about:config" in the Firefox address bar and click the little arrow on the right.  Click "OK" to the message that pops up "This might void your warranty".  There is no warranty anyway.  A list will appear.  Find "plugins.load_appdir_plugins" on this list.  Double click it and the "false" will change to "true"

WMP will be in add-on now!

Restart Firefox.

Go to a web page you know has background sound and you find it will play with no warning messages.  If you still have problems download these extra three dll files from here.  Put them in the Plugins folder as well.

Good luck surfing the Internet.


Thursday, November 5, 2009

How to Make RSSfeedreader PHP "script" Work on Your Server

Today, I am pleased to announce that the RSSfeedreader website is working again.

This is how you get your site to run PHP files created by RSSfeedreader:


PART ONE

Putting Info into the .htaccess file

Open your FTP program.

go to the main folder "/public_html/"

a) Right click on ".htaccess" and click "edit". The file will open straight away or you may have to click "overwrite" depending on your FTP program.

b) If you don't see an ".htaccess" file, create it by opening notepad.

Now, in both instances a) and b) above you will have notepad open.

Some of you will see

AddHandler server-parsed .htm
AddHandler server-parsed .html"

already there. That is okay.

This is the important part.

Make sure all of the following is in that notepad page:

AddHandler server-parsed .htm
AddHandler server-parsed .html
suPHP_ConfigPath /home/loginname/public_html/

The "loginname" is the name you enter into your FTP program (with a password of course but no password in this instance) to be able to put files onto your server.

Save the notepad page with this name ".htaccess.php"
It will save as "htaccess.php.txt but you will not be able to remove the "''txt" on your computer because the file name begins with a "."

Upload the ".htaccess.php.txt" file to the "/public_html/" directory.
Delete the old ".htaccess,php" if you already have it.
Right click on the ".htaccess.php.txt" file.
Click "rename"
Delete the ".txt" part of the name.
The FTP program may ask if it is alright to change it, but click "OK".


PART TWO

Creating the php.ini file

Open notepad. Write this, or copy it, into the notepad page.

register_globals = On ;
allow_url_include = On ;

Save it as "php.ini"

It will save as "php.ini.txt"

Upload the "php.ini.txt" file to the "/public_html/" directory.
Right click on the "php.ini.txt" file.
Click "rename"
Delete the ".txt" part of the name.
The FTP program may ask if it is alright to change it, but click "OK".

If you already have a "php.ini" Right click on it and put the extra code in it using notepad.
Delete the old ".htaccess,php"
Upload the "php.ini.txt" file to the "/public_html/" directory.
Right click on the "php.ini.txt" file.
Click "rename"
Delete the ".txt" part of the name.
The FTP program may ask if it is alright to change it, but click "OK".


USING THE RSSFEEDREADER WEBSITE

Go to the site. Register your name, email and website address.

Look in your email.

Login in to the RSSfeedreader site.

Enter the URL of your desired news feed after the "http://"

Make sure you put the "www." in, for example http://www.feeds.news.com.au/public/rss/2.0/news_mostpopular_topstories_403.xml

if the "www." address doesn't work try,

http://feeds.news.com.au/public/rss/2.0/news_mostpopular_topstories_403.xml

The feed URLs can be really fussy about the "www." Some need it, some don't.


Enter the information on how you want the feed to look.

For page width enter the width In "Feed Width"

Don't bother about "Choose New Page Options"

Click "get RSS Feed"

Copy the PHP script.

Paste it into a notepad page.


Saving the PHP file

Save it as "rssfeedyourfilename.php" into the "/public_html/" directory with your FTP program.

Right click on the file, choose rename, and remove the ".txt"

Enter the "include virtual" code,

as RSSfeedreader info advises, into your website html code at the position in the page where you want it.

Save the html. Upload it to the "/public_html" directory on your server.

Finished!

. . . . . . . . . . . . .