Jump to content

Sandip

Members
  • Posts

    46
  • Joined

  • Last visited

Contact Methods

  • Website URL
    http://www.UltraCorporatePixel.com

Profile Information

  • Gender
    Male
  • Location
    Kolkata, India
  • Interests
    Graphic Design, Web Design.

Sandip's Achievements

Newbie

Newbie (1/14)

2

Reputation

  1. Heliohost Username - sandi565 Server - Stevie Heliohost main domain name - sandi565.heliohost.org I have created amalghosh.tk domain 2 days ago, but it is not showing web page correctly. Can you please solve, what is the problem? I have cleared the cache in Google Chrome.
  2. Heliohost Username - sandi565 Server - Stevie Heliohost main domain - sandi565.heliohost.org I have created a addon domain name - www.UltraCorporatePixel.com, but it is saying "Account Queued" - "Ahoy! You're seeing this page because HelioHost has not gotten about to installing and configuring your account yet". So, can you please install and configure my account and domain name. It is urgent.
  3. Please ignore the above problem. I have solve it by changing all the permission 777 of all folder and file and then I delete one by one.
  4. Use name - sandi565 Website - test-2.sandi565.heliohost.org Hello, I have installed Drupal in test-2.sandi565.heliohost.org - sub-domain name. I want to delete all the folder / files under this, specially the settings.php file. I have tried many times to delete it but it is not going. Why it is not deleting and how to delete it? Or can you please delete it for me.
  5. By auto installer you can install CORE DRUPAL only. I think it is not possible to install Drupal Distribution package i.e. Druapl Open Hotel or Drupal Commerce Kickstart. See this link - https://drupal.org/project/openhotel, https://drupal.org/project/commerce_kickstart
  6. Hello, I want to edit php.ini file. I am installing Drupal - open hotel distribution package in the server. It is saying that max_execution_time 30 is exceeded and so the installation is not completing properly. So, is it possible to edit php.ini file and how?
  7. Does Skrill accept Indian Debit Card/ Credit Card? Do you know how they transfer money from Skrill account to Indian bank account? Does they take some charges to transfer it? What should be the minimum amount for transfer? Does the money when transfer depends on currency fluctuation?
  8. Thanks Logompressive, I am astonished by hearing new payment gateway Skrill. I have done googling and found that it is organization of Moneybrokers. Sure I shall check this. But for 2checkout, there are two problem 1) to withdraw money from 2checkout account, user have to make minimum US$ 300 i.e. Rs.16500. 2) The amount you will get after transfer from 2checout account to bank account it depends on currency fluctuation. So, I think this not a better option. However many thanks to you for your feedback and I am very much eager to check Skrill. Please let me know if you have any other idea.
  9. After customer filling the form, the form data will be send to mysql, and an email will sent to me with the last form data that customer submitted. All is working, but only the problem is in the email "last mysql data" is not going as inline text. So, how to do this? I am doing in PHP. In am new in PHP. Please help me. Sample code is given below. <?php define('DB_NAME', 'sandi565_form11'); define('DB_USER', 'XXXXXXX'); define('DB_PASSWORD', 'XXXXXXX'); define('DB_HOST', 'localhost'); $link = mysql_connect (DB_HOST, DB_USER, DB_PASSWORD); if (!$link) { die('Could not connect: ' . mysql_error()); } $db_selected = mysql_select_db(DB_NAME, $link); if (!$db_selected) { die('Can\'t use ' . DB_NAME . ': ' . mysql_error()); } //Start Posting the data in Mysql database from Form Input $value = $_POST['input1']; $value2 = $_POST['MAmount']; $sql = "INSERT INTO demo (input1, MAmount) VALUES ('$value', '$value2')"; if (!mysql_query($sql)) { die('Error: ' . mysql_error()); } //start print the database $data = mysql_query("SELECT * FROM demo ORDER BY ID DESC LIMIT 1") or die(mysql_error()); Print "<table border cellpadding=3>"; while($info = mysql_fetch_array( $data )) { Print "<tr>"; Print "<th>ID:</th> <td>".$info['ID'] . "</td> "; Print "<th>Input1:</th> <td>".$info['input1'] . "</td> "; Print "<th>MAmount:</th> <td>".$info['MAmount'] . " </td></tr>"; } Print "</table>"; mysql_close(); //end print the database on form processing page //start emailing the data date_default_timezone_set('Asia/Kolkata'); require_once('class.phpmailer.php'); //include("class.smtp.php"); // optional, gets called from within class.phpmailer.php if not already loaded $mail = new PHPMailer(); //$body = "gdssdh"; //$body = preg_replace("[\]",'',$body); $mail->IsSMTP(); // telling the class to use SMTP $mail->Host = "ssl://XXXXXXX.XXXXXXX.org"; // SMTP server $mail->SMTPDebug = 1; // enables SMTP debug information (for testing) // 1 = errors and messages // 2 = messages only $mail->SMTPAuth = true; // enable SMTP authentication $mail->SMTPSecure = "ssl"; // sets the prefix to the servier $mail->Host = "XXXXXXX.XXXXXXX.org"; // sets GMAIL as the SMTP server $mail->Port = 465; // set the SMTP port for the GMAIL server $mail->Username = "contact@XXXXXXX.com"; // GMAIL username $mail->Password = "XXXXXXX"; // GMAIL password $mail->SetFrom('contact@XXXXXXXX.com', 'HAL'); //$mail->AddReplyTo("user2@gmail.com', 'First Last"); $mail->Subject = "Halmira 469"; THE PROBLEM IS HERE WHEN I WANT TO SEND THE DATA AS INLINE TEXT TO EMAIL FROM MYSQL IT IS NOT WORKING. ONLY "PRINT THE DATA" IS SENDING TO EMAIL. HOW TO DO THIS? $body = 'Print the data'; mysql_connect("localhost","XXXXXXX","XXXXXXX"); @mysql_select_db("sandi565_form11"); $query["SELECT * FROM demo ORDER BY ID DESC LIMIT 1"]; $result = mysql_query($query); //while ($row = mysql_fetch_array ($result)) { // $mail->AltBody = "To view the message, please use an HTML compatible email viewer!"; // optional, comment out and test $mail->MsgHTML($body); $address = "XXXXXXX@gmail.com"; $mail->AddAddress($address, "user2"); //$mail->AddAttachment("images/phpmailer.gif"); // attachment //$mail->AddAttachment("images/phpmailer_mini.gif"); // attachment if(!$mail->Send()) { echo "Mailer Error: " . $mail->ErrorInfo; } else { echo "Message sent!"; } ?>
  10. Hello, I have received 14 emails from root@stevie.heliohost.org and subject is - php /home/sandi565/public_html/halmiratea.com/magento/cron.php and message is - X-Powered-By: PHP/5.3.8 Content-type: text/html. Why I am receiving this message? Intentionally I am not using Cron. How do I stop this Cron? How I will configure to stop cron? I think it is automatically install when I install Magento. And another thing is that - I am making a PHP script that it will automatically send email when database will be update, though it will use rarely (i.e. two times email in a month, when it will be ready). I am using Stevie mail server to sent the email. Is this script going under Cron Job? I have tried to send email through gmail, but it is blocking and said that "We prevented the sign-in attempt in case this was a hijacker trying to access your account. Please review the details of the sign-in attempt: Friday, December 28, 2012 6:26:52 PM UTC IP Address: 65.19.143.2 (stevie.heliohost.org.) Location: Fremont, CA, USA". So, Gmail is blocking your server.
  11. Thanks for your feedback. As you are in India, so I am asking, I have tried Magento to integrate HDFC Bank Payment Gateway, but only I got frustration. Even I haven't got the payment page in PHP coding, so that I can configure it the way HDFC Bank accepted. I have also tried Opencart and Prestashop but unsuccessful. At last I am coding manually to integrate with HDFC bank payment gateway. In drupal I have found one HDFC bank module, but comments said that it has error. I am new in payment gateway. I have only experience in Paypal. Do you know any shopping cart that integrate HDFC Bank payment gateway? However, in Wordpress there are 18,000 extensions. Are all extensions free like Drupal? Joomla's most extension are not free. I have seen your website, very smart logo design. Also you are using Paypal, does Paypal accept INR?
  12. Hello, I am making a e-commerce website and hosting my website on Stevie. I am having payment gateway with a Bank. The problem is - when I am giving the credit card no. in payment gateway (PG), the response is coming from PG is failure page without showing any definite error. My Bank said me that - to enable IP address 221.1*4.***.*** and 221.1*4.***.*** (this is banK's payment gateway IP address) in your network firewall for sent request and receive the response from PG. So, my question is - does Stevie network firewall is blocking IP address?
  13. Hello, I do not want to hurt anybody. I respect your service. Heliohost admin is doing great job. Also I recommend some of my known person to use Heliohost. How I can donate to Heliohost? I do not use Credit Card? In Paypal page I see that I can only pay with Credit Card. Will you accept Debit Card? Will you accept Western Union Money Transfer? How much it cost to have another server?
×
×
  • Create New...