magento, joomla, wordpress, facebook, paypal, cmsms, mindbody, chase, twitter, facebook, cyberkan, html5, css3
 
 

magento add categories page broken

Magento 1.6 fresh install category section is broken, I got it solved.

magento category page broken

magento category page broken

open /www/mgo/app/design/adminhtml/default/default/template/catalog/category/edit.phtml
online number 101
comment following alert message.

catch (e) {
alert(e.message);
};

and its done.

 

correct solution for this trouble is

The problem was originated by activating Google Analytics from Cpanel. This created an archive called .fastaccess in the root directory of the store. I just removed this file and everything worked fine again.


json tutorial for beginners learn how to program part 1 JavaScript


zen cart UPC and ISBN module Unknown column ‘p.products_upc’ in ‘field list’ solved

Need to create two fields inside zen_products products_upc and products_isbn that will solve this problem


Godaddy Magento installation error No input specified.

A common error, which usually comes up if you’re hosted by GoDaddy, is the no input file specified error.

If you do not have Magento setup in the root of your server, make sure to add the following to your .htaccess file.
RewriteBase /yourbasepath/

In your web root directory, there should be a file called php.ini. Rename this to php5.ini.

If there is no php5.ini file. Create the file and upload it to your root directory.

If that doesn’t work, add the following to the end of your newly renamed php5.ini file:

cgi.fix_pathinfo = 1

And if you’re still getting the error, add the following to the top of your .htaccess file:
Options -MultiViews

If nothing above worked, call GoDaddy up and have them either rename this for you, or make sure you’re on PHP 5.


html5 and css3


Css 3 have great Impact


How to mount S3 over EC2 Linux

aws

Steps for Mounting S3 bucket over EC2:

1.- Download the latest version of s3fs (which is a FUSE backend for S3) from http://code.google.com/p/s3fs/downloads/list
wget http://s3fs.googlecode.com/files/s3fs-r177-source.tar.gz

2.- Unpack it:
tar zxf s3fs-r177-source.tar.gz

3.- Install dependencies for building. In my Ubuntu AMI was:
apt-get install build-essential libxml2-dev libfuse-dev libcurl4-openssl-dev

4.- Build and install the code (this copies the binary s3fs to /usr/bin):
cd s3fs; make install

5.- Edit a config file for storing your keys (you can check them out under AWS Menu -> Your Account -> Security Credentials)
touch /etc/passwd-s3fs && chmod 640 /etc/passwd-s3fs && echo ‘AccessKey:SecretKey’ > /etc/passwd-s3fs
If you dont want to leave any trace of your secret key in your shell history, use a text editor to edit the file rather than echoing it.

6.- Create a directory for mounting the S3 filesystem and mount it. Note that you can mount the s3fs anywhere you like:
/usr/bin/s3fs bucketname /mnt/mountpoint

7.- Check it is woking correctly:
grep s3fs /etc/mtab


Call magento image from template

magento

{{skin url=’images/media/about_us_img.jpg’}}


Call magento Block

magento

{{block type=”catalog/product_list” name=”home.catalog.product.list” alias=”products_homepage” category_id=”3″ template=”catalog/product/list.phtml”}}


Add Home button to magento category menu

magento

<div>
<div>
<h4><?php echo $this->__(‘Category Navigation:’) ?></h4>
<ul id=”nav”>

<!– HOME BUTTON HACK –>
<li><a href=”<?=$this->getUrl(”)?>”>Home</a></li>
<!– HOME BUTTON HACK –>

<?php foreach ($this->getStoreCategories() as $_category): ?>
<?php echo $this->drawItem($_category) ?>
<?php endforeach ?>
</ul>
</div>
<?php echo $this->getChildHtml(‘topLeftLinks’) ?>
</div>


Social Widgets powered by AB-WebLog.com.