Search found 25 matches
- Sun Dec 20, 2009 10:09 am
- Forum: PHP - Code
- Topic: Checking JavaScript properly installed, Google like
- Replies: 0
- Views: 285
Checking JavaScript properly installed, Google like
Hey guys, Was installing a A/B split testing JS that Googles Website Optimizer offers for a friend and I saw something that was curious about. When you add JS that google creates for your website, Google basically fetches the website in question and checks if javascript is properly installed. Any id...
- Thu Jan 08, 2009 1:37 pm
- Forum: Databases
- Topic: 'news feed' like db structure
- Replies: 1
- Views: 388
'news feed' like db structure
Hey I was just on Facebook website and for some reason i got interested in their "news feed" feature. It got me thinking on how on earth do they do that. I know that they have HUGE hardware behind it and use caching, but still. Come to think about it now, you have other website that offer ...
- Mon Sep 08, 2008 7:14 am
- Forum: PHP - Code
- Topic: send message to skype user with php
- Replies: 2
- Views: 2214
Re: send message to skype user with php
Googled it yet?
http://www.google.com/search?source=ig& ... gle+Search
Did a quick look at few results, and if you can make a call and monitor it from PHP i'm sure you can send message.
Check the results..
http://www.google.com/search?source=ig& ... gle+Search
Did a quick look at few results, and if you can make a call and monitor it from PHP i'm sure you can send message.
- Mon Aug 18, 2008 11:11 am
- Forum: Installation and Configuration
- Topic: awstats setup
- Replies: 4
- Views: 1790
Re: awstats setup
Check if its installed by running:
If its not installed, you will have to add it, if it is installed then i have no idea what the problem is. 
Code: Select all
apache2ctl -l- Mon Aug 18, 2008 9:04 am
- Forum: Installation and Configuration
- Topic: awstats setup
- Replies: 4
- Views: 1790
Re: awstats setup
Check if mod_alias (httpd.conf) is enabled on LIVE server. Can't think of anything else if you did the same set up as on test server.
- Mon Aug 18, 2008 9:00 am
- Forum: Installation and Configuration
- Topic: FTP in PHP
- Replies: 1
- Views: 742
Re: FTP in PHP
There's really no better way to transfer files to server then FTP.
- Sun Aug 17, 2008 4:48 am
- Forum: Installation and Configuration
- Topic: Fresh ispconfig installation on Debian Etch
- Replies: 1
- Views: 842
Re: Fresh ispconfig installation on Debian Etch
Try to install openssl-dev..configure: error: Cannot find OpenSSL's <evp.h>
- Fri Aug 15, 2008 8:35 am
- Forum: PHP - Security
- Topic: HELP My site is being used for this -- What is it?
- Replies: 8
- Views: 1834
Re: HELP My site is being used for this -- What is it?
It does, it block the connection to it
But when it does that and shows Alert window, it also screams ALERT, ALERT,... Of course you can disable that, but hey 
- Fri Aug 15, 2008 8:34 am
- Forum: PHP - Security
- Topic: restrict php includes in a directory
- Replies: 9
- Views: 2068
Re: restrict php includes in a directory
Ah.. Missed the part where he says about users having account on his server. Anyways, disabling PHP in tmp folder is very good thing to have! Actually, disabling executing any kind of scripts in /tmp folder is good! Other then that all i can say is that you disable some common functions (php.ini) th...
- Fri Aug 15, 2008 3:34 am
- Forum: Installation and Configuration
- Topic: Can anyone help with MSSQL or Oracle installation on PHP?
- Replies: 3
- Views: 1048
Re: Can anyone help with MSSQL or Oracle installation on PHP?
Hello, SQL Server - Downloaded & Installed Microsoft SQL Server 2005 Express (version 2008 requires a SP1 for .NET Framework 3.5, but the patch does not work under x64, so I had to use v2005). From http://www.php.net/manual/en/mssql.setup.php Note: In Windows, the MSSQL extension does not suppo...
- Fri Aug 15, 2008 3:27 am
- Forum: PHP - Security
- Topic: HELP My site is being used for this -- What is it?
- Replies: 8
- Views: 1834
Re: HELP My site is being used for this -- What is it?
Did you check your logs also? You could probably see how he got in by looking at logs. Firewall is active? No PHP scripts running?
ghurtado, that link made my anti-virus go ALERT, ALERT... while having headset on, full volume.. Almost crap my pants cause of it..
ghurtado, that link made my anti-virus go ALERT, ALERT... while having headset on, full volume.. Almost crap my pants cause of it..
- Fri Aug 15, 2008 3:17 am
- Forum: PHP - Code
- Topic: PHP noob question :P
- Replies: 6
- Views: 345
Re: PHP noob question :P
You can't! PHP is server-side language which means that its run on server and not on client side. ONCLICK and similar stuff can be used with client-side language like JavaScript.
- Fri Aug 15, 2008 2:04 am
- Forum: PHP - Security
- Topic: restrict php includes in a directory
- Replies: 9
- Views: 2068
Re: restrict php includes in a directory
If by /tmp you mean linux /tmp location, then you can add to fstab to not execute ANY code from that folder. If you mean some random /tmp folder like /home/user/tmp, then kill PHP executing with the help of .htaccess for the dir you want. Create .htaccess file and add this: RemoveType application/x-...
- Fri Aug 15, 2008 1:46 am
- Forum: PHP - Code
- Topic: Repeat script x number of times?
- Replies: 7
- Views: 1247
Re: Repeat script x number of times?
<?php $result = ''; for($i=0; $i < 10; $i++) // everything inside { } will be executed 10 times { // create a new cURL resource $ch = curl_init(); // set URL and other appropriate options curl_setopt($ch, CURLOPT_URL, "http://www.example.com"); curl_setopt($ch, CURLOPT_RETURNTR...
- Fri Aug 15, 2008 1:34 am
- Forum: PHP - Code
- Topic: how to send email to client with php form
- Replies: 1
- Views: 139
Re: how to send email to client with php form
Easiest solution, add his email to TO field.
Code: Select all
$to = "response@vinpkl.com, " . $Visitor_E-mail_Id; // Emails seperated by comma