Go Back   CodingForums.com > Search Forums

Before you post, read our: Rules & Posting Guidelines

Showing results 1 to 23 of 23
Search took 0.07 seconds.
Search: Posts Made By: Inci
Forum: PHP 09-17-2011, 12:48 AM
Replies: 11
Views: 1,101
Posted By Inci
hmmm, that's very strange. did ya tried to start...

hmmm, that's very strange. did ya tried to start from login-exec.php page or you trying from cpanel.php ? login-exec.php must be visited firstly to authorize user firstly.
Forum: PHP 09-17-2011, 12:22 AM
Replies: 11
Views: 1,101
Posted By Inci
whoopsss, sorry my bad, forgot ";" change...

whoopsss, sorry my bad, forgot ";"

change session_start() to session_start();
Forum: PHP 09-17-2011, 12:01 AM
Replies: 4
Views: 876
Posted By Inci
hello again, i already gave you the string ;)) ...

hello again, i already gave you the string ;))


preg_match_all('/<div class="site-body">\s*?<div class="site-content">\s*?<h1>\s*?(.*?)<strong>\(\s*?(.*?)\s*?\)<\/strong>\s*?<\/h1>/s',...
Forum: PHP 09-16-2011, 11:22 PM
Replies: 4
Views: 876
Posted By Inci
Hello, yup, your preg_match is incorrect. ...

Hello, yup, your preg_match is incorrect.

<?php

$string = '
<div class="site-body">
<div class="site-content">
<h1>
I.Am.Number.Four.2011.PPVRip.IFLIX.avi
<strong>( 391.96 MB )</strong>
Forum: PHP 09-16-2011, 11:04 PM
Replies: 11
Views: 1,101
Posted By Inci
Just add session_start() to auth.php ...

Just add session_start() to auth.php


<?php
session_start()
if(!isset($_SESSION['SESS_MEMBER_ID']) || (trim($_SESSION['SESS_MEMBER_ID']) == '')) {
header("location:...
Forum: JavaScript programming 09-16-2011, 10:54 PM
Replies: 2
Views: 420
Posted By Inci
Hello, just add a name to your textarea element...

Hello, just add a name to your textarea element (name="message"). because that script is looking for a textarea field named message and cannot find it - so it not works.

<textarea name="message"...
Forum: Perl/ CGI 10-02-2002, 01:53 AM
Replies: 1
Views: 1,615
Posted By Inci
Hello, okay by the order: 1. I suppose...

Hello,

okay by the order:

1. I suppose you have linux/unix hosting. If it's correct you have to do these steps: you need to have a FULL location to your cgi-bin directory (not just /cgi-bin).....
Forum: Perl/ CGI 09-16-2002, 11:44 PM
Replies: 3
Views: 1,376
Posted By Inci
Hello, well if the string you would like to...

Hello,

well if the string you would like to check for presence of another string located in $string1 variable and checking stuff located in $string2 variable - your regular expression is correct.....
Forum: Perl/ CGI 09-16-2002, 11:36 PM
Replies: 4
Views: 1,331
Posted By Inci
Hello, yup it's true.. i used many hosting...

Hello,

yup it's true.. i used many hosting providers in my life and many of them had AllowOverride set to Yes. So all my htaccess files worked perfectly.. but well call is a good decision too. But...
Forum: Perl/ CGI 09-16-2002, 11:26 AM
Replies: 2
Views: 1,373
Posted By Inci
Hello, look at the postings in that forum -...

Hello,

look at the postings in that forum - you will find the working example..
Forum: Perl/ CGI 09-16-2002, 10:57 AM
Replies: 4
Views: 1,331
Posted By Inci
Hello, You have to use .htaccess file and...

Hello,

You have to use .htaccess file and write to it these two lines
Options +ExecCGI
AddHandler cgi-script pl cgi
then upload this file to the directory where your script reside

thats...
Forum: Perl/ CGI 09-12-2002, 01:42 AM
Replies: 7
Views: 2,040
Posted By Inci
Hello, Well, You have two ways: you can...

Hello,

Well, You have two ways: you can create the file and write your variable into it or open a socket and send the variable to your other script (but it must be hosted on server) by get method....
Forum: Perl/ CGI 09-12-2002, 01:19 AM
Replies: 2
Views: 4,089
Posted By Inci
Hello, nope this is not correct.. actually...

Hello,

nope this is not correct..
actually you have to write something like this:

$MailProgram = '/usr/sbin/sendmail -t';
open MAIL,"|$MailProgram";
print MAIL <<TO_END;
To: $To
From: $From
Forum: XML 09-09-2002, 04:17 PM
Replies: 4
Views: 2,657
Posted By Inci
Hello, well actually the XML is like HTML -...

Hello,

well actually the XML is like HTML - tags, tags... so you must find the specification for XML and go coding ;)

php stuff to be found here
http://www.php.net/manual/en/ref.xml.php

the...
Forum: Perl/ CGI 09-07-2002, 10:15 PM
Replies: 1
Views: 1,624
Posted By Inci
Hello, can you please be more specific and...

Hello,

can you please be more specific and add some lines from your database.
Forum: Perl/ CGI 09-07-2002, 01:37 AM
Replies: 2
Views: 2,279
Posted By Inci
Hello, your home location is very important...

Hello,

your home location is very important for any perl script - perl script must know where to write to.. you must ask your friends for FULL location for your directory - it's not just ...
Forum: Perl/ CGI 09-07-2002, 12:46 AM
Replies: 2
Views: 1,408
Posted By Inci
Hello, the first thing i noted - you have...

Hello,

the first thing i noted - you have not closed defining
$basedir = "/home/ringpla/public_html/text
by ";

so it will $basedir = "/home/ringpla/public_html/text";

second thing i noted:
Forum: Perl/ CGI 09-06-2002, 05:12 PM
Replies: 5
Views: 1,601
Posted By Inci
Hello again.. yup i suppose the whole...

Hello again..

yup i suppose the whole problem is with your template file:
/websites/www.enchantedmountains.org/asp/restaurant.asp

perl by itself cannot understand asp embedded stuff - so you...
Forum: Perl/ CGI 09-01-2002, 07:53 PM
Replies: 5
Views: 1,601
Posted By Inci
Hello, As i see you want to be searched...

Hello,

As i see you want to be searched stuff to be displayed in your site template? But the damned thing won't work.. I have watched your attached file - but actually this wont solve the thing -...
Forum: Perl/ CGI 08-30-2002, 09:08 PM
Replies: 8
Views: 1,685
Posted By Inci
Hello, the first thing i noted: ...

Hello,

the first thing i noted:
$MailProgram = '/usr/sbin/sendmail-t';
which is completely wrong -
$MailProgram = '/usr/sbin/sendmail -t';

other thing i noted:
$MailProgram .= ' -t' if...
Forum: Perl/ CGI 08-30-2002, 08:57 PM
Replies: 5
Views: 1,601
Posted By Inci
Well.. on how i see youre trying to show asp...

Well.. on how i see youre trying to show asp templates in cgi script - this is completely wrong - your cgi script compiling under perl and going to server socket to client and it's never will be...
Forum: Perl/ CGI 08-30-2002, 08:47 PM
Replies: 4
Views: 1,418
Posted By Inci
If you have linux hosting - you will have to...

If you have linux hosting - you will have to upload your script as TEXT (ASCII mode) and set permissions like 700 or 770 (execution) by calling "chmod 700 your script name"

Hope this will help you.
Forum: Perl/ CGI 08-30-2002, 08:40 PM
Replies: 6
Views: 1,631
Posted By Inci
Hello there we go: $msg = "version:...

Hello

there we go:

$msg = "version: 1.2.3.4";
$version = $msg;

#removing a 'version:(and maybe one space )'

$version =~ s/version\:(?:\s)?((\d+)((?:\.\d)+))/$1/i;
Showing results 1 to 23 of 23

 
Forum Jump

All times are GMT +1. The time now is 08:07 AM.