Posts mit dem Label directory werden angezeigt. Alle Posts anzeigen
Posts mit dem Label directory werden angezeigt. Alle Posts anzeigen

Samstag, 27. Februar 2016

How to Configure SSL in PHPIn Feburary 2016 27,

In Feburary 2016 27,
Download OpenSSL from the OpenSSL website and install it. The instructions for installing it can be found there. The installation procedure will vary according to your operating system. Once you install OpenSSL, make a note of which folder, or 'directory,' it was installed in.
Download the most recent version of PHP from the PHP website. Refer to that website for the PHP installation procedure.
Create your 'SSL support configuration directive.' At the configuration step of the PHP installation process, you need to add a directive, a piece of text instructing the computer to do something, to the configuration command. This directive looks like '--with-open-ssl=' followed by the name of the folder where OpenSSL was installed. For example, if OpenSSL was installed in the '/usr/local/ssl' folder, then your SSL support configuration directive will be '--with-open-ssl=/usr/local/ssl'.
Add your SSL support configuration directive to the end of the whole configuration command and run the command as directed in the PHP installation instructions. Then finish the PHP installation according to the instructions for your operating system.
Make sure that SSL support was properly installed by creating and running a PHP script with the following contents:
When you run the script, it will output a lot of boxes full of configuration information. Look for a box with header, 'OpenSSL.' If you see it there, then your PHP installation now has SSL support enabled.
In Feburary 2016 27,

Freitag, 19. Februar 2016

How to Edit a Zen Cart FooterIn Feburary 2016 19,

In Feburary 2016 19,
Access your Zen Cart file structure by logging into your website's directory via FTP.
Access the root directory of your Zen Cart installation and download the file located at:/includes/templates/template_default/common/tpl_header.php
Make any edits necessary to the tpl_header.php file in your preferred text editor.
Save and publish your tpl_header.php file, overwriting the existing one. You have now successfully edited your Zen Cart footer.
In Feburary 2016 19,

Mittwoch, 17. Februar 2016

How to Embed Audio in HTMLIn Feburary 2016 17,

In Feburary 2016 17,
Choose an audio file. You can use an mp3 or .wav file. If you do not have an audio file, make one using any one of the freeware or shareware programs available on the Web.
Upload the audio file to your webserver. Select the file to play on your website and make sure it is in the same directory as your website. To play an audio file on a blog that is hosted on a different server, upload the audio file to a free Web hosting company.
Embed the audio file. Copy and paste the following code onto your website:
Replace the 'myaudio.mp3' with the name of your audio file. Keep the quotation marks. This not only embeds the audio, but also creates a player that allows you to turn the audio on and off.
Embed the audio file onto your blog. Change the file name in the code to the complete URL where the audio file is located. For example, using the following:
Change the name of 'myaudio.mp3' to the full URL address where your mp3 is located. The embed code will create a music player.
Adjust volume, height and width settings to match your blog or website. A width setting of '144' is recommended.
In Feburary 2016 17,

How to configure IIS to use specific ports for Passive FTPIn Feburary 2016 17,

In Feburary 2016 17,
Login to the machine using remote desktop.
Go to the Inetpub\AdminScripts directory. This is typically on the same drive you installed windows, so c:\Inetpub\AdminScripts
Run the command
adsutil.vbs set /MSFTPSVC/PassivePortRange 'xxxx-yyyy'And replace xxxx with the starting port and yyyy with the ending port range.
In Feburary 2016 17,

Montag, 15. Februar 2016

How to Recover Deleted Web PagesIn Feburary 2016 15,

In Feburary 2016 15,
Gather all of the information pertaining to your website, such as your domain name, as well as the information for the administrative contact person who is over the administration of the website.
Contact the company that is hosting your website. Provide it with your domain name and administrative contact information.
Advise the company you deleted a Web page and would like to recover the deleted file. Most Web hosting companies back up all of their website pages. The company will be able to look up the file you deleted on the backup server and restore it into your file directory. It is best to contact your Web hosting company as soon as possible after deleting the Web page to increase your chances of getting the page restored.
Use the Internet Archive Wayback Machine to look up your deleted Web page if you do not want to go through your Web hosting company. By going to Internet Archive Wayback Machine, you can type in the domain name for your website. The Internet Archive Wayback Machine will then pull up all website pages that have been associated with the website, no matter how old they are. This is great if you would like to go back and see a Web page that was deleted many years or months ago.
Click on the page of your website that you would like to recover through the Internet Archive Wayback Machine. Click on the 'View' option from the menu bar of your Internet browser. Select the 'Page Source' option. Copy all of the HTML coding associated with your deleted Web page from the page source.
Paste the copied HTML code from the page source into the HTML editor of your website. Save your work. You should now be able to view your Web page. Some of the graphics might not be in place anymore, but all of the textual aspects of the Web page should still be in tact. You will have to upload new graphics.
In Feburary 2016 15,

How to Put a Song in the Background of a WebsiteIn Feburary 2016 15,

In Feburary 2016 15,
Log in to your web host by inputting your user name and password into the corresponding text boxes. Click on the 'Upload' button and select a song that you want to put in the background of your website. This will upload it to the root directory of your site. The root directory is the default where you are directed when you first sign into your web host.
Click on the HTML document in your web server in which you want to put the song into the background. Copy and paste the following HTML background music code into the place in your HTML code where you want the music player to appear: <embed name='Name of song'
src='URL to song'
loop='false'
hidden='false'
autostart='true'>
</embed>Replace the section that says “Name of Song” with the title of your song and the section that says “URL to Song” with the URL to your song.
Play the song more than once, when someone links to your page, by inputting the number of times that you want it to play into the loop value. Replace loop='false' with loop='1'or loop='2' as the proper HTML.
Hide the music player so that the user cannot stop the music. To do this, input “true” next to the hidden value. Replace hidden='false' with hidden='true' as the proper HTML.
Stop the music from playing automatically when someone opens your web page by inputting “false” next to the autostart value. Replace autostart='true' with autostart='false' as the proper HTML.
Save the web page file with the code in it.
In Feburary 2016 15,