Jump to content

sagnik

Members
  • Posts

    483
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by sagnik

  1. Username: sgscl Server: stevie Main Domain: sgservices.cf I was able to login to my Account and able to use cPanel properly. But, when visiting the site, it shows the suspended page.
  2. Yes, Ventilator.
  3. Not exactly redirecting to another port. it's just a rewritten url. for example, "http://www.domain.tk:9090" point to "http://www.domain.tk/example/index.php" in .htaccess using mod_rewrite module. after it was set, when an user visit the url "http://www.domain.tk:9090", the user will see the content of "http://www.domain.tk/example/index.php".
  4. I think the instructions is for a Mixer Grinder
  5. Anyone have knowledge on electronics?
  6. Maybe you can change the CloudFlare's NameServers to normal to permanently disable CloudFlare. Can you post the all the dns zone records which are associated with CloudFlare?
  7. There is no plan to upgrade Stevie's php. Heliohost is in the process to add a new server, so there is also a possiblity to upgrade the php version. So you may have wait still the process is finished.
  8. Your connection string should be, $conn = pg_connect("host=localhost port=5432 user=db_user password=db_pwd dbname=db_name");
  9. Maybe you can check Softaculous for your food software.
  10. Hey Ashrafjp, at first you've asked about Port Redirection. So, if you want to redirect a request using port, you can edit .htaccess to use mod-rewrite module to rewrite urls.
  11. You can use the '<div style="position:absolute;">' and '<div style="position:relative;">'
  12. You can use ProGuard. It is for Java Mobiles. After the Compilation process finished, you can exit the J2ME SDK Mobile and open ProGuard and enter the compiled class file path, check all the checkboxes, press "Options", select "Start". After the preverification process finished, open MiniCommander or any Archieve Manager, and copy all the preverified class files to a new folder (i.e, ProjectName), open the new folder and create a new sub-folder named "META-INF", copy the "manifest.mf" file to the "META-INF" folder and rename it from "manifest.mf" to "MANIFEST.MF". Now go back to "ProjectName" folder and select all files and folders and create a zip archieve named "ProjectName_jar", now exit the application and goto the folder where you have created the "ProjectName_jar" file and rename it from "ProjectName_jar" to "ProjectName.jar". That's all......
  13. .in - indiagetonline.in .us - americagetonline.com .nz - gybo.co.nz
  14. No, you can use DJango 1.3 to develop your DJango site. Download DJango 1.2.7 from: If you need help on developing your DJango site, use the link below and follow the steps:
  15. If your database are in the InnoDB engine then it maybe possible to happen the error. Just Export all the database and change the Engine='InnoDB' line to Engine='MyISAM'
  16. What is the error message you are getting?
  17. You can export the database and save it as *.sql file. To do these, just follow the following steps:
  18. You can set "display_errors" and "error_reporting" to "on" to analyse the problem. Like these: <?php ini_set('display_errors', 1); // Displays the errors error_reporting(E_ALL); // Turns on all errors (E_NOTICE, E_WARNING, E_STRICT, ETC) happening on your script $con = mysql_connect("username","password","localhost","user_database") or die(mysql_error($con)); // These will try to connect to database using details. If it couldn't connect then prints the error /*** OTHER THINGS YOU WANT TO DO ->> ***/ ?> After your problem was solved you can turn off Like these: <?php ini_set('display_errors', 0); // Displays the errors error_reporting(E_NONE); // Turns off all errors (E_NOTICE, E_WARNING, E_STRICT, ETC) happening on your script $con = mysql_connect("username","password","localhost","user_database"); // These will try to connect to mysql, if it fails then nothing happens /*** OTHER THINGS YOU WANT TO DO ->> ***/ ?>
  19. If you are getting "Invalid Login" error. Then, you can reset your password.
  20. You can run these command "pip install mcstatus" using cron job. Just set time to Every minute. But, NOTE YOU CAN RUN 2 CRON JOB ONCE IN A DAY. So, after running the cron job 1 time then, delete the cron job before 2nd time the job runs. If you run 3 or more cron jobs in a day, your account will get suspended.
  21. Can you give the url to your script?
  22. You are Welcome!!!
  23. The main problem on your code is that, you haven't declared the content type and the semi-colon(; ) is missing in the content. Please add the following line exactly after the shebang line: print "Content-type: text/plain\n\n"; After adding the above line and ";" to the content line, your code will look like: #!/usr/bin/python print "Content-type: text/plain\n\n"; print "Bienvenue sur mon site web !"; I've copied your code to my website and your code worked fine after adding print "Content-type: text/plain\n\n"; line. Take a look at www.sagnikganguly.ga/cgi-bin/to175.py
  24. a.) HelioHost Username: sb b.) Server: stevie c.) Main Domain: sbook.ga
×
×
  • Create New...