Posts mit dem Label PHP werden angezeigt. Alle Posts anzeigen
Posts mit dem Label PHP 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,

Dienstag, 16. Februar 2016

How to Edit Your WebsiteIn Feburary 2016 16,

In Feburary 2016 16,
If your website is content driven, it may be based in a CMS such as WordPress or Joomla. If you are unsure of this, ask the person who designed your website. To initiate changes to content on a CMS-based website, you log in to your site's administrative panel. The administrative panel offers buttons for various types of content management. After you log in, you can add, delete or edit posts and articles on your site. You can also use a CMS to change some of the other parameters of your site. For example, if your site uses WordPress, you can install a different theme to change the layout of the site, and you can install plugins to change some aspects of your site's functionality.
Changing the Content and Functionality of Your Website
If you need to edit the structure or content of your website and your site does not use a CMS, you must edit the actual files on your site. Use caution if you are implementing HTML, PHP or JavaScript for the first time. If you are not confident in your Web-development skills, the changes you make directly to code could impair the functionality of your website. In such a case, a WYSIWYG editor can be useful. WYSIWYG editors display the changes to your website as you make them, and you drag elements around rather than alter the page code in a text editor.
Changing the Visual Style of Your Website
Most of the visual flair of your website is contained in one or more Cascading Style Sheets files. These files tell the HTML of your site where to position certain elements, how to color the background and what font to use. By editing the CSS files, you change the stylistic aspects of a page. If you rename a CSS file, you must make sure that the applicable HTML files link to the renamed version of the file. This link is in the HTML document's
section. With a WYSIWYG editor, you can confidently make these changes if you are not comfortable making them to your site's code.
Uploading Files to Your Website
After you make changes to your site's code, upload the files to your hosting server for the changes to take effect. If the changes are minor, you may want to download a copy of the file onto your local computer, edit that and then return it to the server. For example, if you want to change one line in your website's index.html file, download it from the server first to make sure that you are modifying the most current version of the file. After you make the changes, upload the file to the server, making sure to overwrite the old one. You accomplish these transfers using a File Transfer Protocol client. An FTP client connects your computer to a remote server for the exchange of files.
In Feburary 2016 16,