Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - phil_b

Pages: [1]
1
hey man only one problem left thaty i can find. THats with sub categories. When u try and make one it messes up. I get a broken image on teh front page with the sub categories.

2
they are v nice skins nice work especially the gray one. I think anything above 1024 * 768 gives a line on the right side of the template as it doesnt 100% or center itself.

3
the skin themes dont seem to include an upload button is that deliberate? Also can u make the skins include the upload button thanx

4
Installation, Update & Configuration / After installation
« on: December 30, 2002, 12:16:27 AM »
can someone please help me here. I have chmod everything to 777 but still it doesnt work i have tryed all kinds of diff chmods but i still get the same error.

I havent run out of space i have lots if someone can help me out because i need this installed :(

5
Installation, Update & Configuration / After installation
« on: December 28, 2002, 04:56:04 PM »
that is impossible. I read someone else had this problem also. I have just uploaded another 20mb of things to my website so it isnt that my limit is hit

6
Installation, Update & Configuration / After installation
« on: December 28, 2002, 12:46:55 AM »
the installation went fine but after that im having probs:

everytime i try to add a chategorie i get:

        Warning: MkDir failed (Disk quota exceeded) in /home/www/cncgamer/pics/admin/categories.php on line 78

Warning: MkDir failed (Disk quota exceeded) in /home/www/cncgamer/pics/admin/categories.php on line 81

Warning: MkDir failed (Disk quota exceeded) in /home/www/cncgamer/pics/admin/categories.php on line 78

Warning: MkDir failed (Disk quota exceeded) in /home/www/cncgamer/pics/admin/categories.php on line 81
Category added


And when i try to add a pic it says it cant write to the directory although permissions are set correctly. Any ideas?

This is my php file were the error is:

function create_cat_folder($path, $mode) {
  if (@is_dir($path)) {
    @chmod($path, $mode);
    return true;
  }
  else {
    $oldumask = umask(0);
    $result = mkdir($path, $mode);  line 78
    umask($oldumask);
    if (!@is_dir($path) || !$result) {
      $result = mkdir($path, 0777);   line 81
      @chmod($path, $mode);
    }
    return $result;
  }
}

Pages: [1]