It turns out this can be done with a relatively simple change to a single file. No .htaccess rewrite rules, simply patch the catalog/controller/common/seo_url.php file and add your pretty URLs to an existing database table.
The patch to seo_url.php:
Index: catalog/controller/common/seo_url.php
===================================================================
--- catalog/controller/common/seo_url.php (old)
+++ catalog/controller/common/seo_url.php (new)
@@ -48,7 +42,12 @@
$this->request->get['route'] = 'product/manufacturer/product';
} elseif (isset($this->request->get['information_id'])) {
$this->request->get['route'] = 'information/information';
- ...
How to Cron Jobs In 5 Minutes working?
NameVirtualHost + Multiple domain on centos
It's the example to configure virtual hostings.
Following example is done as domain name[topupdeals.com (root directory[/var/www/html])],
Virtual domain name[marketing.dvtrust.com (root directory[/home/www/public_html])].
Before doing it, it's necessarry to add new doman name in your DNS first.
[1] Configure httpd for Virtual Hostings
[root@www ~]# vi /etc/httpd/conf/httpd.conf
# line 972: uncomment
NameVirtualHost *:80
# at the last lines: ( for original domain )
DocumentRoot /var/www/html
ServerName www.topupdeals.com
# at the last lines: ( for virtual domain )
DocumentRoot /home/www/public_html/marketing
ServerName marketing.dvtrust.com
ServerAdmin webmaster@dvtrust.com
ErrorLog logs/virtual.host-error_log
CustomLog ...
Online IDM Password Decoder script
Here is simple, easy to use Online Password decoder for Internet Download Manager (IDM). IDM is popular downloader software that simplifies and automates downloading from many shareware and premium download sites such as Rapidshare.com, Megaupload etc. Now you can easily recover those premium account passwords using this online password decoder without installing any software.
To use it, simply copy the encoded IDM ...
Enabling CURL on Windows+PHP+Apache Machine!
If you are planning to use CURL library on PHP then you may encounter an error like below.
Fatal error: Call to undefined function curl_init() in F:\proj\orkutfeeds\trunk\index.php on line 15
Curl is by default not enabled on PHP on Windows although it is there. So to enable this go through following steps…
Locate php.ini file. Its under directory where you installed PHP. On my machine its path is: C:\wamp\bin\php\php5.2.5\php.ini
Once you find that ...





