Search found 245 matches

by kkonline
Tue Oct 07, 2008 9:55 am
Forum: Databases
Topic: killing a process?
Replies: 1
Views: 365

killing a process?

Hi, suddenly there is a too many connections 1040 on my site to access phpmyadmin. on doing a SHOW PROCESSLIST; from backend it seems that one of the process has misbehaved and it starting the connections; so how do i kill the processes I get something like mysql> SHOW PROCESSLIST; +-------+--------...
by kkonline
Tue Oct 07, 2008 9:23 am
Forum: Databases
Topic: Too Many Connections
Replies: 0
Views: 297

Too Many Connections

Hi everyone! I am using Joomla 1.0.x and have ISPconfig Installed on my vps server. However since past few days I get the following message when accessing phpmyadmin phpMyAdmin - Error #1040 - Too many connections and on the homepage I get Joomla! Logo Site-Name This site is temporarily unavailable....
by kkonline
Sat Sep 27, 2008 7:24 am
Forum: PHP - Code
Topic: Can't Open Directory, fopen warning
Replies: 2
Views: 460

Re: Can't Open Directory, fopen warning

The issue has been resolved. The dir is 777 and the contents within which were 644 have now been chmoded to 666 and now it's fine.
by kkonline
Sat Sep 27, 2008 5:06 am
Forum: PHP - Code
Topic: Can't Open Directory, fopen warning
Replies: 2
Views: 460

Can't Open Directory, fopen warning

Hi, I am working on a rss aggregator script. however when I installed the same set of scripts on 1 webhost it works perfectly fine; however on another host of mine i get the following error PHP Warning:  fopen(/home/mysite/public_html/news/.rss.html) [<a href='function.fopen'>function.fopen</a>]: fa...
by kkonline
Sun Sep 21, 2008 2:53 am
Forum: PHP - Code
Topic: pdf indexing for search
Replies: 1
Views: 116

pdf indexing for search

Hi,
I have a lot of pdf on my site and I want them to be indexed in the search results; what options do I have ; Is there a standard solution available for doing the same?

I am using Joomla 1.0 if this would be of any help.
by kkonline
Sun Sep 07, 2008 10:20 am
Forum: PHP - Code
Topic: Adding bcc in mail function
Replies: 1
Views: 95

Adding bcc in mail function

Hi ,
I want to add a bcc to all the mails which are sent inorder to keep a track of them.

mail($email_to,$subj,$temp,$adds);

how to add bcc in this?
by kkonline
Sat Sep 06, 2008 8:56 am
Forum: PHP - Code
Topic: ioncube issues
Replies: 1
Views: 90

ioncube issues

I have a script encoded with ioncube but on my script it shows Site error: the file /var/www/web1/classes/setupclass.php requires the ionCube PHP Loader ioncube_loader_lin_5.2.so to be installed by the site administrator. although in php.ini i have mentioned zend_extension=/usr/local/lib/ioncube/ion...
by kkonline
Mon Sep 01, 2008 11:41 pm
Forum: PHP - Code
Topic: Ion cube loader
Replies: 1
Views: 167

Ion cube loader

Hi all, I have recently installed a php based script(on debian etch) which is indeed ion cube decoded; when i run it's installation script i receive Site error: the file /www/classes/setupclass.php requires the ionCube PHP Loader ioncube_loader_lin_5.2.so to be installed by the site administrator. S...
by kkonline
Sun Aug 31, 2008 2:58 pm
Forum: Databases
Topic: Merging Unique emails from 2 tables
Replies: 4
Views: 412

Re: Merging Unique emails from 2 tables

Issue solved with the following code

Code: Select all

INSERT INTO invites
SELECT invites_test.*
FROM invites_test
LEFT OUTER JOIN invites
ON invites.email = invites_test.email
WHERE invites.email IS NULL
Thanks
by kkonline
Sun Aug 31, 2008 10:16 am
Forum: Databases
Topic: Merging Unique emails from 2 tables
Replies: 4
Views: 412

Re: Merging Unique emails from 2 tables

Hi, the query (SELECT DISTINCT    invites.email  FROM    invites,  WHERE    invites.email NOT IN (      SELECT DISTINCT        invites_test.email      FROM        invites_test      )  )  UNION (SELECT DISTINCT   invites_test.email  FROM    invites_test,  WHERE    invites_test.email NOT IN (     SELE...
by kkonline
Sun Aug 31, 2008 9:49 am
Forum: Databases
Topic: Merging Unique emails from 2 tables
Replies: 4
Views: 412

Merging Unique emails from 2 tables

Hi community, I have Table 1 and Table2 both having unique emails within them. Table 1 being the main email Container, I want INTERSECTION of Table 1 and Table2 and the UNIQUE emails between the two should be moved to Table 1. So now that Table 1 should have All the Unique Emails within itself and a...
by kkonline
Sat Aug 16, 2008 7:40 am
Forum: Installation and Configuration
Topic: Fresh ispconfig installation on Debian Etch
Replies: 1
Views: 840

Fresh ispconfig installation on Debian Etch

General settings checking whether to include gcov symbols... no checking whether to include debugging symbols... no checking layout of installed files... PHP checking path to configuration file... /root/ispconfig/php checking where to scan for configuration files... checking whether to enable safe ...
by kkonline
Mon Aug 11, 2008 1:12 pm
Forum: Installation and Configuration
Topic: ispconfig on debian etch
Replies: 2
Views: 1025

ispconfig on debian etch

Hi,
I am on a vps server and want to install a GUI based control panel. ISPconfig being the most talked about however i am unable to find a tutorial which helps you with step by step installation on debian 4; would appreciate if you could help me
by kkonline
Sun Aug 10, 2008 8:14 am
Forum: Installation and Configuration
Topic: MAil server configuration
Replies: 0
Views: 553

MAil server configuration

Hi, . We have hosted our website on an unmanaged vps server and have ordered the domain from a domainprovider. Our aim is to setup smtp server on the site so as to enable sending of mails using the same vps server. From the domain provider we have received 2 nameserver host and ip ex. ns1.domainprov...
by kkonline
Sun Aug 10, 2008 6:19 am
Forum: Installation and Configuration
Topic: Configuring nameserver
Replies: 0
Views: 557

Configuring nameserver

we have a separate domain name hosting and domain space (vps hosting) The domain name has given ns1.mysite.com and ns2.mysite.com and the hosting has given the satic ip of the server. The aim is to create a mailserver in order send mails using the hosting. I have installed bind9 for dns and during i...