Create Rails Application Directory Godaddy Hosting
Friday, February 18th, 2011If you use 4GH:
http://community.godaddy.com/help/article/1091
visit http://www.YOUR-URL-HERE.com/_h_admin_/index.php
If you use 4GH:
http://community.godaddy.com/help/article/1091
visit http://www.YOUR-URL-HERE.com/_h_admin_/index.php
I’m using this to lock a directory of assets for a client on a godaddy hosting plan:
order deny,allow
allow from localhost
deny from all
and then accessing files there from with a php file that checks their Zend logged in/file permissions etc.
(search this blog for “file serve” in content to find the php script)
AWESOME!
C:\xampp\phpMyAdmin\config.inc.php
add this (or similar) at the bottom:
$i++;
$cfg['Servers'][$i]['auth_type'] = ‘config’;
$cfg['Servers'][$i]['user'] = ‘user’;
$cfg['Servers'][$i]['password'] = ‘password’;
$cfg['Servers'][$i]['host'] = ‘your_host’;
$cfg['Servers'][$i]['verbose'] = ‘Description to appear in phpMyAdmin’;
//end
params/reference: http://wiki.phpmyadmin.net/pma/Config
And then control remote MySQL databases in your localhost/phpmyadmin
under Actions: Server: dropdown
*note: When connecting to a Godaddy DB, you must enable accessible remotely when creating the database!