Search:

Type: Posts; User: Basil

Page 1 of 20 1 2 3 4

Search: Search took 0.18 seconds.

  1. Replies
    6
    Views
    2,835

    I would also recommend installing it to a...

    I would also recommend installing it to a subdirectory and using htaccess to silently redirect to it, otherwise your files are going to be a mess and if you ever want to remove wordpress it will be...
  2. Replies
    6
    Views
    3,102

    I don't know why I'm only just now getting an...

    I don't know why I'm only just now getting an email about this reply, but if you're still having trouble there's a script called BigDump which allows for staggered mysql imports. I know it works on...
  3. Replies
    6
    Views
    3,102

    I'm not entirely sure what you're trying to do,...

    I'm not entirely sure what you're trying to do, but exec is probably the wrong way to go about it.

    Can you better explain the situation?

    Parsing an uploaded file and outputting results is...
  4. Replies
    8
    Views
    22,047

    Be well, enjoy life, and keep in touch. If...

    Be well, enjoy life, and keep in touch.

    If ever you find yourself in need of entry-level tech support, well, you know where to find us.
  5. This can't be the whole thing, the entire script...

    This can't be the whole thing, the entire script is inside of one function and it's never called. The form is posting to thankyou.php3 or thankyou.php5, I'm guessing they're including this script and...
  6. Replies
    1
    Views
    804

    You might have hotlink protection enabled.

    You might have hotlink protection enabled.
  7. Replies
    2
    Views
    718

    A select statement in a mysql_query...

    A select statement in a mysql_query returns a resource on success or FALSE on error. If it returned a boolean it would be pretty useless for fetching data.

    You're expected to iterate over the...
  8. Replies
    2
    Views
    1,038

    This...

    This is the file that's preventing the link from loading, but don't ask me why; it's obfuscated and I'm not sifting through that. It's part of the "wp youtube lyte" plugin.
  9. You can delete everything under public_html. I...

    You can delete everything under public_html. I wouldn't delete anything above that unless you put it there or know what it does, although I'm pretty sure you can delete that stuff too, it just...
  10. Thread: Expired Account

    by Basil
    Replies
    7
    Views
    6,108

    After a domain name expires, the registrar will...

    After a domain name expires, the registrar will generally allow the owner to renew within a grace period. Godaddy holds your domain for approximately 42 days before releasing it.

    19 days after...
  11. Thread: Expired Account

    by Basil
    Replies
    7
    Views
    6,108

    Since the domain has entered its redemption...

    Since the domain has entered its redemption period, it's unlikely the current owner will renew. However, it might be snatched up by squatters or another interested party, depending on desirability.
    ...
  12. Replies
    3
    Views
    1,969

    This will not cause problems. Subdomains are...

    This will not cause problems. Subdomains are commonly used to separate major portions of a website (news.yahoo.com, answers.yahoo.com, mail.yahoo.com), and subdirectories further break those into...
  13. Replies
    1
    Views
    976

    You can install a WAMP server (Apache/MySQL/PHP)...

    You can install a WAMP server (Apache/MySQL/PHP) on your own computer for development purposes, which will allow you to set up wordpress locally and make sure everything works right before uploading...
  14. I think whatever theme you're using on...

    I think whatever theme you're using on wordpress.com is adding those options to the menu.

    edit: I checked, and the default theme is bueno, and it is what's adding those links. It's completely up...
  15. Replies
    3
    Views
    3,562

    Can't test it myself, but I know cpanel has an...

    Can't test it myself, but I know cpanel has an "error pages" editor that basically just edits the shtml error documents under public_html. You should be able to replace whatever they have with...
  16. Ah, good! If you already know regex the rest is...

    Ah, good! If you already know regex the rest is mostly syntax. You shouldn't have too much trouble with it.
  17. It won't matter what you have in your index file,...

    It won't matter what you have in your index file, unless the file is being called directly (e.g. example.com/index.php instead of example.com). The last line matches an empty path to cover all bases....
  18. In a .htaccess file under public_html put ...

    In a .htaccess file under public_html put


    RewriteEngine On
    RewriteCond %{HTTP_HOST} ^(www\.)?mydomain\.com$
    RewriteCond %{REQUEST_URI} !^/web/
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond...
  19. Thread: PHP's exec()

    by Basil
    Replies
    2
    Views
    5,604

    If you feed an array directly to die() it's just...

    If you feed an array directly to die() it's just going to output "Array" instead of the actual contents, try using something like print_r instead.

    Also, exec will only output stdout, so if...
  20. Replies
    2
    Views
    2,814

    I'm not very familiar with wordpress but I tested...

    I'm not very familiar with wordpress but I tested this myself and it should work.

    Open up the functions.php file for the template you're using, it should be under /wp-content/themes/theme-name.
    ...
  21. Why were the files renamed? If the new names...

    Why were the files renamed?

    If the new names are consistently similar to the old ones then you could make a pattern match, if they're completely different you could make a 404 script containing a...
  22. Replies
    3
    Views
    4,158

    Upload via PHP is perfectly allowed. Folder...

    Upload via PHP is perfectly allowed. Folder permissions need to be at least writable by User (that's you, the owner of the file), 755 is typical and I think it's the default permissions. Minimum...
  23. I think you can also use yourdomain.com/cpanel or...

    I think you can also use yourdomain.com/cpanel or yourdomain.com:2082 and yourdomain.com:2083.
  24. Thread: Remote SQL help

    by Basil
    Replies
    6
    Views
    5,922

    w3schools...

    w3schools has a mysql tutorial for php, so does tizag. Here's the php.net manual for mysql and mysqli (basically an improved interface). You can look up any function on php.net and get a pretty...
  25. You'd just add maxlength="90" to the input tag,...

    You'd just add maxlength="90" to the input tag, but the main difficulty is finding which file to edit. I would usually find something identifiable near what I'm trying to edit, then search for it...
Results 1 to 25 of 500
Page 1 of 20 1 2 3 4