Needs Improvement
Workable solution needs improvement
Can you list the other payment gateways?
Ecommerce has authorize.net (the payment gateway I've picked as best independent of Drupal), eurobill, eway, itransact, worldpay (they're terrible, reject way too many cards), and flexicharge. Not sure if that's just a module or a service. And that's just what's included with e-commerce proper, there are third-party contrib modules also.
Best way to do this is for you to pick the payment gateway you want, odds are Drupal has already been extended to work with it.
mysqldump -u root -p internetbar_live > internetbar_backup.sql
(should gzip here)
This command compresses the file database.sql and replaces it -- deletes it -- with the compressed .gz file database.sql.gz
gzip database.sql
scp ben@66.135.41.18:~/internetbar_backup.sql internetbar_backup.sql
On the other end if you compressed, uncompress:
gunzip database.sql.gz
Note: tar
is for making an archive of multiple files.
Ah-- ussf-tech is on my gmail account, along with drupal-dev, drupal-this, apache-that, journalism-this.... let's just say during WSF my personal e-mail backlog, which has no mailing lists, reached 500. I would have seen this within a couple days though when I do my review ;-)
Untested:
$sys_name = current(end(implode($path)));
Resolution
pipit: i'm trying to validate (ex age) field on drupal form, using javascript. I found the jquery.alphanumeric.js, add it via drupal_add_js. But how to "insert" in on the age field ?
[12:23am] rszrama: pipit: alphanumeric = some jquery plugin?
[12:23am] pipit: rszrama : duno, i just try learn jquery stuff today :). I got it from : http://itgroup.com.ph/alphanumeric/
Popped up originally when enabling all the e-commerce modules I was interested in at once.
Came up again at odd times, and fairly certainly would have been an issue if we had actually tried to use shipping.
When I caused a parse error in a PHP-input format node:
user warning: Table 'internetbar_live.microcommerce_org_ec_shipping_product_attribute' doesn't exist query: DELETE FROM microcommerce_org_ec_shipping_product_attribute WHERE vid = 5 in /var/www/drupal-5-live/includes/database.mysql.inc on line 172.
On re-saving a page:
High performance Drupal:
Yelvington says:
Drupal will run as many modules as you ask, but your php config may need tinkering. If you get the white screen of death, inadequate RAM is often the cause.
We run APC as well, which of course requires extra RAM as well.
And for best performance you can have mysql store the sessions table in RAM.
Agent Rickard says: