Overview
Comment:Ne pas permettre d'explorer les données système et locales si on installe sans positionner le vhost sur www/
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: 1754c3ce9ff19b8da62f0b31ae81002fc198a2c5
User & Date: bohwaz on 2014-01-29 19:06:27
Other Links: manifest | tags
Context
2014-01-29
20:24
design par défaut adapté aux tablettes/mobiles et affichage des sous-articles aussi check-in: 1ca7edd636 user: bohwaz tags: trunk
19:06
Ne pas permettre d'explorer les données système et locales si on installe sans positionner le vhost sur www/ check-in: 1754c3ce9f user: bohwaz tags: trunk
18:46
Rétablir l'erreur un message d'erreur sans passer par PHP ici check-in: a88d3d35ef user: bohwaz tags: trunk
Changes

Added src/.htaccess version [c2c5e60ea8].








1
2
3
4
5
6
7
+
+
+
+
+
+
+
<IfModule mod_alias.c>
    RedirectMatch 403 /include
    RedirectMatch 403 /cache
    RedirectMatch 403 /plugins
    RedirectMatch 403 /templates
    RedirectMatch 403 /*.sqlite
</IfModule>

Added src/cache/index.html version [abe89f9bfb].


1
+
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN"><html><head><title>404 Not Found</title></head><body><h1>Not Found</h1><p>The requested URL was not found on this server.</p></body></html>

Modified src/include/class.membres_transactions.php from [7934832b62] to [be6010578f].

104
105
106
107
108
109
110










111
112
113
114
115
116
117
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127







+
+
+
+
+
+
+
+
+
+







	 */
	public function listComptaOperations($id)
	{
		$db = DB::getInstance();
		return $db->simpleQueryFetch('SELECT * FROM compta_journal
			WHERE id IN (SELECT id_operation FROM membres_transactions_operations 
				WHERE id_membre_transaction = ?);', \SQLITE3_ASSOC, (int)$id);
	}

	/**
	 * Ajouter une écriture comptable pour un paiemement membre
	 * @param int $id Numéro de la transaction
	 * @param array $data Données
	 */
	public function addOperationCompta($id, $data)
	{

	}

	public function get($id)
	{
		$db = DB::getInstance();
		return $db->simpleQuerySingle('SELECT * FROM membres_transactions WHERE id = ?;', true, (int) $id);
	}

Added src/include/index.html version [abe89f9bfb].


1
+
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN"><html><head><title>404 Not Found</title></head><body><h1>Not Found</h1><p>The requested URL was not found on this server.</p></body></html>

Added src/plugins/index.html version [abe89f9bfb].


1
+
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN"><html><head><title>404 Not Found</title></head><body><h1>Not Found</h1><p>The requested URL was not found on this server.</p></body></html>

Added src/templates/index.html version [abe89f9bfb].


1
+
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN"><html><head><title>404 Not Found</title></head><body><h1>Not Found</h1><p>The requested URL was not found on this server.</p></body></html>

Added src/www/.htaccess version [d03605e960].


1
+
ErrorDocument 404 /index.php

Added src/www/squelettes-dist/index.html version [abe89f9bfb].


1
+
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN"><html><head><title>404 Not Found</title></head><body><h1>Not Found</h1><p>The requested URL was not found on this server.</p></body></html>