Results 1 to 10 of 34

Thread: Pulling latest software changes from GIT

Hybrid View

Previous Post Previous Post   Next Post Next Post
  1. #1
    Join Date
    Nov 2009
    Posts
    76,596

    Default

    Run the command.

    Code:
    php artisan migrate


    Code:
    sherly@HOME:~/www/imagehostnow.com$ php artisan migrate
    **************************************
    *     Application In Production!     *
    **************************************
    
    Do you really wish to run this command? yes
    Migrated: 2015_01_09_084809_add_type_in_images
    Migrated: 2015_01_10_040524_add_default_image_privacy_in_users
    Migrated: 2015_01_10_062030_create_settings
    Migrated: 2015_01_13_053228_create_spam_reports
    sherly@HOME:~/www/imagehostnow.com$

  2. #2
    Join Date
    Sep 2003
    Posts
    3,040

    Default

    Good. Now check phpMyAdmin, you will have new tables created.

    Visit web site on your local computer, try uploading an image, see if it works.
    Become PHP Expert in 30 days
    FreeMarriage.com - Free Online Matrimonial
    FlashWebHost.com - Professional Web Hosting, Designing.

  3. #3
    Join Date
    Nov 2009
    Posts
    76,596

    Default

    Run the command.


    Code:
    cd ~/www/imagehostnow.com
    ls -l
    Find below the result.

    Code:
    sherly@HOME:~/www/imagehostnow.com$ cd ~/www/imagehostnow.com
    sherly@HOME:~/www/imagehostnow.com$ ls -l
    total 92
    drwxrwxr-x 12 sherly sherly  4096 Jan 16 11:54 app
    -rwxrwxr-x  1 sherly sherly  2452 Jan  8 10:46 artisan
    drwxrwxr-x  2 sherly sherly  4096 Jan 16 11:54 bootstrap
    -rw-rw-r--  1 sherly sherly   717 Jan  8 10:46 composer.json
    -rw-rw-r--  1 sherly sherly 58953 Jan  9 11:04 composer.lock
    -rw-rw-r--  1 sherly sherly   567 Jan  8 10:46 phpunit.xml
    drwxrwxr-x  6 sherly sherly  4096 Jan  8 10:46 public
    -rw-rw-r--  1 sherly sherly   519 Jan  8 10:46 server.php
    drwxrwxr-x 20 sherly sherly  4096 Jan  9 11:04 vendor
    sherly@HOME:~/www/imagehostnow.com$

  4. #4
    Join Date
    Sep 2003
    Posts
    3,040

    Default

    In that result, you can see the file

    Code:
    -rwxrwxr-x  1 sherly sherly  2452 Jan  8 10:46 artisan
    All good now.

    You can check phpMyAdmin and see the new tables created.

    Now visit the imagehostnow.dev (local dev web site) and try uploading an image, see if it works.

    Post a screenshost of the result you get.
    Become PHP Expert in 30 days
    FreeMarriage.com - Free Online Matrimonial
    FlashWebHost.com - Professional Web Hosting, Designing.

  5. #5
    Join Date
    Nov 2009
    Posts
    76,596

    Default

    Uploaded image in imagehostnow.dev. But showed ERROR: Internal Server Error



  6. #6
    Join Date
    Sep 2003
    Posts
    3,040

    Default

    Error. To see why that happened, laravel have log file. It is located in folder

    Code:
    app/storeage/logs/laravel.log
    First delete that file. Then generate the error. Then look at that file, read it. You will find why that error happened. Try to find the reason by reading error log.

    EDIT: We delete the file, so we have less logs to read. If you don't delete, the file may have lot more lines. So its better delete the file, generate the error by uploading the image or what ever step required to reproduce the error, then read the log file.
    Become PHP Expert in 30 days
    FreeMarriage.com - Free Online Matrimonial
    FlashWebHost.com - Professional Web Hosting, Designing.

  7. #7
    Join Date
    Nov 2009
    Posts
    76,596

    Default

    Uploade image in imagehostnow.dev.But showed ERROR: Internal Server Error.
    Find error log content as follows:

    Code:
    [2015-01-16 06:59:21] production.ERROR: exception 'Symfony\Component\HttpFoundation\File\Exception\FileException' with message 'Unable to create the "/home/sherly/www/imagehostnow.com/public/uploads/4ca4238a0b" directory' in /home/sherly/www/imagehostnow.com/vendor/symfony/http-foundation/Symfony/Component/HttpFoundation/File/File.php:134
    Stack trace:
    #0 /home/sherly/www/imagehostnow.com/vendor/symfony/http-foundation/Symfony/Component/HttpFoundation/File/UploadedFile.php(239): Symfony\Component\HttpFoundation\File\File->getTargetFile('/home/sherly/ww...', '1.jpg')
    #1 /home/sherly/www/imagehostnow.com/app/controllers/UploadController.php(43): Symfony\Component\HttpFoundation\File\UploadedFile->move('/home/sherly/ww...', '1.jpg')
    #2 [internal function]: UploadController->index()
    #3 /home/sherly/www/imagehostnow.com/vendor/laravel/framework/src/Illuminate/Routing/Controller.php(231): call_user_func_array(Array, Array)
    #4 /home/sherly/www/imagehostnow.com/vendor/laravel/framework/src/Illuminate/Routing/ControllerDispatcher.php(93): Illuminate\Routing\Controller->callAction('index', Array)
    #5 /home/sherly/www/imagehostnow.com/vendor/laravel/framework/src/Illuminate/Routing/ControllerDispatcher.php(62): Illuminate\Routing\ControllerDispatcher->call(Object(UploadController), Object(Illuminate\Routing\Route), 'index')
    #6 /home/sherly/www/imagehostnow.com/vendor/laravel/framework/src/Illuminate/Routing/Router.php(962): Illuminate\Routing\ControllerDispatcher->dispatch(Object(Illuminate\Routing\Route), Object(Illuminate\Http\Request), 'UploadControlle...', 'index')
    #7 [internal function]: Illuminate\Routing\Router->Illuminate\Routing\{closure}()
    #8 /home/sherly/www/imagehostnow.com/vendor/laravel/framework/src/Illuminate/Routing/Route.php(109): call_user_func_array(Object(Closure), Array)
    #9 /home/sherly/www/imagehostnow.com/vendor/laravel/framework/src/Illuminate/Routing/Router.php(1028): Illuminate\Routing\Route->run(Object(Illuminate\Http\Request))
    #10 /home/sherly/www/imagehostnow.com/vendor/laravel/framework/src/Illuminate/Routing/Router.php(996): Illuminate\Routing\Router->dispatchToRoute(Object(Illuminate\Http\Request))
    #11 /home/sherly/www/imagehostnow.com/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(775): Illuminate\Routing\Router->dispatch(Object(Illuminate\Http\Request))
    #12 /home/sherly/www/imagehostnow.com/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(745): Illuminate\Foundation\Application->dispatch(Object(Illuminate\Http\Request))
    #13 /home/sherly/www/imagehostnow.com/vendor/laravel/framework/src/Illuminate/Session/Middleware.php(72): Illuminate\Foundation\Application->handle(Object(Illuminate\Http\Request), 1, true)
    #14 /home/sherly/www/imagehostnow.com/vendor/laravel/framework/src/Illuminate/Cookie/Queue.php(47): Illuminate\Session\Middleware->handle(Object(Illuminate\Http\Request), 1, true)
    #15 /home/sherly/www/imagehostnow.com/vendor/laravel/framework/src/Illuminate/Cookie/Guard.php(51): Illuminate\Cookie\Queue->handle(Object(Illuminate\Http\Request), 1, true)
    #16 /home/sherly/www/imagehostnow.com/vendor/stack/builder/src/Stack/StackedHttpKernel.php(23): Illuminate\Cookie\Guard->handle(Object(Illuminate\Http\Request), 1, true)
    #17 /home/sherly/www/imagehostnow.com/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(641): Stack\StackedHttpKernel->handle(Object(Illuminate\Http\Request))
    #18 /home/sherly/www/imagehostnow.com/public/index.php(49): Illuminate\Foundation\Application->run()
    #19 {main} [] []

  8. #8
    Join Date
    Nov 2009
    Posts
    76,596

    Default

    I was getting upload error.

    Then I tried to set permission for 'uploads' folder by running following command:

    Code:
    chmod -R 777  /home/sherly/www/imagehostnow.com/public/uploads
    But received error as follows:


    Code:
    sherly@HOME:~$ cd www
    sherly@HOME:~/www$ cd imagehostnow.com
    sherly@HOME:~/www/imagehostnow.com$ chmod -R 777  /home/sherly/www/imagehostnow.com/public/uploads
    chmod: cannot access ‘/home/sherly/www/imagehostnow.com/public/uploads’: No such file or directory
    sherly@HOME:~/www/imagehostnow.com$
    Last edited by sherlyk; 01-19-2015 at 07:00 AM.

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •