How to change the port of a MySQL server in XAMPP

How to change the port of a MySQL server in XAMPP


To change the port successfully, i had to change the port number in following files in the mentioned manner.

You can change the port number to 3308 from 3306 in \xampp\mysql\bin\my.ini file in a couple of places.
There is also a couple of default MySQL port settings in the \xampp\php\php.ini file that would also need changing.
Save the files and restart Apache and MySQL to test.

I changed mysql port in xampp, now how do I listen to the new port?


Goto xampp>phpMyAdmin Directory.

Find the config.inc.php file.

Now change this line:

$cfg['Servers'][$i]['host'] = '127.0.0.1';
To

$cfg['Servers'][$i]['host'] = '127.0.0.1:3307';
Now, restart your server.

How to enable iframe code for the TinyMCE Editor in Joomla

To enable Iframe code for the Tiny MCE Editor, go to Extensions -> Plug-in Manager -> Editor – TinyMCE. Open it, than find “Prohibited Elements” area.


Now you can remove “iframe” tag from this list of prohibited elements. At the end be sure to save your changes when you’re done.

How to enable iframe code for the JCE Editor in Joomla

Navigate to components -> JCE -> Editor Profiles -> Default -> Editor Parameters -> Options to access these options.
In the Edit Profile area for the Default editor, click on the Plugin Parameters Tab, and then click on the “Media Support” tab. Than enable “Allow Iframes” setting option to “Yes”.

Next, select “Save & Close” when your done.

How to remove HTML filtering in JCE in Joomla

The popular JCE editor has a few options focused on HTML filtering and output: Validate HTML and Doctype selection, which can be found in the “Editor Global Configuration” tab or inside the available profiles’ settings. Navigate to components -> JCE -> Editor Profiles -> Default -> Editor Parameters -> Options to access these options.

Please check also “Advanced” tab where you can set which elements are allowed and which are not. Check that the Allow Javascript or Allow CSS or Allow PHP options are set to Yes – depending on which code type you need to insert.