- Как вставить PHP код в Joomla
- Setting up Apache, PHP and MySQL manually
- Warning [ править ]
- MySQL Setup [ править ]
- Notes [ править ]
- Resources [ править ]
- Apache Setup [ править ]
- Virtual Hosting [ править ]
- Resources [ править ]
- PHP Setup [ править ]
- Configuring PHP [ править ]
- Configuring Apache to Work with PHP [ править ]
- Restart and Test PHP [ править ]
- Installing and Configuring xdebug [ править ]
- Resources [ править ]
Как вставить PHP код в Joomla
Рано или поздно мы сталкиваемся с необходимостью оживить, улучшить и оптимизировать наш сайт, снабдив его динамическим содержимым. И здесь на помощь приходят различные методы и языки, наиболее популярные и широкоиспользуемые из них это CSS, JavaScript и PHP.
CSS определяет внешний вид элементов, их цвета, размеры, позиционирование на странице и, в некоторых случаях, анимацию.
Зачем же нужен PHP и в чем разница между JavaScript и PHP?
JavaScript – браузерный язык программирования, т.е. его исполняет сам браузер по ходу отображения страницы или различных действий пользователя (передвижение указателя, щелчки мыши, скроллинг экрана, нажатия клавиш – всё это события языка JavaScript). C помощью него мы можем прятать/отображать различные блоки на странице или же их изменять, и вообще любым образом манипулировать элементами HTML (подробнее см DOM — Document Object Model). JavaScript заключается в тэги и загружается полностью вместе со всем остальным содержимым веб-страницы.
PHP в отличии от JavaScript’a – серверный язык программирования, и результатом его выполнения (компиляции) является HTML-код, готовая веб-страница (которая зачастую может содержать фрагменты JavaScript’a). PHP выполняется один раз в момент загрузки страницы и отвечает собственно за то, какая страница или какое содержимое будет передано браузеру. Как только страница загрузилась, PHP закончил свою работу и включится снова лишь тогда, когда будет совершен переход на другую страницу (или обновление текущей по F5), либо обращение через Ajax.
Стоит также отметить, что ошибки при выполнении JavaScript’a не приведут к неработоспособности сайта (хотя последнее время довольно редко обходится без javascript-компонентов, которые, в результате ошибок в консоли, могут перестать работать), в то время как ошибки в коде PHP скорее всего «положат» сайт — будет просто белый экран. Поэтому разработчики Joomla решили обезопасить пользователей, запретив вставлять php-код непосредственно в материал. В том числе, и в целях безопасности от возможных атак. Вообще, задействовать PHP в Joomla целесообразнее через плагины, модули, компоненты, переопределения шаблонов и макетов (как именно – в следующих постах).
Но если вы точно и окончательно решили вставить код php в Joomla – могу посоветовать плагин, который снимает запреты и позволяет вставлять php-код непосредственно в материал (не забудьте отключить визуальные редакторы – они также будут обрезать вхождения JavaScript или PHP кода).
Плагин называется DirectPHP.
UPD.: Также можете обратить внимание на такое расширение, как Sourcerer.
После его установки и активации вы можете испробовать его в действии, поприветствовав мир всеми любимой фразой:
Однако более правильный путь — научиться писать модули и плагины и встраивать их прямо в материал методом {loadmodule mod_login} (для модуля mod_login)
А также разобраться с переопределениями в компонентах и модулях.
Setting up Apache, PHP and MySQL manually
Here’s a brief overview of the steps to setup a Apache, PHP and MySQL in a Windows environment and also refer to various related tools to maintain and work with most of the tasks related to Joomla!.
In order to make the instruction clear and succinct, we will assume that wherever we are not stating any explicit instruction, you will let the default setup paths apply without modification.
Warning [ править ]
If you already have any of the prepackaged AMP stacks installed on your machine:
- Going back to your AMP stack will be difficult. The various installations we will do below will overwrite registry values and make general environment changes. (This applies at least to the PC/Windows environment.)
- If you need to maintain any configuration (Apache, MySQL or PHP) or data (your existing websites and related databases), before making attempts of following this instruction, make proper backups.
(needs to be expanded with specific advice on how to achieve the above. )
MySQL Setup [ править ]
- Download the appropriate MySQL installer option for your platform.
- Start the installation and choose Custom installation path.
- Click through the whole installation process and click Finish.
- You will now be presented with the MySQL Server Instance Configuration Wizard.
- Make sure that the Standard Configuration is selected and go to Next.
- If you already have MySQL installed you may get the message A Windows service with the name MySQL already exists. Please uninstall this service correctly or choose a different name for the new service. If so, choose an alternative service name.
- In the next window check for Include Bin Directory in Windows PATH. By doing this you will be able to access the various MySQL utilities from the command line.
- In the next window you will be able to create password for your root MySQL user, the user with highest access level on your server.
- In the final window all the changes you have configured so far will be saved when you press the Execute button and the windows service for this instance will be started.
Notes [ править ]
- In order to make the instruction as accessible as possible we skipped a number of configuration scenarios of your MySQL instance, such as being able to relocate your database files.
- MySQL installs as default with a STRICT mode which might give rise to some errors when using extensions or applications that haven’t considered this.
Resources [ править ]
- HeidiSQL An easy to use and extensible full-client replacement of phpMyAdmin under constant development.
- MySQL Workbench Various tools among which you will appreciate the Administrator, which helps you to configure your MySQL instance. Requires the .Net framework.
- phpMyAdmin A powerful web based MySQL client for administrating anything related to MySQL.
- MySQL documentation
Apache Setup [ править ]
- Download the installer of your preference.
- Run the installer wizard and click through each step until you reach the Server Information window. Give the options below respectively and in the given order in each of the fields unless you have any specific requirements as to how your web server is setup:
- localhost,
- localhost and
- admin@localhost
- bin — contains the various binary files some of which are listed below. In order to access these applications, most of which are command based, we would need to add the path to the bin directory in our global PATH variable. To do that, right click on My Computer > Properties > Advanced > Environments Variables and in the System Variables list locate and select the Variable PATH and click on Edit and add a trailing a semi-colon, if not already there, followed by the absolute path to your bin directory. Click out from the System Properties dialogue by accepting.
- httpd.exe which is the Apache webserver itself, which is spawned to several child processes while serving as many simultaneous incoming clients requests as required by MaxClients directive;
- ab.exe is a benchmarking tool that comes with Apache allowing you to see how well your application can perform per time unit
- httpd.conf — most of the server directives are located in this file and for easy access you should associate the .conf file type with a user friendly editor, i.e. anything other than the default Notepad.
- extra\httpd-vhosts.conf — contains directives that would allow you use your local server as virtual host, i.e. able to run several servers on your PC. One usage scenario is that during a development phase if you want to map the actual domain you are working for to your local copy, you would be able to do so by making minor tweaks in this file. We will discuss this in more detail below.
Virtual Hosting [ править ]
Resources [ править ]
PHP Setup [ править ]
- Download PHP and choose commonly VC6 x86 Thread Safe in Zip format. The various options have to do with how the PHP code base was compiled to binary and is probably nothing you should worry about for now.
- Create a folder under your C:\Program Files\ (or wherever your program directory is located) a folder called PHP.
- Locate your downloaded Zip file and move it to the newly created folder and unpack it directly into the folder.
- Let us now add the PHP path to our global PATH variable by following the instruction above.
Configuring PHP [ править ]
The configuration amounts to editing the php.ini file. A sample file for different scenarios is already in your PHP folder. Let us rename php.ini-development to php.ini and open it in your favourite text editor. The common values to tweak are as follows and all of these variables are well documented in the php.ini file. (Note that this is a server wide setting applying to all your projects.):
- max_execution_time — whenever you have scripts that run for too long and the server returns various unexpected results which you think is due to not being able to run through the whole process
- memory_limit
- error_reporting
- display_errors
- log_errors — a variable you would need to take note of in production scenarios
- upload_tmp_dir
- upload_max_filesize
- extension_dir’ — in order to avoid complications we will point out the directory where the following extensions are located by uncommenting this variable and assign the absolute location of the folder. The complete line should read as follows
extension_dir = "C:\Program Files\PHP\ext"
- Dynamic extensions section contains various additional modules that you want to be loaded with, and the commented ones are those that comes prepackaged with PHP and can be found in the ext directory in your PHP folder. If you want to activate any, just remove the commenting as you should do with the following extensions:
- php_curl.dll
- php_gd2.dll
- php_mbstring.dll
- php_mysql.dll
- php_mysqli.dll
- php_pdo.dll
- php_pdo_mysql.dll
- php_xsl.dll
Configuring Apache to Work with PHP [ править ]
Now that we have configured PHP to work as we want it, let’s go to Apache and do the same.
- Open httpd.conf and in the «Dynamic Shared Object (DSO) Support» section add the following directives. (If you have located your PHP folder differently do make corresponding change for php5apache2_2.dll below.):
LoadModule php5_module "C:/Program Files/PHP/php5apache2_2.dll" AddType application/x-httpd-php .php
- In the DirectoryIndex add index.php and index.htm as possible files to serve when directory is requested as follows:
DirectoryIndex index.html index.htm index.php
- At the end of the file add the following line which will point out where the php.ini file is located
PHPIniDir "C:/Program Files/PHP"
Restart and Test PHP [ править ]
As soon as you make any change to php.ini, httpd.conf or any other configuration files, you need to restart Apache to see the effect of the changes. So let’s now restart Apache by using the Apache Monitor tool that you can find in your Windows status bar. Hopefully you are not prompted with any dialogues and the Apache Monitor continues to run green.
We will now test that PHP is working. Go to your web server’s document root (in the default case C:\Program Files\Apache Software Foundation\Apache2.2\htdocs) and add a file called phpinfo.php with the following content:
This will render a page containing information about your PHP setup and about the various modules/extensions that are currently loaded. Point your browser to http://localhost/phpinfo.php.
Installing and Configuring xdebug [ править ]
- Point your browser to Xdebug Installation Wizard. This page will assist you to find a suitable version of Xdebug.
- Copy the entire page of the phpinfo page we ran above and paste it into the textarea and follow the instructions provided to install.
Resources [ править ]
- The PHP Manual Excellent and up to date documentation with valuable additional comments from users. Downloadable versions are available.
- The Xdebug 3 Documentation