-
Notifications
You must be signed in to change notification settings - Fork 8
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
No .ini file #2
Comments
@Famicoman Did you were able to solve your question? I'm facing the same problem. |
@vigri Unfortunately no, unless the maintainer gets back to this thread I have given up in using this project. |
can you add ini sample ? |
Same comment as #1 |
Would appear that it just needs 'basedir' (the full path do the storage root directory) and the ini file should be in the format needed by parse_ini_file. It is passed into StoreFS which calls the setBasedir function. The ini file doesn't appear to be used anywhere else in the code. So the ini file should just contain
|
The constructor accepts an array so its possible initialize the class like this if you don't want mess with an ini file: $store = new \OCSPServer\StoreFS(['baseDir' => '...path to your store...']); or set the base directory explicitly: $store = new \OCSPServer\StoreFS([]);
$store->setBasedir( '...path to your store...' ); |
I wanted to play around with this, but there doesn't seem to be any OCSPServer.inI sample for configuration.
The text was updated successfully, but these errors were encountered: