Search results

  1. D

    Codeigniter Project not working

    Hi, In ci3, sqlite databases should be in the “app_folder/Database” folder. you also need to update the config settings if you are using the database for the session. ‘dsn’ => ‘’, ‘database’ => APPPATH.’/Database/topses.db3’,
  2. D

    Php error: access violation

    Hi, The application occasionally gives the following error on different computers. “PHP Error: Access violation at address XXXX in module ‘book.exe’. Read of address YYYYY” On some computers the error comes up every time the application is run. On some computers, the application opens...
  3. D

    When I run it manually with cmd mysql gives an error

    hi, If the “Microsof Visual C++ 2012 Redistributable x86” software is not installed in the operating systems where the generated application is running, it will fail. I tried to solve the problem by writing a simple batch. Batch works like this: first installing “Microsof Visual C++ 2012...
  4. D

    Fast forwad and rewind problem in webm video

    Thank you for your answer. However, the application I make will be used by primary school students. There is video and audio throughout the application. So I have to solve the problem of getting back and forth on the timeline.
  5. D

    Fast forwad and rewind problem in webm video

    Hi, The application only allows you to play videos in webm format. However, it is not possible to forward / rewind in webm videos. I tried 4-5 different video plugins and the result is the same in all. What do I need to do in order to play webm videos smoothly. NOTE: I am using the last...
  6. D

    Codeigniter route problem

    Yes. I’m using rewrite rule. .htaccess like that. RewriteEngine On RewriteCond %{SCRIPT_FILENAME} !-f RewriteCond %{SCRIPT_FILENAME} !-d RewriteRule ^(.*)$ index.php/$1
  7. D

    Codeigniter route problem

    Thanks for reply. But the cause of the problem is not server2go. I created a new and simple project wihtout database(server2go). Like taht: app/config/routes.php => $route[‘book’] = “home/book/”; app/controler/home.php => public function book() { echo “Hello World!”; } The same problem...
  8. D

    Codeigniter route problem

    Hi, I used server2go and exeoutput with codeigniter framework. Homepage works, but routing subpages dosen’t work. It gives the following error. File not found: books\book-2 i edit the [Server2Go]\server\config_tpl\httpd.conf file like that. #LoadModule rewrite_module modules/mod_rewrite.so...
Back
Top