News:

LVCS.NET offers low cost domain registration services.

Main Menu
Menu

Show posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

Show posts Menu

Topics - jonano

#1
Support Requests / Bad certificate for PRETP2p.com
November 09, 2008, 11:36:43 PM
if you go to:

https://208.109.218.24/

or

https://pretp2p.com

or

http://208.109.218.24/ or http://pretp2p.com (the logo of pretp2p is there right?)

on s, You will see a certificate error, can it be corrected?

Also why I dont see like on paypal, another small box beside the url bar ? are the SSL Certificate are certificated by VeriSign as well? Can we put a seal on our site, from godaddy or something?

--Jon
#2
I have a problem using the session, I get this problem:

Call to undefined function session_start()

anyone know how to fix it? ed?
#3
Support Requests / mail() function
May 27, 2008, 09:34:55 PM
Hi

When I use many many email in my mail() function, I dont receive any email, I use a seed/test email in the middle of emails.

But when I put only 1 email or 2 or 5 it works good I receive the email.

Do you know if LVCS.net is putting a limit with the mail() function?

here is the code I use:

$post = $_POST["emails"];
preg_match_all('^([_a-z0-9-]+)(\.[_a-z0-9-]+)*@([a-z0-9-]+)(\.[a-z0-9-]+)*(\.[a-z]{2,4})^', $post, $matches);

if(isset($matches)) {

$mfa = implode(", ", $matches[0]);

$from = 'From: invitezvosamis@pretp2p.com';
$to = $mfa;
$subject = 'Vous êtes invité sur PRETp2p.com!';
$message = "Vous avez été invité par l'un de vos ami(e) à découvrir le service web PRETp2p.com, www.pretp2p.com";
mail($to,$subject,$message,$from);

--Jon
#4
Support Requests / what's the limit of mail();
May 11, 2007, 06:03:55 PM
what's the number of emails we can send with mail(); the limit..

--Jon
#5
Support Requests / mail, importing, phpfm
May 10, 2007, 02:06:27 PM
phpfm should be improved for freepgs users. like we should be able to see the number of each line in the phpfm file with the code.

is it easy to import emails from yahoo, gmail, live/msn, and then invite them to vote on a freepgs web site ? Would it be considered as spam ? Facebook/Orkut is doing it so why not us ? Also is it easy to implement, I imagine so.

next question is, how to mail to many email with mail(); ?

last question is can we handle cash on freepgs ? with visa mastercard and amex ? because Im doing a person to person lending marketplace. Can I also use secure browsing ? ssl.

Thanks for your answers,

--Jon
#6
here is my code, let me know what you think about it, but when I email to an hotmail account I dont receive the message, any hint why ? I receive the thanks message in my gmail account however, but not the your received message on the hotmail account:

<html><head><title>User Comments</title></head>

<?php session_start(); ?>

<?php

include ("mysql.php");

if(isset($_SESSION['user'])) {

$userc = mysql_real_escape_string($_GET['userc']);

$sqlupc = "INSERT INTO user_comments (user, userfrom, comment) VALUES ('$userc', '$user', '$comment')";

$sqlemailc = "SELECT email FROM tbl_auth_user WHERE user_id = '$userc'";

$result = mysql_query($sqlemailc);

while ($line = mysql_fetch_assoc($result)) {$email = $line["email"];}

if ($user == $userc) {}

else {

mail("$email", "You received a message on AVAKL from $user", "$userc, You received a message from $user\n\n You can take a look to your comments page: http://{$_SERVER['SERVER_NAME']}/usercomments.php?userc=$userc", "From: $emailu", "Reply-To: $emailu");

}

$sqlemailcu = "SELECT email FROM tbl_auth_user WHERE user_id = '$user'";

$resultu = mysql_query($sqlemailcu);

while ($lineu = mysql_fetch_assoc($resultu)) {$emailu = $lineu["email"];}

if ($user == $userc) {}

else {

mail("$emailu", "Thanks", "$user, message sent to $userc\n\n You can take a look to the comments page:

http://{$_SERVER['SERVER_NAME']}/usercomments.php?userc=$userc", "From: $email", "Reply-To: $email");

}

if(isset($_POST['comment'])) {mysql_query($sqlupc);}

$comment = mysql_real_escape_string($_POST['comment']);

header('Location: usercomments.php?userc='.$userc);
      exit;

}

if(!isset($_SESSION['user'])) {

include "login.php";
  echo "<center>You need to log in or <a href=\"signup.php\">register</a> to access our site. You are currently not.</center>";
exit;
}

?>
#7
Support Requests / is my mail function enabled?
April 28, 2007, 05:54:07 AM
is my code or my hosting provider mail function not enabled ? I dont receive any email.

here is my code, which is basic:

include("mysql.php");

$username = mysql_real_escape_string($_POST['user']);
$password = mysql_real_escape_string($_POST['password']);
$email = mysql_real_escape_string($_POST['email']);
$name = mysql_real_escape_string($_POST['name']);
$phone = mysql_real_escape_string($_POST['phone']);
$confirm = mysql_real_escape_string($_POST['confirm']);

$message = "Welcome to blabla.com, your login name is $username and your password is $password";

$sql = "INSERT INTO tbl_auth_user (user_id, user_password, email, name, phone) VALUES ('$username', '$password', '$email', '$name', '$phone')";

mysql_query($sql) or die('This username is already taken');

mail('$email', 'Welcome to blabla', $message);
#8
Support Requests / Animation.aspx on Freepgs Server
April 09, 2007, 06:25:16 AM
Hi

has anyone built a web site in ajax?

here I can't see the page working:
http://p2plending.ca/Animation.aspx

why I can't see the page and only the source code ?
#9
Is it possible to moderate comments before they are posted in phpnuke ? anyone can help me on this ?
#10
http://pastebin.ca/385844

this is my code, what should I add to see the text of my news in the rss file ? this is in php
#11
question

do you know why I cant connect to my pop? I want to blog via email.

here you can see:

http://health.freepgs.com/wp-mail.php

Mail server: pop.gmail.com Port:  995
Login name: health.futurismos@gmail.com
Password: password
Default mail category: Breaking News

Is everything correct ? do you know wordpress enough ?
#12
Hi

I want to know where I should put my google adsense script into this smf forum:

http://pureoforum.freepgs.com

any help would be appreciated.

--Jon

#13
Support Requests / I want a new account
October 27, 2006, 05:57:14 AM
Hi

I want a  new account on freepgs I have already 4 accounts on it.

Why it is off ?

--Jon
#14
Support Requests / how do we set emails
September 22, 2006, 04:45:26 AM
hi

i want my own email with my url, how do I do it ?

reply back to jonano@gmail.com

--Jon
#15
Support Requests / how to open a protected flash file
September 08, 2006, 02:42:32 PM
how to open/edit a protected flash file?

Someone know ?

--Jon
#16
Hi

I want to put a counter here:

http://jonathandespres.com/collection2007/

How can I do so if I use this (maybe it could help):
http://www.jonathandespres.com/aws/awstats.pl?config=user

--Jon
#17
Hi,

I have a problem with installing Simple Machine Forum

you can see my forum here:

http://pureoforum.freepgs.com/

What should I do ?

--Jon
#18
Support Requests / Emails
May 24, 2006, 02:45:18 AM
Hi,

How do I create an email account for me, example: admin@jonathandespres.com ?

--Jon
reply back to jonano@gmail.com
#19
when I go to:

www.jonathandespres.com

I see this error:

You are receiving this error because the domain you have attempted to view
has not been associated to a users FreePgs account.

Can you fix the problem for me ?

My user is jonathandespres
#20
Hi,

I want to know how to show some images on my forum here:

http://www.futurism.biz/forum/index.php

You can see some broken images there, how can I fix that? Do you know ?

--Jon