Search results

  1. xav0989

    running gcc on server

    The only package which has exec and shell_exec() is phpv3, and they allow it temporarily for MediaWiki installs. That is pretty much it.
  2. xav0989

    Need Help

    I would LOOOOOOOOOOOVE to read that!
  3. xav0989

    Copying HTML tags into PHP script, problem with quotes and //

    In your case, nowdoc would be a better idea - if supported (php 5.3). In heredoc, there is some parsing made, just as in double quoted strings, and there is no parsing in nowdoc, just as in single quoted strings. The PHP site, tells that nowdoc was developped excatly for your type of problem...
  4. xav0989

    PHP found in string help

    Why not use explode to get an array from the list:<?php $explicit = file("list.txt"); //swear words, made x10 safe! :) $badchars=array( "\r", "\n"); $explicit = str_replace($badchars,"\n",$explicit) $explicit = explode("\n", $explicit); echo '<pre>'; print_r($explicit); echo '</pre>'...
  5. xav0989

    HELP: how to fill co.cc zone records & URL forwarding

    It doesn't surprise me, though. You might want to create a gmail or other smtp mail account to send emails.
  6. xav0989

    Can a cron job kick off another cron job?

    Do you mean that you want a cron job to schedule another cron job? If that is your question, why not have one script that behaves differently depending on an external variable?
  7. xav0989

    Copying HTML tags into PHP script, problem with quotes and //

    add the "\" character before the double quotes: \" and for the slahes \/\/
  8. xav0989

    How do I delete my website and forum accounts?

    For the support ticket system, use your cpanel username and password, it should work. There is also some info on how to change the default index page.
  9. xav0989

    Hey, quelqu'un du 450!

    Hey, quelqu'un du 450!
  10. xav0989

    Why does my email fail with "530 Relaying not allowed" ???

    I also had this problem. Corey had to come and delete manually the email user and I had to create a new one. Try switching back to your old domain, deleting all the emails associated and switching back to your new one.
  11. xav0989

    Does x10 support asp?

    To easily differenciate asp from asp.net look at the file extensions. If there is an x at the end: aspx, it is ASP.NET, and x10 can run it.
  12. xav0989

    Is it possible to change servers?

    Changes from back then!
  13. xav0989

    asp.net/.htaccess/mime/mono

    search in the programming help category, there are loads of post containing mono/asp.net information.
  14. xav0989

    i can't think of an original titale

    Re: Hope this is the right place for this... I don't believe there is an actual limit, since nobody ever send a heck lot of email, but I am pretty sure that all emails are not sent directly but queued. This means that the number of emails sent per minute or hour is regulated. BTW, next time...
  15. xav0989

    phpBB

    Make sure that you created a user and a database in cpanel. (mysql wizard, I believe)
  16. xav0989

    Python script simply won't run!

    The same script didn't work for me on Stoli. And I believe you wanted to have AddType application/x-httpd-cgi .py instead of AddType application/x-httpd-cgi .pl
  17. xav0989

    php mail doesnt work

    I have been experiencing some downtime with mail too, so you better try smtp or tell your users to wait for the email.
Top