Protein Production
293FT, 293E, CHO

Truly Functional Protein
95% Purity
1-10 mg in 2 weeks

GeneExpressoMax™
293Expresso™

Transfection Reagents
* 90% Efficiency
* 95% Viability
* No sera interference
* Simple protocol
* High-throughput
* Only $98/ml

Baculovirus
Functional Protein
95% Purity
Fast turnaround
1-10 mg from Sf9 cells

Adenovirus, AAV
& Lentivirus

ORF or shRNA
* High Titer
* Cre, FLP, ΦC31
* Protein Kinases
* Transcription Factors
* Luciferases, GFP, RFP
* Protein Production
* Stable Cell Line


Excellgen

Archive for January, 2010

How to solve “method not implemented” in Magento backend

If you get “method not implemented” error  message, it is most likely your httpd server is using mod_security. You can completely remove mod_security from your site or your httpd server.

To remove mod_security from your site, edit .htaccess file:
add these lines:

<IfModule mod_security.c>
###########################################
# disable POST processing to not break multiple image upload

    SecFilterEngine Off
    SecFilterScanPOST Off
</IfModule>

<IfModule mod_deflate.c>

If this does not work, remove mod_security from your httpd.conf by commenting out the following lines:

AddModule mod_security.c
LoadModule security_module modules/mod_security.so
Include “/usr/local/apache/conf/modsec.conf”

 Or move mod_security.conf from conf.d directory to somewhere else.

Tags:

Comments

January 1, 2010 at 12:16 pm ·