Archive

Archive for November, 2009

How to stop and Start MySQL

November 11th, 2009 No comments


Install MySQL:

sudo apt-get install mysql-server

Start:

/etc/init.d/mysql start

Stop:

/etc/init.d/mysql stop

Restart:

/etc/init.d/mysql restart

Check the status of MySql server:

/etc/init.d/mysql status

Categories: Uncategorized Tags:

HOW TO: Link to a specific page in a PDF document

November 10th, 2009 No comments

Did you know that you can link to a specific page in a PDF document? Here is an expert from the Adobe Knowledge base that explans how:

When you open a PDF file within a web browser, the first page of the PDF file will be shown by default. You can add a string into the HTML link so a PDF file opens and jumps to a specified page or set destination. To use either of these two methods, do the following:

Open a PDF file to a specific page

To target an HTML link to a specific page in a PDF file, add #page=[page number] to the end of the link’s URL.

For example, this HTML tag opens page 4 of a PDF file named myfile.pdf:

<A HREF=”http://www.example.com/myfile.pdf#page=4″>

Categories: Uncategorized Tags: