Joomla Hosting BLOG

Blog about Joomla, Technologies and Hosting Service

Joomla Hosting - ASPHostPortal.com :: Reset Lost Admin Password In Joomla

clock February 12, 2015 06:01 by author ben

Hello everyone. At present I am coping with an incredibly common Content Management System known as Joomla and believe me it is quite easy to create any type of Internet site employing this tool. But this post is about an issue faced by me in Joomla. I lost my admin password accidentally but I located a approach to recover them which helped me a great deal. And that is what I'm going to talk about with you. Following would be the measures to follow-

  • Open phpMyAdmin. I have installed XAMPP to run Joomla and phpMyAdmin comes with XAMPP.
  • Now select the database you have created for your Joomla installation. For your information, Joomla asks for a database to store all the information during the installation.\
  • Select the table ending with _users. Here I have pbu76_users table.
  • Now we’ll edit this table. So click on edit icon.

  • Now inside the password field pick function md5 and then type the password you want to set for the account. You are able to see this within the screenshot. Now click Go.
  • Congrats! We've got successfully reset the admin password for Joomla. You'll be able to reset password for any user by way of this way. I hope you like it.

Precisely the same process is applicable to WordPress also.

Best Recommended Joomla Hosting


ASPHostPortal.com
ASPHostPortal.com is the leading provider of Windows hosting and affordable Joomla Hosting. Joomla 3.4 Hosting from ASPHostPortal.com provides a safe, reliable and performance-driven foundation for your Joomla website. Joomla is the perfect Content Management System for managing and developing your website with one of ASPHostPortal’s Hosting plans. ASPHostPortal has ability to support the latest Microsoft and ASP.NET technology, such as: WebMatrix, WebDeploy, Visual Studio 2015, .NET 5/ASP.NET 4.5.2, ASP.NET MVC 6.0/5.2, Silverlight 6 and Visual Studio Lightswitch, ASPHostPortal guarantees the highest quality product, top security, and unshakeable reliability, carefully chose high-quality servers, networking, and infrastructure equipment to ensure the utmost reliability.

 



Joomla Hosting with ASPHostPortal.com :: SP Page Builder, Drag-and-Drop Joomla Sites

clock February 11, 2015 18:46 by author ben

SP Page Builder is a new Joomla! extension from Joomshaper which allows you to build Joomla pages via a drag-and-drop interface.
SP Page Builder is similar to Drupal's Panel in that it allows you to easily create pages and choose from many different layouts. Once the layout has been selected, you can add modules, accordions, icons, images, tabs and much else.
In this tutorial, we'll introduce you to SP Page Builder and show you how easy it is to build pages.

#1. Getting started with SP Page Builder

  • Go to the SP Page Builder extension page and click "Download Beta".
  • Go to Extensions > Extension Manager.
  • Select the the zip file you downloaded and click the Upload & Install button
  • Go to Components > SP Page Builder.
  • Click New.

#2. Creating a page and choosing a layout

  • Choose a Title.
  • Click Add Column.
  • Choose to create a layout with 3 columns by clicking the button marked below.

#3. Add an accordion

  • Click the green Addon link.
  • You're going to see a list of many features you can add. In this example, we'll choose Accordion.
  • Set a title for the Accordion feature.
  • Click on the first accordion title
  • Set a custom label
  • Choose an icon class (optional)
  • Add some content into the accordion area.
  • To add more items, click on Add Accordion button and repeat steps from 1 to 4.
  • When you are done. Click the Save button.

#4. Add a Joomla module

You can also place Joomla modules on your page. Start by clicking the green Addon link:
From the list choose Joomla Module:

  • Set a title.
  • Choose the module to load. For this example, we'll use Search.
  • Click the Save button.

#5. Add a text block

You can also place text areas on your page.From the list, choose Text Block:

  • Set a title.
  • Add some content.
  • Click the Save button.
  • Now we havea 3 column layout with addons. Click the Save & Close button to save the page.

#6. Create a menu item

  • Go to Menus > Main menu > Add new menu item
  • For the Menu Item Type, choose SP Page Builder > Page.
  • Select Page: choose the page you just created.
  • Click on the Save & Close button.

#7. Final Result

  • Go to your public site and see how it looks

There are many more features in the free version of SP Page Builder, such as tabs, slideshow, images, buttons, icons, etc.
Be aware at the time of writing this post SP Page Builder is only a beta release and only available for Joomla 3.

Best Recommended Joomla Hosting

ASPHostPortal.com

ASPHostPortal.com is the leading provider of Windows hosting and affordable Joomla Hosting. Joomla 3.4 Hosting from ASPHostPortal.com provides a safe, reliable and performance-driven foundation for your Joomla website. Joomla is the perfect Content Management System for managing and developing your website with one of ASPHostPortal’s Hosting plans. ASPHostPortal has ability to support the latest Microsoft and ASP.NET technology, such as: WebMatrix, WebDeploy, Visual Studio 2015, .NET 5/ASP.NET 4.5.2, ASP.NET MVC 6.0/5.2, Silverlight 6 and Visual Studio Lightswitch, ASPHostPortal guarantees the highest quality product, top security, and unshakeable reliability, carefully chose high-quality servers, networking, and infrastructure equipment to ensure the utmost reliability.



Joomla Hosting :: How to Remove mootools-core.js and caption.js from Joomla

clock February 9, 2015 07:02 by author ben

Today, we will explain to you How to Remove mootools-core.js and caption.js from Joomla. When I form a site I need to evacuate any unneeded outer JavaScript records in the html to help enhance the execution of the site.
So when I make a fundamental substance page utilizing an article design with no modules I am astonished to see these 3 lines

<code>

<script src="/media/system/js/core.js" type="text/javascript"></script>
<script src="/media/system/js/mootools-core.js" type="text/javascript"></script>
<script src="/media/system/js/caption.js" type="text/javascript"></script>

</code>



This happens on both joomla 1.5 and 1.6 When I looked around the web for an answer I continue discovering the response to be utilize standard statement on the last yield to evacuate it. While this will evacuate it, I needed to comprehend why this is included. It ought to in principle just be included when it is required. On the off chance that I include a module that does need mootools then I would prefer not to be uprooting the script document.

It will break the module. Not being a center hack is likely the main fortunate thing about this system. Since Joomla will just add records that are advised to be incorporated, so I chose to work out why they were being advised to be incorporated when nothing on the page needs them.

The Reason

Delving into why, this is the thing that I found: In the com_content part it is calling

<code>

JHtml::_('behavior.caption');

</code>


This one line is bringing on those 3 JavaScript documents to be added to the page It is either a disregarded bug, or evacuating it causes different bugs to be noticeable.

Instructions to alter

You should do nothing more than remark out a line in a center segment com_content. <b>This is a center hack</b> any redesign will return this change and you will need to physically overhaul it. alright on to the fix.

In the file: “/components/com_content/controller.php” find: “public function display($cachable = false, $urlparams = false)”   we just comment out:

<code>

JHtml::_('behavior.caption');

</code>


so it will become

<code>

//JHtml::_('behavior.caption');

</code>


Thats it!

Best Joomla Hosting Recommendation

ASPHostPortal.com provides our customers with Plesk Panel, one of the most popular and stable control panels for Windows hosting, as free. You could also see the latest .NET framework, a crazy amount of functionality as well as Large disk space, bandwidth, MSSQL databases and more. All those give people the convenience to build up a powerful site in Windows server. We offers Joomla hosting starts from $1/month only. We also guarantees 30 days money back and guarantee 99.9% uptime. If you need a reliable affordable Joomla Hosting, we should be your best choice.



Joomla Hosting - ASPHostPortal.com :: How to Remove index.php from existing Joomla! SEF URL's

clock February 6, 2015 07:06 by author ben

So you set up your Joomla! site, made it live, and a couple of weeks/months/years after the fact understood that you'd neglected to empower the Htaccess document for SEF Url's. The deciding result being that instead of having a decent Search Engine (and client) cordial URL like/classification/Blogs/post/, you rather have/index.php/class/Blogs/post/.

You could simply empower the Htaccess record, yet all the old URL's will give back a 404. Not extraordinary if your site has as of now been listed via web search tools, even less incredible on the off chance that you've got bunches of inbound connections on different locales.

It's really amazingly easy to resolution, and in this post I'll be demonstrating to you the two simple steps you have to take to arrange your site to divert the old/index.php/* Urls to the decent SEF ones you need.

The primary step is basic, we have to empower the Htaccess document (accepting you haven't as of now). In the foundation of your Joomla! site is a record called htaccess.txt, rename it to .htaccess

Second step: We have to add a mod_rewrite standard to catch the old-style joins. Open .htaccess in a content manager and discover the line "Rewriteengine On". Instantly underneath include the accompanying (lines with a hash are remarks, you can skirt these if necessary)

# Make sure the requested URL isn't a file or directory
# Why you'd create a directory called index.php, but best to be sure
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f

# Use a reg-Ex to find URL's where index.php is followed by something.
# If so, create a redirect to whatever followed the slash
RewriteRule ^index.php/(.*)$ /$1 [R=301]

Remember to spare the record!

Presently in the event that you visit http://yoursite/index.php/classification/Blogs/post/ you ought to be diverted to http//yoursite/class/Blogs/post/. Since you're sending a 301 (Permanently moved), the internet searchers ought to upgrade their files also.

It's something individuals experience a ton, yet as should be obvious its unfathomably simple to determination.

Best Recommended Joomla Hosting

ASPHostPortal.com
ASPHostPortal.com is the leading provider of Windows hosting and affordable Joomla Hosting. Joomla 3.4 Hosting from ASPHostPortal.com provides a safe, reliable and performance-driven foundation for your Joomla website. Joomla is the perfect Content Management System for managing and developing your website with one of ASPHostPortal’s Hosting plans. ASPHostPortal has ability to support the latest Microsoft and ASP.NET technology, such as: WebMatrix, WebDeploy, Visual Studio 2015, .NET 5/ASP.NET 4.5.2, ASP.NET MVC 6.0/5.2, Silverlight 6 and Visual Studio Lightswitch, ASPHostPortal guarantees the highest quality product, top security, and unshakeable reliability, carefully chose high-quality servers, networking, and infrastructure equipment to ensure the utmost reliability. 



Joomla Hosting - ASPHostPortal.com :: What is Exactly XML Sitemap

clock February 5, 2015 05:54 by author ben

XML Sitemap (also referred to as Google Sitemap) can be a list of URLs for the web site inside a type of XML file (sitemap.xml file). This file allows you to include more data about every single URL such as the date it was last updated, how often it modifications, and how essential it truly is.



XML format ensures that this info is usually simply processed on distinctive kinds of computers, applications and systems, so search engines will not have any problems to understand your sitemap files.

This way XML sitemaps are completely compatible with Google, Yahoo, Microsoft's Bing (MSN), Ask, and other search engines like google.

Usually it's noted as www.yourwebsite.com/sitemap.xml, the XML Sitemap is generally a directory that permits search spiders to discover and index each single page of one's site. It’s form of like a one-stop-shop for search engines like google. It aids them obtain the pages they may have otherwise missed.

If you’ve taken the time to optimize each and every page, you don’t want all your tough function to be negated since the search spider overlooked it! To human eyes, it just looks like jibberish (also known as code), but search spiders can see the keyword phrases and understand the total layout of the web site.

It is best to generate an XML Sitemap in the very end of one's web page optimization for the reason that it's going to become designed off of the internal linking structure. For those who endeavor to produce it even though you're still establishing pages and content, the Sitemap may well not include things like them. You will discover a good amount of on the net Sitemap generators readily available in the event you don’t have a internet designer to accomplish the work for you.

Most Effective Advised Joomla Hosting

ASPHostPortal.com
ASPHostPortal.com would be the major provider of Windows hosting and affordable Joomla Hosting. Joomla 3.4 Hosting from ASPHostPortal.com gives a protected, dependable and performance-driven foundation for your Joomla web site. Joomla would be the ideal Content Management Technique for managing and establishing your site with one of ASPHostPortal’s Hosting plans. ASPHostPortal has ability to support the newest Microsoft and ASP.NET technologies, for example: WebMatrix, WebDeploy, Visual Studio 2015, .NET 5/ASP.NET 4.5.2, ASP.NET MVC 6.0/5.2, Silverlight 6 and Visual Studio Lightswitch, ASPHostPortal guarantees the highest quality item, leading safety, and unshakeable reliability, meticulously chose high-quality servers, networking, and infrastructure gear to ensure the utmost reliability.




Joomla Hosting - ASPHostPortal :: How To Move an Exact Copy of Your Site from Localhost to a Live Server

clock February 4, 2015 06:01 by author ben

Many people like to develop their Joomla sites locally and then move their work to a live host when completed. This weeks tutorial will show you how to move an exact copy of your site from your localhost to a live server, database and all.

We're going to use a fantastic component called JoomlaPack to help us with the process. We'll first use it to make a backup of our local site (files + database), and then we'll use a provided tool (Kickstart) to restore the backup to our live server.

Here's how you do it:

  • Download the JoomlaPack component. Make sure you get the latest release, which at the time of this newletter is 2.2
  • Download the Kickstart app, again making sure you ge the latest release, 2.2Stable - unzip the package for later use.
  • In the administration area of your local Joomla site, go to Extensions >> Install / Uninstall and upload the JoomlaPack component file: com_joomlapack-2.2-free.zip
  • In the administration area of your local Joomla site, go to Components >> JoomlaPack >> Configuration and we're going to change a setting before we backup and migrate. Click on the 'Advanced' tab and then locate the 'Archiver engine' and change it to 'JPA JoomlaPack Archive, and click Save.
  • Click on the Backup Now button (you'll notice a warning regarding the default directory being used for the backup - we can ignore this *for now) and then the 'Backup Now!' You should see the backup process begin, and be given a success page when completed.
  • Locate the backup file in your localhost joomla_root/administrator/components/com_joomlapack/backup - the backup file will have the extension .jpa. Upload this file to the directory on your live server where you will do the restore. For most this will be the root directory, /html or /home etc
  • Upload the Kickstart app file to this same directory. You should have unzipped the package in an earlier step, if not, unzip and then upload the file.
  • Create a new database using phpMyAdmin or the tool provided by your host to do so. This new database will be used for our restore to populate with our backed up data. Make note of the hostname, username/password and database name for further steps.
  • Navigate in your browser to http://backup_directory/kickstart.php (where backup_directory is the directory your backup file is located). Insert your Host, Username, and Password information and click on the green Start button. You will see the process beign - do not close this browser window!
  • Once the file extraction is done you will see a message to 'Please click here to open JoomlaPack Installer restore script in a new window'. Click there.
  • A new window will open, and you will see a typical looking Joomla installation page, however this is the restore script. Go through the installation process, making sure you put your new information for hostname, username, password and database in Step 4.
  • After successful Joomla installation (restore in our case) go back to the other browser window and click on the link to restore your .htaccess file if you need to do this step, and close the browser window when done.
  • The restoration process should now be completed, and you can log in to your newly moved site at /administrator to continue development on the live server.

Best Recommended Joomla Hosting

ASPHostPortal.com

ASPHostPortal.com is the leading provider of Windows hosting and affordable Joomla Hosting. Joomla 3.4 Hosting from ASPHostPortal.com provides a safe, reliable and performance-driven foundation for your Joomla website. Joomla is the perfect Content Management System for managing and developing your website with one of ASPHostPortal’s Hosting plans. ASPHostPortal has ability to support the latest Microsoft and ASP.NET technology, such as: WebMatrix, WebDeploy, Visual Studio 2015, .NET 5/ASP.NET 4.5.2, ASP.NET MVC 6.0/5.2, Silverlight 6 and Visual Studio Lightswitch, ASPHostPortal guarantees the highest quality product, top security, and unshakeable reliability, carefully chose high-quality servers, networking, and infrastructure equipment to ensure the utmost reliability. 



Joomla Hosting - ASPHostPortal.com :: Utilizing the Page Class Suffix as a part of Template Code

clock February 2, 2015 07:52 by author ben

The Page Class Suffix is a parameter in Joomla! content Menu Items. It is situated in the Menu Item: [edit] screen under the "Parameters (Advanced)" segment. This will result in Joomla! to either include another CSS class or alter the current CSS class for components in this particular Menu Item format.

At the point when Joomla! produces a page, it naturally makes predefined CSS classes to permit styling of the page. There is no general standard, how it is utilized, this is a choice made by the creator of the dynamic layout. Case in point, a page may have the component

<div class="componentheading">

Fundamentally, by utilizing the Page Class Suffix you can do one of taking after traps:

Make another class while safeguarding the first one

to do this, enter the parameter with a main space. For instance, entering a space in addition to "myclass" will make another CSS class called "myclass" and it will be embedded as a class for components in the page referenced by that Menu Item. For this situation the sample above will be changed to

<div class="componentheading myclass">

Change the name of a current class

The trap is comparative, yet rather entering a space before "myclass" you can include for instance an underscore "_" or whatever other character permitted by the CSS naming benchmarks. For this situation the yield will look like:

<div class="componentheading_myclass">

Utilizing the above deceive you clearly can include page particular styling. By and large, it is prescribed to utilize a main space to make another class. Along  these  lines, CSS styling for this segment that uses the standard class names will keep on meeting expectations. You can utilize the new class name to add any wanted styling to the segment without expecting to re-make the majority of the current CSS code. Note that, in the event that you make another class name, make beyond any doubt it has a novel name and doesn't clash with any current class names.

The huge inquiry is

Step by step instructions to embed the required code in layout?

There are two steps obliged: most importantly you have to make sense of the addition for the page, then you have to embed it in the required spot in your format.

Load the addition

For this you have to embed some additional code in the layout's <head> area or some place else in the format - clearly before the spot you need to utilize the Page Class Suffix:

<?php
$itemid = Jrequest::getvar('itemid');
$menu = &jsite::getmenu();
$active = $menu->getitem($itemid);
$params = $menu->getparams( $active->id );
$pageclass = $params->get( "pageclass_sfx" );
?>

Embed the suffix

The following step is to utilize the page class addition some place in the layout.

In the Body Tag

The more regular strategy would be to apply the page class addition as an id or class to the <body> tag. Find the <body> tag (underneath the </head> label) and supplant it with this:

<body id="<?php reverberation $pageclass ? htmlspecialchars($pageclass) : 'default'; ?>">

To Load a Page-Specific Stylesheet

The second technique would be to load a template novel to the page being referred to. As opposed to adjusting the <body> label, look for the template connect inside the <head></head> labels and include the accompanying line specifically underneath it:

<link rel="stylesheet" href="/formats/<?php reverberation $this->template ?>/css/<?php reverberation htmlspecialchars($pageclass) ?>.css" type="text/css"/>

The third technique is to change ANY standard page component, as above

How about we say's I need to change how the segment heading - a standard Joomla page component looks like. For that most likely I have to search for it in the format overrides - the "html" subdirectory of my layout - to spot the events of

<div class="componentheading">

furthermore to supplant them with

<div class="componentheading<?php reverberation htmlspecialchars($pageclass) ?>">

Obviously more approaches to utilize the Page Class postfix can be envisioned - and executed. I trust I succeeded to unleash your creative energy!

Best Joomla Hosting Recommendation

ASPHostPortal.com provides our customers with Plesk Panel, one of the most popular and stable control panels for Windows hosting, as free. You could also see the latest .NET framework, a crazy amount of functionality as well as Large disk space, bandwidth, MSSQL databases and more. All those give people the convenience to build up a powerful site in Windows server. We offers Joomla hosting starts from $1/month only. We also guarantees 30 days money back and guarantee 99.9% uptime. If you need a reliable affordable Joomla Hosting, we should be your best choice.



Joomla Hosting - ASPHostPortal.com :: You Should Optimizing Your Joomla Site

clock January 29, 2015 05:47 by author ben

So, you've installed and setup your brand new Joomla web site already. Have you offered some thought to how you could optimize it to load faster but? We'll provide you a few pointers within this write-up.

First of all, an important step one is to enable Joomla's built in caching. You can do this simply using the following steps:

  • Login to your Joomla Administrator Panel
  • Goto > Site > Global Configuration > System (depending on your version this may be slightly different)
  • Set Caching to ON. I'd suggest you leave it set to File and 15mins. Conservative caching in Joomla 3.4 is probably the best option to start with
  • Save your Configuration

 

Some notes:

  • Once caching is enabled, while new content will prompt a refresh of the system cache, you can trigger this yourself to ensure that 3rd party components that use the inbuilt cache are also refreshed (see the next point)
  • You can manually refresh the cache in Site > Maintenance > Clear Cache (you'll need to, in most cases, select all items, and then press 'delete' up the top right

Next? Properly, the globe is actually your oyster. Depending on your template, there might be quite a few optimization alternatives currently implemented. Most of the 'well known' Joomla template clubs produce outstanding templates that may already be optimized.

Some other critical reading suggestions are:

  • Google's: Minimize payload size and
  • A little more advanced: Optimize browser rendering
  • You may also like to run your site through GTmetrix or this testing tool

Do not overlook as well, the kind of hosting you decide on may also possess a massive impact around the speed of one's Joomla Website. We've not touched on this situation at all in this artilce since it must be obvious.

For additional help in this Joomla Optimization region, make sure to head over for the Joomla Forum, in particular the forum section on Joomla Overall performance (choose the section for the Joomla version you're operating with).

Best Recommended Joomla Hosting

ASPHostPortal.com
ASPHostPortal.com is the leading provider of Windows hosting and affordable Joomla Hosting. Joomla 3.4 Hosting from ASPHostPortal.com provides a safe, reliable and performance-driven foundation for your Joomla website. Joomla is the perfect Content Management System for managing and developing your website with one of ASPHostPortal’s Hosting plans. ASPHostPortal has ability to support the latest Microsoft and ASP.NET technology, such as: WebMatrix, WebDeploy, Visual Studio 2015, .NET 5/ASP.NET 4.5.2, ASP.NET MVC 6.0/5.2, Silverlight 6 and Visual Studio Lightswitch, ASPHostPortal guarantees the highest quality product, top security, and unshakeable reliability, carefully chose high-quality servers, networking, and infrastructure equipment to ensure the utmost reliability. 




Joomla Hosting - ASPHostPortal :: How To Enable Joomla Caching

clock January 28, 2015 06:04 by author ben

This article will explains about how to enable joomla caching.

Enable Joomla Caching

If cache is not enabled, every time your visitors load one of your pages, Joomla has to do few things - fetch the content from its database, load all the plugins, components and modules, you have installed, load your template file and combine all that into a single page. Needless to say this process takes time. This is where the internal Joomla caching system comes to help. When you enable the cache, the first time someone loads your page, the result from the above mentioned actions is stored. Then, all the following visitors will directly get the stored version of that page as if it was a simple, plain HTML file which is much, much lighter and loads faster. This is why caching is one of the most important things to enable in order to have a fast Joomla site.
To enable the Joomla caching, first go to System -> Global Configuration.

Next, you need to click on the System tab to get to the caching settings.

On the right part of this page you will find the Cache Settings. Find the Cache label and click on the drop-down next to it. From the list, please select the ON - Conservative caching option. The other available option - Progressive Caching works a bit different - it stores cached version of your site per each one of your visitors. It is useful in some particular cases and we don't recommend you to use it unless you're absolutely sure you need such caching enabled.

Once you set the caching to Conservative Caching, click on the green Save button at top of your page.

There is one final step that you need to make before the Joomla caching system actually starts working - to enable the System - Cache core Joomla 3 plugin. To do this go to Extensions -> Plugin Manager.

Here you will see a big list of all the plugins, currently installed in your Joomla application. The easiest way to locate the caching plugin is to use the search field. Just type in cache and press the magnifying glass button next to the search field.

Once you do that, you will see the System - Cache plugin and a red cross button next to it indicating that the plugin is disabled. To change its status to enabled press on the red button.

Finally, the status button next to the caching plugin will turn green and you'll see a message, indicating that the plugin has been enabled successfully.
That's it! Your Joomla caching system is now enabled and functional!

 

Best Recommended Joomla Hosting

ASPHostPortal.com

ASPHostPortal.com is the leading provider of Windows hosting and affordable Joomla Hosting. Joomla 3.4 Hosting from ASPHostPortal.com provides a safe, reliable and performance-driven foundation for your Joomla website. Joomla is the perfect Content Management System for managing and developing your website with one of ASPHostPortal’s Hosting plans. ASPHostPortal has ability to support the latest Microsoft and ASP.NET technology, such as: WebMatrix, WebDeploy, Visual Studio 2015, .NET 5/ASP.NET 4.5.2, ASP.NET MVC 6.0/5.2, Silverlight 6 and Visual Studio Lightswitch, ASPHostPortal guarantees the highest quality product, top security, and unshakeable reliability, carefully chose high-quality servers, networking, and infrastructure equipment to ensure the utmost reliability. 



Joomla Hosting - ASPHostPortal.com :: Error Constructing Admin Menus

clock January 27, 2015 06:53 by author ben

Since the release of Joomla 3.4 I have run into a problem on numerous occassions and lately a user of CeltaWeb Visitors had precisely the same problem so I thought I'd share my answer. When you have ever recieved the message below read on to find out why it takes place and how you can fix it.



Another menu item with the exact same parent has this alias. Error constructing Admin Menus

I saw this difficulty mostly with Joomla 3.4 web sites upgraded with JUPgrade and so on but I have also encounter it far more not too long ago. This message usually happens if an installation fails along with a proper cleanup does not occur which leave menu entries behind inside the jos_menu table.
Note: jos needs to be replaced along with your Joomla installations table prefix.

The best strategy to fix that is to uninstall the element, then open up phpMyAdmin and delete the orphaned menu things related to the component in the #_menu table. I have also had good results with deleting the menu items after which installing once more without having uninstalling initial! it is your selection.

So to acquire began open up phpMyAdmin and click the SQL tab at the best from the phpMyAdmin window after which paste inside the code below remembering to replace jos with your table prefix after which click Go

delete FROM `jos_menu` where title like "COM_CELTAWEBTRAFFIC%"

Note: COM_CELTAWEBTRAFFIC should be replaced with the name of the component you wish to remove.

After you receive the 1 row deleted message reinstall the component and should now see it listed in the admin menu.


Best Joomla Hosting Recommendation

ASPHostPortal.com provides our customers with Plesk Panel, one of the most popular and stable control panels for Windows hosting, as free. You could also see the latest .NET framework, a crazy amount of functionality as well as Large disk space, bandwidth, MSSQL databases and more. All those give people the convenience to build up a powerful site in Windows server. We offers Joomla hosting starts from $1/month only. We also guarantees 30 days money back and guarantee 99.9% uptime. If you need a reliable affordable Joomla Hosting, we should be your best choice.



About ASPHostPortal.com

We’re a company that works differently to most. Value is what we output and help our customers achieve, not how much money we put in the bank. It’s not because we are altruistic. It’s based on an even simpler principle. "Do good things, and good things will come to you".

Success for us is something that is continually experienced, not something that is reached. For us it is all about the experience – more than the journey. Life is a continual experience. We see the Internet as being an incredible amplifier to the experience of life for all of us. It can help humanity come together to explode in knowledge exploration and discussion. It is continual enlightenment of new ideas, experiences, and passions

 photo ahp banner aspnet-01_zps87l92lcl.png

Corporate Address (Location)

ASPHostPortal
170 W 56th Street, Suite 121
New York, NY 10019
United States

Sign in