To Install Phpmyadmin On A Yahoo Server
May 4, 2008
i was trying to create a MySQL database for my site. My site is hosted on a yahoo server. From the control panel, when i click on the Mysql datbase link, i get a page that says Mysql database is active. Then as per the online help provided by yahoo, i created a database admin user name and password. Then i installed phpmyadmin in a newly created folder. Then i accessed the homepage of phpmyadmin and entered my login credentials i,e my database admin username and password. The next page that appears is supposed to let me create a database and access it. But all i get is an empty page with my domain name in the left hand side top corner and the link to the yahoo control panel on the right. I installed phpmyadmin couple of times to check if it was an installation problem, but it was of no use. I tried accesing it from my friends pc, but with no luck. I contacted yahoo support via email couple of days back, but still i haven received any reply from them. Please help me out to fix this problem. Is there anything i missed out?
View 2 Replies
ADVERTISEMENT
Sep 4, 2007
Because phpmyadmin on powervps'directadmin doesnt support phpMyAdmin - 2.10.3 version, so I have to install it by my self. I read the instruction in here
[url]
But I dont understand.
First of all: How can I upload the file to directory /var/tmp?
2, when I type the command below, it did not work:
# cd /home/httpd/SSLSERVER-443/html
# tar zxvf /var/tmp/phpMyAdmin-2.7.0-pl1.tar.gz
# mv phpMyAdmin-2.7.0-pl1 phpMyAdmin
And the following commands did not work too.
I really need the version above to run my database. The current phpmyadmin does not support it and that why my database got error when I was trying to restore.
View 2 Replies
View Related
Jun 4, 2007
I just upgraded to Debian from RedHat, but I'm a little lost trying to get phpMyAdmin working. Below is a snapshot of my config.
I'm sure I'm missing something.
looks like I have the packages...
debianlinux [/root] # dpkg -l | grep php
ii libapache-mod-php5 5.2.0-8+etch4
ii libapache2-mod-php4 4.4.4-8+etch2
ii php4-common 4.4.4-8+etch2
ii php5-common 5.2.0-8+etch4
ii php5-gd 5.2.0-8+etch4
ii php5-mcrypt 5.2.0-8+etch4
ii php5-mysql 5.2.0-8+etch4
ii phpmyadmin 2.9.1.1-3
am I missing any apache modules?
debianlinux [/etc/apache2] # apache2ctl -t -D DUMP_MODULES
Loaded Modules:
core_module (static)
log_config_module (static)
logio_module (static)
mpm_prefork_module (static)
http_module (static)
so_module (static)
alias_module (shared)
auth_basic_module (shared)
authn_file_module (shared)
authz_default_module (shared)
authz_groupfile_module (shared)
authz_host_module (shared)
authz_user_module (shared)
autoindex_module (shared)
cgi_module (shared)
dir_module (shared)
env_module (shared)
mime_module (shared)
python_module (shared)
negotiation_module (shared)
perl_module (shared)
php4_module (shared)
setenvif_module (shared)
status_module (shared)
Syntax OK
here is my short and sweet apache2.conf
debianlinux [/etc/apache2] # cat apache2.conf
ServerRoot "/etc/apache2/"
ServerName debianlinux
LockFile /var/lock/apache2/accept.lock
PidFile /var/run/apache2.pid
Timeout 300
KeepAlive On
MaxKeepAliveRequests 100
KeepAliveTimeout 15
<IfModule mpm_prefork_module>
StartServers 5
MinSpareServers 5
MaxSpareServers 10
MaxClients 150
MaxRequestsPerChild 0
</IfModule>
<IfModule mpm_worker_module>
StartServers 2
MaxClients 150
MinSpareThreads 25
MaxSpareThreads 75
ThreadsPerChild 25
MaxRequestsPerChild 0
</IfModule>
User apache2
Group apache2
AccessFileName .htaccess
<Files ~ "^.ht">
Order allow,deny
Deny from all
</Files>
TypesConfig /etc/mime.types
DefaultType text/plain
HostnameLookups Off
ErrorLog /var/log/apache2/error.log
LogLevel warn
Include /etc/apache2/mods-enabled/*.load
Include /etc/apache2/mods-enabled/*.conf
Include /etc/apache2/ports.conf
Include /etc/apache2/conf.d/
LogFormat "%h %l %u %t "%r" %>s %b "%{Referer}i" "%{User-Agent}i"" combined
LogFormat "%h %l %u %t "%r" %>s %b" common
LogFormat "%{Referer}i -> %U" referer
LogFormat "%{User-agent}i" agent
ServerSignature Off
<IfModule alias_module>
Alias /icons/ "/usr/share/apache2/icons/"
<Directory "/usr/share/apache2/icons">
Options Indexes MultiViews
AllowOverride None
Order allow,deny
Allow from all
</Directory>
</IfModule>
<IfModule mod_autoindex.c>
IndexOptions FancyIndexing VersionSort HTMLTable NameWidth=*
DefaultIcon /icons/blank.gif
ReadmeName README.html
HeaderName HEADER.html
IndexIgnore .??* *~ *# RCS CVS *,v *,t
</IfModule>
<IfModule mod_mime.c>
AddType application/x-compress .Z
AddType application/x-gzip .gz .tgz
</IfModule>
<IfModule mod_mime.c>
AddCharset us-ascii .ascii .us-ascii
AddCharset ISO-8859-1 .iso8859-1 .latin1
AddHandler type-map var
AddType text/html .shtml
AddOutputFilter INCLUDES .shtml
</IfModule>
Include /etc/apache2/sites-enabled/
Include /etc/phpmyadmin/apache.conf
I can hit my default site okay, which in in /root (for testing)
debianlinux [/etc/apache2/sites-available] # cat default
NameVirtualHost *
<VirtualHost *>
ServerAdmin webmaster@localhost
DocumentRoot /root/public_html/
<Directory /root/public_html/>
Options FollowSymLinks
AllowOverride None
</Directory>
<Directory /root/public_html/>
Options Indexes FollowSymLinks MultiViews
AllowOverride None
Order allow,deny
allow from all
</Directory>
ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/
<Directory "/usr/lib/cgi-bin">
AllowOverride None
Options ExecCGI -MultiViews +SymLinksIfOwnerMatch
Order allow,deny
Allow from all
</Directory>
ErrorLog /var/log/apache2/error.log
LogLevel warn
CustomLog /var/log/apache2/access.log combined
Alias /doc/ "/usr/share/doc/"
<Directory "/usr/share/doc/">
Options Indexes MultiViews FollowSymLinks
AllowOverride None
Order deny,allow
Deny from all
Allow from 127.0.0.0/255.0.0.0 ::1/128
</Directory>
</VirtualHost>
what about phpMyAdmin configuration?
debianlinux [/etc/phpmyadmin] # ls -la
total 44
drwxr-xr-x 2 root root 4096 2007-06-02 06:54 .
drwxr-xr-x 72 root root 4096 2007-06-03 10:59 ..
-rw-r--r-- 1 root root 654 2007-06-02 06:34 apache.conf
-rw-r--r-- 1 root root 205 2007-06-02 06:35 apache.conf.beta
-rw-r----- 1 root www-data 63 2007-05-29 05:39 blowfish_secret.inc.php
-rw-r--r-- 1 root root 170 2007-05-29 05:39 config.footer.inc.php
-rw-r--r-- 1 root root 170 2007-05-29 05:39 config.header.inc.php
-rw-r--r-- 1 root root 5943 2007-05-29 05:39 config.inc.php
-rw-r--r-- 1 root root 1542 2007-06-02 06:35 htaccess
-rw-r----- 1 root www-data 8 2007-05-29 05:39 htpasswd.setup
here is contents of config.inc.php
<?php
$i = 0;
$i++;
$cfg['Servers'][$i]['host'] = 'localhost'; // MySQL hostname or IP address
$cfg['Servers'][$i]['port'] = ''; // MySQL port - leave blank for default port
?>
all the phpmyadmin files are in /usr/share/phpmyadmin - any config tasks here?
View 8 Replies
View Related
Mar 2, 2007
This should be a routine walk in the park job for me but for some reason this time the phpmyadmin installation on debian is giving me so much trouble. I have installed it numerous times with no issues.
I am trying phpmyadmin installation the usual way, "apt-get install phpmyadmin" but no matter what I do I keep getting "500 Internal Server Error".
My mysql server has a root password.
I know debian well and they wont put a package up which has not been tested well so I am surprised phpmyadmin is not working properly on the basic installation.
I have been trying to make it work for 3 days now and as a last resort I am coming here to see if someone can shed some light on the issue.
View 4 Replies
View Related
Nov 4, 2008
Unfortunately yahoo blocked our server ip, so our customer cant send any email to yahoo!
How can fix this issue? Do you have any email or ticket system in yahoo for contant about this issue?
View 4 Replies
View Related
Apr 14, 2008
I run an small social netwroking web site.
I just checked and it looks like yahoo dont accept emails from my server.
so is there any way i send those bulk emails to those users or my web site from another mail service prodider so that delivery guaranted?
informing my users who has yahoo mail account about updates etc..
i have dedicated server and cpanel.
View 3 Replies
View Related
Sep 11, 2008
im using old htm pages work with php which works on localhost, but upon upload to yahoo server i need to upload a revised .htaccess which yahoo restricts
how can i read my htm pages in yahoo to work or read php in it?
other options that will work in yahoo?
View 4 Replies
View Related
Feb 13, 2008
i've new server with 2 ips ,
i can't send emails to hotmail
i made spf , domainkey , rDNS
everything is ok , i contacted Hotmail to be part of SenderId program ,and told me 2 days and sending will be ok , i waited for 10 days , till now every new member can't recive ctivation email , what shall i do ??????
My server not open relays ... Not in blacklist ....
View 14 Replies
View Related
Jul 1, 2009
i have problem in my server from 2 weeks ago server stop sending mail to yahoo and hotmail but to gmail send good without any problem i make SPF and add it for all domains after that mail worked Good in 1 day after that the problem come again
View 14 Replies
View Related
Jun 6, 2009
i have problem when send mail from my server to hotmail or yahoo server not send and all mail see it in mail Queue
i make
stop for exim and make
/scripts/eximup --force
after exim install and finished when send 1 mail the mail arrive good without any problem when send again server not send and the problem still again
View 5 Replies
View Related
Jun 5, 2008
i own a dedicated server with cpanel. i have SPF record in my domain and still emails sent from outlook are placed in spam folder by yahoo? how to fix this problem?
View 4 Replies
View Related
Mar 17, 2009
Recently, i upgraded my WAMP from WampServer2.0f to WampServer2.0g.
I uninstalled WampServer2.0f and then only installed WampServer2.0g.
I can access [url] and i can see under my tools section that there is a link to phpMyadmin which points to [url]
I get the error: Forbidden - You don't have permission to access /phpmyadmin/ on this server whenever i try to access phpMyadmin.
Additional Info:
My WAMP icon is white.
I tried Restarting all services but nothing helped.
I have a folder called phpmyadmin3.1.3 which is located inside C:wampapps.
The version of MySQL on my localhost is 5.1.32 (How do i know this? I clicked on my WAMP icon, pointed to MySQL --> Version and it displayed a checked mark on 5.1.32).
Did some homework, and people say that there may be a problem with the phpmyadmin.conf file. It's located in my C:wampalias
Can that file be edited phpmyadmin.conf?
I havent tried uninstalling and reinstalling WAMP. I'll do that as a last resort (and i don't know if that will fix things).
View 2 Replies
View Related
Mar 3, 2008
Basically, my client don't like yahoo as their host for their website, but wants to keep their "Yahoo! Business Mail". How can I do this without doing any "forwarding"?
They will be using Dreamhost to host their website.
View 1 Replies
View Related
Jul 14, 2008
I have two whm cpanel servers on one provider and they both reporting same
error when i click on phpmyadmin on whm:
#2002 - The server is not responding (or the local MySQL server's socket is not correctly configured)
View 4 Replies
View Related
Mar 11, 2009
I cannot figure this out.. I have tried EVERYTHING..
I am running a php script using the mail() function and sending an email..
I have had reverse dns point to the domain
I set an SPF record
My IP is not blacklisted.. I have had the dedicated server for 2 years now also
I modified a few things in the sendmail files.. I am stuck..
I am running freeBSD.. My buddy has his server set up with all of the same sendmail settings being the same.. and his emails don't get flagged..
View 10 Replies
View Related
Apr 13, 2015
Every time my server tries to send mail to Gmails/yahoos - they reject it with the following message:
Code:
Apr 13 11:35:49 m1370 plesk sendmail[5009]: handlers_stderr: PASS
Apr 13 11:35:49 m1370 plesk sendmail[5009]: PASS during call 'limit-out' handler
Apr 13 11:35:49 m1370 plesk sendmail[5009]: handlers_stderr: SKIP
Apr 13 11:35:49 m1370 plesk sendmail[5009]: SKIP during call 'check-quota' handl er
Apr 13 11:35:49 m1370 postfix/pickup[1759]: C90FA61668: uid=48 from=<apache>
[Code] ....
I tried Qmail, same issue
Code:
Hi. This is the qmail-send program at m1370.contabo.
I'm afraid I wasn't able to deliver your message to the following addresses.
This is a permanent error; I've given up. It didn't work out.
<emailhere@gmail.com>:
2a00:1450:4013:0c00:0000:0000:0000:001b failed after I sent the message.
[Code] .....
Centos 6.6 + Plesk 12 Web Pro Edition
My server certainly did not spam Gmail servers, (my old server works fine sending email t gmail) I fear this has something to do with my "Postfix" configuration.
View 1 Replies
View Related
Sep 9, 2014
I deleted Nginx web server and reverse proxy support from Plesk. There is no this service on server, but I still see on the web server informations like nginx/1.6.0 at phpmyadmin page.
View 6 Replies
View Related
Aug 5, 2007
how to install VNC server such as TightVNC on linux server remotely?
i can access my server only through ssh. (putty).
is there a way to install VNCserver in linux over ssh?
View 12 Replies
View Related
Jul 19, 2015
Is it possible to install Plesk 12 to Debian Jessie with the autoinstall script?
View 7 Replies
View Related
Oct 26, 2009
I am having a new server installed and i wonder what i should have installed before it goes live
Thinking, Zend optimizer, ioncube, ffmpeg, zip file upload
View 7 Replies
View Related
Jun 24, 2008
I'm trying to install "Wowza" on my new dedicated server from iWeb. Im not familiar with installing something on a dedicated server so i was hoping for some help.
If you click the link below and click the "Linux install" (i have Enterprise Linux centOS) then next to the download now button you see:
To install:
sudo chmod +x WowzaMediaServerPro-1.5.0.tar.bin
sudo ./WowzaMediaServerPro-1.5.0.tar.bin
LINK: http://www.wowzamedia.com/store.html
I have putty which that looks like a requirement. But do i upload the download to the server? how exactly? then just type those two lines with the install file in the home directory?
View 9 Replies
View Related
Jul 15, 2007
i have one server
Processor #1 Vendor: GenuineIntel
Processor #1 Name: Intel(R) Pentium(R) D CPU 2.66GHz
Processor #1 speed: 2661.142 MHz
Processor #1 cache size: 1024 KB
Processor #2 Vendor: GenuineIntel
Processor #2 Name: Intel(R) Pentium(R) D CPU 2.66GHz
Processor #2 speed: 2661.142 MHz
Processor #2 cache size: 1024 KBand 1 gig memory.
i want install openvz on my server
i read the content but don`t understand http://wiki.openvz.org/Quick_installation
View 10 Replies
View Related
May 18, 2009
I want to install the application (if it is an application) on my Win 2003 dedicated so I can run PHP scripts.
If I go to this page:
[url]
there are a number of files, not sure which one I should download. Once downloaded, where do I put it, in Program Files? Is there an .exe file or something I should double click on to install it? Or id this supposed to be install on IIS?
View 14 Replies
View Related
Dec 28, 2008
So I have a website that requires a service be installed on the server (Wowza media server). I'm just not sure what I need to be able to do this. The service will get little use overall, but it is required.
From what I can tell this means I need some form of dedicated server, but that is an awfully large jump in cost when I get minimal use out of the service. That said, if it is the only option I will go for it.
So my question is, are there any options aside from dedicated servers that would let me install a service? If not, how cheap do you think I could get a dedicated server for?
View 14 Replies
View Related
Oct 7, 2008
i installed xampplite and wordpress in it. my default theme is working properly in my local host. and its not working in my server. am using byet host free server. can anybody help me how to install word press in my server. i already all the files inside wordpress to my server......
View 5 Replies
View Related
Oct 22, 2007
Over the last few days I have spent many hours trying to install a web server onto my Windows XP Pro computer.
First attempt was to try XAMPPlite. It made a total mess of the config files with incomplete entries all over the place. I spent several hours trying to find and fix them but in the end gave up as it still didn't work and I had run out of ideas on which config files to rewrite.
Seconf attempt WAMP5. It managed to get more of the config files right that I had to repair in XAMPP but didn't turn on the .htaccess support and still had the same problem with not being able to run SQL in phpMyAdmin as I couldn't find a solution to with XAMPP.
Does anyone know of a combination package for these products that actually works or should I just do it the easy way with a separate install for each component?
View 3 Replies
View Related
Jun 25, 2008
For several months the Yahoo bot had been controlled to one visit per 40 seconds with a robots.txt page. Today it is not working and creating several page impressions per minute.
Has anyone seen any new advice on how to control this pesky creature?
This is the file content I have been using:
User-agent: Slurp
Crawl-delay: 40
User-agent: *
Disallow:
View 4 Replies
View Related
Nov 7, 2007
i'v see a subject for Nmap tool and how to scan servers for any Vulnerability and ports ...
so please some Expert in this to help me in install it here ...
View 14 Replies
View Related
Jun 2, 2009
I want to use (Microsoft SQL Server 2005 "on my PC") to conect with my database on my VPS linux, but I can't
View 5 Replies
View Related
Apr 19, 2009
how to install shared ssl in cpanel server
View 2 Replies
View Related
Jun 30, 2008
How to install mrtg on a cpanel server?
I followed the tutorial on [url]but it didn't work
View 3 Replies
View Related