منتدى استراحات زايد

منتدى استراحات زايد (http://vb.ma7room.com/)
-   منتدى أخبار المواقع والمنتديات العربية والأجنبية (http://vb.ma7room.com/f183.html)
-   -   Forum Build sitemap errors, everything appears to work however... (http://vb.ma7room.com/t335820.html)

محروم.كوم 02-22-2010 04:30 AM

Forum Build sitemap errors, everything appears to work however...
 
When I manually build the sitemaps after pruning and moving, I see the following errors displayed. They are only flashed on-screen very briefly before going to a "processing..." message. The sitemaps appear to be being built okay as far as I can tell--google has been mostly happy so far.

Quote:
Processing: ...

Warning: scandir(sitemap) [function.scandir]: failed to open dir: Permission denied in [path]/includes/class_sitemap.php on line 903

Warning: scandir() [function.scandir]: (errno 13): Permission denied in [path]/includes/class_sitemap.php on line 903

Warning: Invalid argument supplied for foreach() in [path]/includes/class_sitemap.php on line 904
Processing: vbulletin_sitemap_forum_0_25.xml


I looked at the referenced file after I figured out how to add line numbers, but I don't know what I'm looking at to begin with. Here is what is on the referenced line numbers in the referenced file, the pasted code begins with line 897 and ends on 914:

PHP Code:
// Create it and write it all out
if ($fp = @fopen($this->registry->options['sitemap_path'] . '/' . $new_file, 'w'))
{
fwrite($fp, $content);
fclose($fp);
return
$new_file;
}
else
{
$this->errors[] = 'Error writing : ' . $this->registry->options['sitemap_path'] . '/' . $new_file;
return
false;
}
}


/**

Well it pastes like crap. Line 903 is this: " return $new_file;" and line 904 is this: "}".

Any help that anyone can give would be much appreciated.


الساعة الآن 07:56 AM

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Content Relevant URLs by vBSEO 3.5.2 TranZ By Almuhajir


1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227