Recent content by windsurfer

  1. W

    Can't overcome upload file size 2MB limit

    I am having a problem where a 2+MB file aborts upload after 30 seconds with no error message. How am I supposed to detect this in PHP? Is there a setting I can use to overcome this bad behavior of the server?
  2. W

    Zend Framework on shared windows server

    Hi, I'm just wondering if this is available. I want to run Zend-amf stuff to connect to Flex clients. If not available on shared servers, is there a way to install this on a vps? Thanks much, Shannon Vance
  3. W

    Best way to run Tomcat for learning

    I am learning java and would like a development platform to learn from. What is the best way for me to get a Tomcat6 installation so that I can run jsp and then Adobe stuff like Blaze DS and LCDS? I have a Windows based VPS, but I would rather have a Linux platform, besides I have live customers...
  4. W

    Can't find basic info on vps

    Hi Shannara I'm not sure, but I think that the only way to change the nameservers is at the domain registrar cp. Stephen: is this true? It would be cool if there were some sort of graphic that showed the various elements and their relationships (yeah.. an ERD) Best, Shannon
  5. W

    Can't find basic info on vps

    Yes, this did work for me. Many thanks to the tireless jodo staff :) Please make this a sticky post because I think this will be of great value to me later as well as to anyone who is struggling with the vps system.
  6. W

    Can't find basic info on vps

    Thanks again. Here's the steps.. 1. Come up with a domain name for my vps. Something like myvps.com. 2. Register this domain (on jodo for example) 3. Create child nameservers - fill in 1) Host Name: "ns1" and "ns2" 2) Ip address: Use addresses from email 4. Set the two nameservers to...
  7. W

    Can't find basic info on vps

    OK thanks so much for the info. I work best with a step by step process. Here's what I think I must do. Please let me know if I have it wrong. 1. Come up with a domain name for my vps. Something like myvps.com. 2. Register this domain (on jodo for example) 3. Create child nameservers - I...
  8. W

    Can't find basic info on vps

    Hi Stephen, I don't know what you mean by "create the nameservers ns1 and ns2. yourdomain.com at your domain registrar" This makes no sense to me since there is no domain associated with the vps account. It is a server and can service many domains. No? When you say "yourdomain.com" -- what...
  9. W

    Can't find basic info on vps

    I've been searching and I can't find very basic info. I've created a test domain. How do I find: The nameservers I should use in my domain registration control panel? It looks like the docs suggest using ns1.domain.com and ns2.domain.com Is this literal, or am I supposed to...
  10. W

    phplist on Windows server?

    Has anyone successfully installed phplist on a jodo win server? The docs suggest a lengthy procedure needed to do this. I am just wondering if the docs are correct for jodo servers or what? any help would be much appreciated and any guidance on using phplist under jodo's policies etc would...
  11. W

    phpBB doesn't like my MSSQL database

    Never mind. I was looking at the pull down menus, and didn't see odbc in the Quick access screen. Once I found that, all was smooth sailing!
  12. W

    phpBB doesn't like my MSSQL database

    When I try to install phpBB on my server, I get a complaint that they: Could not connect to the database, see error message below. [Microsoft][ODBC Driver Manager] Data source name not found and no default driver specified I tried to use the ip and then I tried to use the host name but they...
  13. W

    403 error when trying to upload files

    Actually, I did submit a ticket. I got this as a reply.. I see below error in logs: -------------------------------------------- Error processing request body: Multipart: final boundary missing -------------------------------------------- Then I was suggested to go to a link that had...
  14. W

    403 error when trying to upload files

    This turned out to be a Flash problem. Put this into .htaccess to fix... SecFilterEngine Off SecFilterScanPOST Off
  15. W

    403 error when trying to upload files

    I get a 403 error when I upload a file and call move_uploaded_file. It seems that the tmp directory is unreachable. Here's the code... foreach ($_FILES as $fieldName => $file) { $filenames .= $fieldName. "\n"; if(move_uploaded_file($file['tmp_name'], "./images/" . $file['name'])) {...
Back
Top