vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB3 Programming Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=15)
-   -   Auto File Creation? (https://vborg.vbsupport.ru/showthread.php?t=78598)

defi 03-23-2005 02:40 AM

Auto File Creation?
 
Okay, my ultimate goal here is when a user submits a form, it's going to put a new index.php file into the specified directory, which would redirect it to a page I defined. Is there any way to do this?

WhSox21 03-23-2005 03:24 AM

Yes, it's possible but you need way more information than just what you provided. With what you're trying to do you might be able to use mod_rewrite and just one file. It all depends on what you're trying to do though.

hate 03-23-2005 03:45 AM

I seen your post about mkdir so this may be what your after

Code:

$filecontent="Code For File To Insert";
mkdir('/home/path/public_html/'.$username, 0777);
if ($fp = fopen("/home/path/public_html/".$username."/index.php", "w")) {
        fwrite($fp, $filecontent);
        chmod("/home/path/public_html/".$username."/index.php", 0755);
        fclose($fp);
}


defi 03-23-2005 04:03 AM

Quote:

Originally Posted by hate
I seen your post about mkdir so this may be what your after

Code:

$filecontent="Code For File To Insert";
mkdir('/home/path/public_html/'.$username, 0777);
if ($fp = fopen("/home/path/public_html/".$username."/index.php", "w")) {
        fwrite($fp, $filecontent);
        chmod("/home/path/public_html/".$username."/index.php", 0755);
        fclose($fp);
}


I could've used that a couple of hours ago! Haha, I was able to figure it out on my own though! Thanks anyways, hopefully that'll alleviate some time for other users who wanted to do what I did; but of course I did mine the hard, "on-my-own" way... heh :p

hate 03-23-2005 04:10 AM

Quote:

Originally Posted by defi
I could've used that a couple of hours ago! Haha, I was able to figure it out on my own though! Thanks anyways, hopefully that'll alleviate some time for other users who wanted to do what I did; but of course I did mine the hard, "on-my-own" way... heh :p

I should have been a little faster lol sorry I was coding on something else.


All times are GMT. The time now is 07:13 AM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.00954 seconds
  • Memory Usage 1,720KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (2)bbcode_code_printable
  • (2)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (5)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete