You can use these .htaccess rules for both cases: These rules check for each parameter in the query string of the request. You can remove irrelevant parameters as needed. First URL rewrite: ?option=com_content&view=article&id=55:psychiatry&catid=23:doctor&Itemid=48 --> /psychiatry/ RewriteBase / RewriteCond %{QUERY_STRING} option=com_content [NC] RewriteCond %{QUERY_STRING} view=article [NC] RewriteCond %{QUERY_STRING} id=55:psychiatry [NC] RewriteCond...
joomla,joomla1.5,joomla3.0,joomla-template
The problem is that the theme is an Artisteer theme. To solve this issue simply open the .artx theme and export for other joomla version. If you don't have the .artx file then I cannot help you because I deemed the problem unsolvable.
joomla,joomla1.5,cart,virtuemart
Comment the condition under \administrator\components\com_virtuemart\ps_product.php line no. 2356 or just find the following code in ps_product.php and comment 4th condition. if (USE_AS_CATALOGUE != 1 && $show_addtocart && isset( $GLOBALS['product_info'][$product_id]['price']['product_price_id'] ) /*&& !$this->product_has_attributes($product_id, true) */ )...
The passwords saved in the database are hashed, you can't copy the hashed value and paste it into the login as the password, it's a one-way encryption. If you are trying to reset the password via phpmyadmin: Edit the row for your user in jos_users Type your new password such...
php,joomla,joomla1.5,windows-server-2012
This might be the cause of an extension which is not correctly built and doesn't support Windows Server. You can try going into the SQL back-end and disabling all non vital extensions to see if that fixes the problem. You are most probably stuck in a loop which causes a...