Jump to content

keeB

Staff Alumni
  • Posts

    1,075
  • Joined

  • Last visited

Everything posted by keeB

  1. From his site it looks like anything up to 200MB
  2. http://php.net/file_read_contents http://php.net/file_put_contents Good luck.
  3. You really need to explain what you want other than 'get the job done faster' What job? I REQUIRE A RECIPE!!! Asian food? NO IT MUST HAVE SUGAR!!! A pumpkin pie? See how ridiculous that conversation is?
  4. I'm a bad dev, I usually use svn to update my sites I was just adding some lunix flavor to this windows thread.
  5. keeb@urmom:# ftp myhost.org ^ best ftp client in the world.
  6. I don't really see the point. If your product is any good, people will require support, and that's really what you sell (after the initial product.) If there's a bug, you can't count on your customers having a department dedicated to fixing it. It's much less expensive to have a support contract. Someone would have to learn the code, understand how it's put together, and be able to make an informed decision (and be liable -- [this is key, no one wants to take blame when there's downtime]) to fix the issue.
  7. Now that you have your problem fixed.. why so much code to replace <?php require_once( dirname(__FILE__) . "/path/to/script.php"); ?> I must be missing something. Care to elaborate what you're working on?
  8. Doesn't PHP only required R access?
  9. The error is in your Settings __construct() method. $this->load_and_map('jawa'); $this->load_and_map('project'); $this->load_and_map('db'); load_and_map is defined in the child class, not the base class.
  10. Looks like his site got hacked
  11. <?php $text = "Wow that is really cool! :X" //emoticon code $text = str_replace($text, "", '<img src="http://mysite.com/emote/tongue.gif">'); $text = str_replace($text, ":X", '<img src="http://mysite.com/emote/other.gif">'); echo $text; ?>
  12. It's called English. Please learn to speak it/write it before posting.
  13. Your welcome paragraph is really irritating. Mention 'Smart Board' more please. Second paragraph is also irritating. Mention 'Application' more please. After reading your page I have no clue what the hell a smart board is.
  14. What functionality/support are you looking for your framework to provide?
  15. Are you sure 'my_option_key' is inside $myOption array? print_r($myOption); Post the results.
  16. You can use both. They're not mutually exclusive, although could be redundant if it's just a website. I work on an App that is SpringMVC based, it work's rather well. 2 other pieces of technology I have read about/used: http://www.javaworld.com/javaworld/jw-01-2002/jw-0104-tilestrut.html Tiles w/ Struts http://java-source.net/open-source/web-frameworks/google-web-toolkit Google Web Toolkit Struts is more 'main stream.' Fellow co-workers swear by it. The reason we use SpringMVC is because our application is built using Spring, and the Web Site is just a small component of the application.
  17. There was a guy demoing his php obfuscater here a long time ago. Use the search function.
  18. update //grabs article_id for later query $id = $_GET['id']; to //grabs article_id for later query $id = $_GET['id']; die($id); Should have a blank page with the ID. Does it?
  19. Your cms stores page content in a database?
  20. Design your site. PHP can come at any part of the process.
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.