Search found 25 matches

by Geteburg
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...
by Geteburg
Thu Jan 08, 2009 1:37 pm
Forum: Databases
Topic: 'news feed' like db structure
Replies: 1
Views: 389

'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 ...
by Geteburg
Mon Sep 08, 2008 7:14 am
Forum: PHP - Code
Topic: send message to skype user with php
Replies: 2
Views: 2215

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..
by Geteburg
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:

Code: Select all

apache2ctl -l
If its not installed, you will have to add it, if it is installed then i have no idea what the problem is. :)
by Geteburg
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.
by Geteburg
Mon Aug 18, 2008 9:00 am
Forum: Installation and Configuration
Topic: FTP in PHP
Replies: 1
Views: 743

Re: FTP in PHP

There's really no better way to transfer files to server then FTP.
by Geteburg
Sun Aug 17, 2008 4:48 am
Forum: Installation and Configuration
Topic: Fresh ispconfig installation on Debian Etch
Replies: 1
Views: 844

Re: Fresh ispconfig installation on Debian Etch

configure: error: Cannot find OpenSSL's <evp.h>
Try to install openssl-dev..
by Geteburg
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 :D
by Geteburg
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...
by Geteburg
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: 1049

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...
by Geteburg
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.. :lol:
by Geteburg
Fri Aug 15, 2008 3:17 am
Forum: PHP - Code
Topic: PHP noob question :P
Replies: 6
Views: 346

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.
by Geteburg
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-...
by Geteburg
Fri Aug 15, 2008 1:46 am
Forum: PHP - Code
Topic: Repeat script x number of times?
Replies: 7
Views: 1249

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...
by Geteburg
Fri Aug 15, 2008 1:34 am
Forum: PHP - Code
Topic: how to send email to client with php form
Replies: 1
Views: 140

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